Skip to content

Commit bb4e8c0

Browse files
committed
Update golden files
1 parent 8a24879 commit bb4e8c0

10 files changed

+176
-9
lines changed

cardano-cli/test/cardano-cli-golden/files/golden/base_help.cli

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Usage: cardano-cli
1414
| latest
1515
| debug commands
1616
| version
17+
| cip-format
1718
| compatible
1819
)
1920

@@ -38,5 +39,6 @@ Available commands:
3839
help Show all help
3940
version Show the cardano-cli version
4041
ping Ping a cardano node either using node-to-node or node-to-client protocol. It negotiates a handshake and keeps sending keep alive messages.
42+
cip-format Group of commands related to CIP changes.
4143
compatible Limited backward compatible commands for testing
4244
only.

cardano-cli/test/cardano-cli-golden/files/golden/help.cli

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Usage: cardano-cli
1010
| latest
1111
| debug commands
1212
| version
13+
| cip-format
1314
| compatible
1415
)
1516

@@ -5579,6 +5580,65 @@ Usage: cardano-cli help
55795580

55805581
Show all help
55815582

5583+
Usage: cardano-cli cip-format cip-129
5584+
5585+
Group of commands related to CIP changes.
5586+
5587+
Usage: cardano-cli cip-format cip-129
5588+
( drep
5589+
| committee-hot-key
5590+
| committee-cold-key
5591+
| governance-action-id
5592+
)
5593+
5594+
Modified binary encoding of drep keys, constitutional committee cold and hot
5595+
keys, governance
5596+
actions.https://github.com/cardano-foundation/CIPs/tree/master/CIP-0129
5597+
5598+
Usage: cardano-cli cip-format cip-129 drep
5599+
( --drep-file FILEPATH
5600+
| --drep-hex HEX
5601+
| --drep-bech32 BECH32
5602+
)
5603+
( --output-file FILEPATH
5604+
| --output-text
5605+
)
5606+
5607+
Convert drep verification key to the cip-129 compliant format
5608+
5609+
Usage: cardano-cli cip-format cip-129 committee-hot-key
5610+
( --committee-hot-key-file FILEPATH
5611+
| --committee-hot-key-hex HEX
5612+
| --committee-hot-key-bech32 BECH32
5613+
)
5614+
( --output-file FILEPATH
5615+
| --output-text
5616+
)
5617+
5618+
Convert committee hot key to the cip-129 compliant format
5619+
5620+
Usage: cardano-cli cip-format cip-129 committee-cold-key
5621+
( --committee-cold-key-file FILEPATH
5622+
| --committee-cold-key-hex HEX
5623+
| --committee-cold-key-bech32 BECH32
5624+
)
5625+
( --output-file FILEPATH
5626+
| --output-text
5627+
)
5628+
5629+
Convert committee cold key to the cip-129 compliant format
5630+
5631+
Usage: cardano-cli cip-format cip-129 governance-action-id
5632+
( --governance-action-file FILEPATH
5633+
| --governance-action-hex HEX
5634+
| --governance-action-bech32 BECH32
5635+
)
5636+
( --output-file FILEPATH
5637+
| --output-text
5638+
)
5639+
5640+
Convert governance action id to the cip-129 compliant format
5641+
55825642
Usage: cardano-cli compatible
55835643
( shelley
55845644
| allegra
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Usage: cardano-cli cip-format cip-129
2+
( drep
3+
| committee-hot-key
4+
| committee-cold-key
5+
| governance-action-id
6+
)
7+
8+
Modified binary encoding of drep keys, constitutional committee cold and hot
9+
keys, governance
10+
actions.https://github.com/cardano-foundation/CIPs/tree/master/CIP-0129
11+
12+
Available options:
13+
-h,--help Show this help text
14+
15+
Available commands:
16+
drep Convert drep verification key to the cip-129
17+
compliant format
18+
committee-hot-key Convert committee hot key to the cip-129 compliant
19+
format
20+
committee-cold-key Convert committee cold key to the cip-129 compliant
21+
format
22+
governance-action-id Convert governance action id to the cip-129 compliant
23+
format
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Usage: cardano-cli cip-format cip-129 committee-cold-key
2+
( --committee-cold-key-file FILEPATH
3+
| --committee-cold-key-hex HEX
4+
| --committee-cold-key-bech32 BECH32
5+
)
6+
( --output-file FILEPATH
7+
| --output-text
8+
)
9+
10+
Convert committee cold key to the cip-129 compliant format
11+
12+
Available options:
13+
--committee-cold-key-file FILEPATH
14+
Input hex/bech32/text envelope committee cold key
15+
file
16+
--committee-cold-key-hex HEX
17+
Input hex encoded committee cold key
18+
--committee-cold-key-bech32 BECH32
19+
Input bech32 encoded committee cold key
20+
--output-file FILEPATH Output file
21+
--output-text Output text
22+
-h,--help Show this help text
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Usage: cardano-cli cip-format cip-129 committee-hot-key
2+
( --committee-hot-key-file FILEPATH
3+
| --committee-hot-key-hex HEX
4+
| --committee-hot-key-bech32 BECH32
5+
)
6+
( --output-file FILEPATH
7+
| --output-text
8+
)
9+
10+
Convert committee hot key to the cip-129 compliant format
11+
12+
Available options:
13+
--committee-hot-key-file FILEPATH
14+
Input hex/bech32/text envelope committee hot key file
15+
--committee-hot-key-hex HEX
16+
Input hex encoded committee hot key
17+
--committee-hot-key-bech32 BECH32
18+
Input bech32 encoded committee hot key
19+
--output-file FILEPATH Output file
20+
--output-text Output text
21+
-h,--help Show this help text
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Usage: cardano-cli cip-format cip-129 drep
2+
( --drep-file FILEPATH
3+
| --drep-hex HEX
4+
| --drep-bech32 BECH32
5+
)
6+
( --output-file FILEPATH
7+
| --output-text
8+
)
9+
10+
Convert drep verification key to the cip-129 compliant format
11+
12+
Available options:
13+
--drep-file FILEPATH Input hex/bech32/text envelope drep file
14+
--drep-hex HEX Input hex encoded drep
15+
--drep-bech32 BECH32 Input bech32 encoded drep
16+
--output-file FILEPATH Output file
17+
--output-text Output text
18+
-h,--help Show this help text
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Usage: cardano-cli cip-format cip-129 governance-action-id
2+
( --governance-action-file FILEPATH
3+
| --governance-action-hex HEX
4+
| --governance-action-bech32 BECH32
5+
)
6+
( --output-file FILEPATH
7+
| --output-text
8+
)
9+
10+
Convert governance action id to the cip-129 compliant format
11+
12+
Available options:
13+
--governance-action-file FILEPATH
14+
Input hex/bech32/text envelope governance action file
15+
--governance-action-hex HEX
16+
Input hex encoded governance action
17+
--governance-action-bech32 BECH32
18+
Input bech32 encoded governance action
19+
--output-file FILEPATH Output file
20+
--output-text Output text
21+
-h,--help Show this help text

cardano-cli/test/cardano-cli-golden/files/golden/help/compatible_conway_governance_drep_id.cli

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ Available options:
1818
Filepath of the DRep verification key.
1919
--drep-key-hash HASH DRep verification key hash (either Bech32-encoded or
2020
hex-encoded).
21-
--output-hex Format drep id output as hex.
22-
--output-bech32 Format drep id output as bech32 (the default).
23-
--output-cip129 Format drep id output as cip129.
21+
--output-hex Format drep id output to BASE16.
22+
--output-bech32 Format drep id output to Bech32 (default).
23+
--output-cip129 Format drep id output to CIP-129.
2424
--out-file FILEPATH The output file.
2525
-h,--help Show this help text

cardano-cli/test/cardano-cli-golden/files/golden/help/conway_governance_drep_id.cli

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ Available options:
1818
Filepath of the DRep verification key.
1919
--drep-key-hash HASH DRep verification key hash (either Bech32-encoded or
2020
hex-encoded).
21-
--output-hex Format drep id output as hex.
22-
--output-bech32 Format drep id output as bech32 (the default).
23-
--output-cip129 Format drep id output as cip129.
21+
--output-hex Format drep id output to BASE16.
22+
--output-bech32 Format drep id output to Bech32 (default).
23+
--output-cip129 Format drep id output to CIP-129.
2424
--out-file FILEPATH The output file.
2525
-h,--help Show this help text

cardano-cli/test/cardano-cli-golden/files/golden/help/latest_governance_drep_id.cli

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ Available options:
1818
Filepath of the DRep verification key.
1919
--drep-key-hash HASH DRep verification key hash (either Bech32-encoded or
2020
hex-encoded).
21-
--output-hex Format drep id output as hex.
22-
--output-bech32 Format drep id output as bech32 (the default).
23-
--output-cip129 Format drep id output as cip129.
21+
--output-hex Format drep id output to BASE16.
22+
--output-bech32 Format drep id output to Bech32 (default).
23+
--output-cip129 Format drep id output to CIP-129.
2424
--out-file FILEPATH The output file.
2525
-h,--help Show this help text

0 commit comments

Comments
 (0)