You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
boolean: ['json','json-extended','cip8','cip30','cip36','deregister','bech','hashed','nopayload'],//all booleans are set to false per default
19
19
//adding some aliases so users can also use variants of the original parameters. for example using --signing-key instead of --secret-key
@@ -81,10 +81,10 @@ switch (topic) {
81
81
console.log(` Params: [${FgGreen}--vote-public-key${Reset} "<path_to_file>|<hex>|<bech>" ${Dim}public-key-file(s) or public hex/bech-key string(s) to delegate the votingpower to (single or multiple)${Reset}`);
82
82
console.log(` ${FgGreen}--vote-weight${Reset} <unsigned_int>] ${Dim}relative weight of each delegated votingpower, default: 100% for a single delegation${Reset}`);
83
83
console.log(` ${FgGreen}--secret-key${Reset} "<path_to_file>|<hex>|<bech>" ${Dim}signing-key-file or a direct signing hex/bech-key string of the stake key (votingpower)${Reset}`);
84
-
console.log(` ${FgGreen}--rewards-address${Reset} "<path_to_file>|<hex>|<bech>" ${Dim}rewards payout address (address-file or a direct bech/hex format 'addr1..., addr_test1...')${Reset}`);
84
+
console.log(` ${FgGreen}--payment-address${Reset} "<path_to_file>|<hex>|<bech>" ${Dim}rewards payout address (address-file or a direct bech/hex format 'addr1..., addr_test1...')${Reset}`);
85
85
console.log(` [${FgGreen}--nonce${Reset} <unsigned_int>] ${Dim}optional nonce value, if not provided the mainnet-slotHeight calculated from current machine-time will be used${Reset}`);
console.log(` [${FgGreen}--deregister${Reset}] ${Dim}optional flag to generate a deregistration (no --vote-public-key/--vote-weight/--rewards-address needed${Reset}`);
87
+
console.log(` [${FgGreen}--deregister${Reset}] ${Dim}optional flag to generate a deregistration (no --vote-public-key/--vote-weight/--payment-address needed${Reset}`);
88
88
console.log(` [${FgGreen}--testnet-magic [xxx]${Reset}] ${Dim}optional flag to switch the address check to testnet-addresses, default: mainnet${Reset}`);
89
89
console.log(` [${FgGreen}--json${Reset} |${FgGreen} --json-extended${Reset}] ${Dim}optional flag to generate output in json/json-extended format, default: cborHex(text)${Reset}`);
90
90
console.log(` [${FgGreen}--out-file${Reset} "<path_to_file>"] ${Dim}path to an output file, default: standard-output${Reset}`);
1: [[<vote_public_key_1>, <vote_weight_1>], [<vote_public_key_2>, <vote_weight_2>]], // delegations - byte array(s) of the voting_public_keys and the relative voting_weight(unsigned int)
Copy file name to clipboardExpand all lines: src/package.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "cardano-signer",
3
-
"version": "1.12.0",
3
+
"version": "1.12.1",
4
4
"description": "cardano-signer signs a given data(hex/text/file) with a signing key(hex/bech/file) or verify the signature via a public key(hex/bech/file). it can also produce a cip-8/cip-30 and cip-36 conform payload signing/verification.",
0 commit comments