File tree 5 files changed +3290
-22
lines changed
5 files changed +3290
-22
lines changed Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ )
4
+ and we follow [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
5
+
6
+ <!-- START doctoc generated TOC please keep comment here to allow auto update -->
7
+ <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
8
+
9
+ - [[ Unreleased]] ( #unreleased )
10
+ - [ Added] ( #added )
11
+
12
+ <!-- END doctoc generated TOC please keep comment here to allow auto update -->
13
+
14
+ ## [ Unreleased]
15
+
16
+ ### Added
17
+
18
+ - New transaction builder steps: ` SubmitProposal ` for attaching governance
19
+ proposals and ` SubmitVotingProcedure ` for voting. Note that there is currently
20
+ no support for providing a credential witness for the optional constitution
21
+ guardrails script, which restricts certain proposal types as outlined in
22
+ [ CIP-1694 Specification] ( https://github.com/cardano-foundation/CIPs/blob/b81611632f9dcea0b87d7d96cf673a720c77e929/CIP-1694/README.md#guardrails-script ) .
23
+ ([ #3 ] ( https://github.com/mlabs-haskell/purescript-cardano-transaction-builder/pull/3 ) )
24
+
25
+ - Support for Conway era certificates.
26
+ ([ #3 ] ( https://github.com/mlabs-haskell/purescript-cardano-transaction-builder/pull/3 ) )
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ check-format: check-explicit-exports
29
29
@eslint --quiet ${js-sources} --parser-options ' sourceType: module'
30
30
31
31
format :
32
+ @doctoc CHANGELOG.md --github --notitle
32
33
@purs-tidy format-in-place ${ps-sources}
33
34
@nixpkgs-fmt ${nix-sources}
34
35
@make check-format
Original file line number Diff line number Diff line change 1
1
{
2
- description = "purescript-cardano-types " ;
2
+ description = "purescript-cardano-transaction-builder " ;
3
3
4
4
# Allow IFD in `nix flake check`.
5
5
nixConfig . allow-import-from-derivation = "true" ;
6
6
7
7
nixConfig = {
8
8
extra-substituters = [ "https://plutonomicon.cachix.org" ] ;
9
9
extra-trusted-public-keys = [ "plutonomicon.cachix.org-1:evUxtNULjCjOipxwAnYhNFeF/lyYU1FeNGaVAnm+QQw=" ] ;
10
- bash-prompt = "\\ [\\ e[0m\\ ][\\ [\\ e[0;2m\\ ]nix-develop \\ [\\ e[0;1m\\ ]ps-cardano-types @\\ [\\ 033[33m\\ ]$(git rev-parse --abbrev-ref HEAD) \\ [\\ e[0;32m\\ ]\\ w\\ [\\ e[0m\\ ]]\\ [\\ e[0m\\ ]$ \\ [\\ e[0m\\ ]" ;
10
+ bash-prompt = "\\ [\\ e[0m\\ ][\\ [\\ e[0;2m\\ ]nix-develop \\ [\\ e[0;1m\\ ]ps-cardano-tx-builder @\\ [\\ 033[33m\\ ]$(git rev-parse --abbrev-ref HEAD) \\ [\\ e[0;32m\\ ]\\ w\\ [\\ e[0m\\ ]]\\ [\\ e[0m\\ ]$ \\ [\\ e[0m\\ ]" ;
11
11
} ;
12
12
13
13
inputs = {
You can’t perform that action at this time.
0 commit comments