-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathlib.rs
972 lines (815 loc) · 33.1 KB
/
lib.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
// Copyright (c) 2024 RBB S.r.l
// opensource@mintlayer.org
// SPDX-License-Identifier: MIT
// Licensed under the MIT License;
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://github.com/mintlayer/mintlayer-core/blob/master/LICENSE
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
mod command_handler;
mod errors;
mod helper_types;
pub use command_handler::CommandHandler;
pub use errors::WalletCliCommandError;
use helper_types::YesNo;
use rpc::description::{Described, Module};
use wallet_rpc_lib::{
cmdline::CliHardwareWalletType, types::NodeInterface, ColdWalletRpcDescription,
WalletRpcDescription,
};
use std::{fmt::Debug, num::NonZeroUsize, path::PathBuf, time::Duration};
use clap::{Command, FromArgMatches, Parser, Subcommand};
use common::{
chain::{Block, SignedTransaction, Transaction},
primitives::{BlockHeight, DecimalAmount, Id},
};
use crypto::key::{hdkd::u31::U31, PrivateKey, PublicKey};
use p2p_types::{bannable_address::BannableAddress, PeerId};
use serialization::hex_encoded::HexEncoded;
use utils_networking::IpOrSocketAddress;
use self::helper_types::{
CliForceReduce, CliIsFreezable, CliIsUnfreezable, CliStoreSeedPhrase, CliUtxoState,
CliUtxoTypes, CliWithLocked, EnableOrDisable,
};
#[derive(Debug, Parser)]
#[clap(rename_all = "kebab-case")]
pub enum WalletManagementCommand {
#[clap(name = "wallet-create")]
CreateWallet {
/// File path of the wallet file
wallet_path: PathBuf,
/// If 'store-seed-phrase', the seed-phrase will be stored in the wallet file.
/// If 'do-not-store-seed-phrase', the seed-phrase will only be printed on the screen.
/// Not storing the seed-phrase can be seen as a security measure
/// to ensure sufficient secrecy in case that seed-phrase is reused
/// elsewhere if this wallet is compromised.
#[arg(required_unless_present("hardware_wallet"))]
whether_to_store_seed_phrase: Option<CliStoreSeedPhrase>,
/// Mnemonic phrase (12, 15, or 24 words as a single quoted argument). If not specified, a new mnemonic phrase is generated and printed.
mnemonic: Option<String>,
/// Passphrase along the mnemonic
#[arg(long = "passphrase")]
passphrase: Option<String>,
/// Create a wallet using a connected hardware wallet. Only the public keys will be kept in
/// the software wallet. Cannot specify a mnemonic or passphrase here,
/// the former must have been entered on the hardware during the device setup
/// and the latter will have to be entered every time the device is connected to the host machine.
#[arg(long, conflicts_with_all(["mnemonic", "passphrase", "whether_to_store_seed_phrase"]))]
hardware_wallet: Option<CliHardwareWalletType>,
},
#[clap(name = "wallet-recover")]
RecoverWallet {
/// File path of the wallet file
wallet_path: PathBuf,
/// If 'store-seed-phrase', the seed-phrase will be stored in the wallet file.
/// Not storing the seed-phrase can be seen as a security measure
/// to ensure sufficient secrecy in case that seed-phrase is reused
/// elsewhere if this wallet is compromised.
#[arg(required_unless_present("hardware_wallet"))]
whether_to_store_seed_phrase: Option<CliStoreSeedPhrase>,
/// Mnemonic phrase (12, 15, or 24 words as a single quoted argument).
#[arg(required_unless_present("hardware_wallet"))]
mnemonic: Option<String>,
/// Passphrase along the mnemonic
#[arg(long = "passphrase")]
passphrase: Option<String>,
/// Create a wallet using a connected hardware wallet. Only the public keys will be kept in
/// the software wallet. Cannot specify a mnemonic or passphrase here,
/// the former must have been entered on the hardware during the device setup
/// and the latter will have to be entered every time the device is connected to the host machine.
#[arg(long, conflicts_with_all(["passphrase", "mnemonic", "whether_to_store_seed_phrase"]))]
hardware_wallet: Option<CliHardwareWalletType>,
},
#[clap(name = "wallet-open")]
OpenWallet {
/// File path of the wallet file
wallet_path: PathBuf,
/// The existing password, if the wallet is encrypted.
encryption_password: Option<String>,
/// Force change the wallet type from hot to cold or from cold to hot
#[arg(long)]
force_change_wallet_type: bool,
/// Open a wallet file related to a connected hardware wallet.
#[arg(long, conflicts_with_all(["force_change_wallet_type"]))]
hardware_wallet: Option<CliHardwareWalletType>,
},
#[clap(name = "wallet-close")]
CloseWallet,
/// Shutdown the RPC interface or the remote wallet it is connected to
/// and exit the wallet
RpcShutdownAndExit,
/// Exit the wallet
Exit,
}
#[derive(Debug, Parser)]
#[clap(rename_all = "kebab-case")]
pub enum ColdWalletCommand {
#[clap(name = "wallet-info")]
WalletInfo,
#[clap(name = "wallet-encrypt-private-keys")]
EncryptPrivateKeys {
/// The new encryption password
password: String,
},
#[clap(name = "wallet-disable-private-keys-encryption")]
RemovePrivateKeysEncryption,
#[clap(name = "wallet-unlock-private-keys")]
UnlockPrivateKeys {
/// The current encryption password.
password: String,
},
#[clap(name = "wallet-lock-private-keys")]
LockPrivateKeys,
#[clap(name = "wallet-show-seed-phrase")]
ShowSeedPhrase,
#[clap(name = "wallet-purge-seed-phrase")]
PurgeSeedPhrase,
#[clap(name = "wallet-set-lookahead-size")]
SetLookaheadSize {
/// The new lookahead size
lookahead_size: u32,
/// Forces the reduction of lookahead size even below the known last used address
/// the new wallet can lose track of known addresses and balance
i_know_what_i_am_doing: Option<CliForceReduce>,
},
/// Creates a QR code of the provided address
#[clap(name = "address-qrcode")]
AddressQRCode {
/// A Destination address
address: String,
},
#[clap(name = "address-new")]
NewAddress,
/// Reveal the public key behind this address in hex encoding
#[clap(name = "address-reveal-public-key-as-hex")]
RevealPublicKeyHex {
public_key_hash: String,
},
/// Reveal the public key behind this address in address encoding.
/// Note that this isn't a normal address to be used in transactions.
/// It's preferred to take the address from address-show command
#[clap(name = "address-reveal-public-key-as-address")]
RevealPublicKey {
public_key_hash: String,
},
#[clap(name = "address-show")]
ShowReceiveAddresses,
#[clap(name = "standalone-address-show")]
ShowStandaloneAddresses,
#[clap(name = "standalone-address-details")]
ShowStandaloneAddressDetails {
address: String,
},
#[clap(name = "staking-new-vrf-public-key")]
NewVrfPublicKey,
#[clap(name = "staking-show-vrf-public-keys")]
GetVrfPublicKey,
#[clap(name = "staking-show-legacy-vrf-key")]
GetLegacyVrfPublicKey,
#[clap(name = "account-sign-raw-transaction")]
SignRawTransaction {
/// Hex encoded transaction or PartiallySignedTransaction.
transaction: String,
},
#[clap(name = "challenge-sign-hex")]
#[clap(hide = true)]
SignChallegeHex {
/// Hex encoded message to be signed
message: String,
/// Address with whose private key to sign the challenge
address: String,
},
#[clap(name = "challenge-sign-plain")]
SignChallege {
/// The message to be signed
message: String,
/// Address with whose private key to sign the challenge
address: String,
},
#[clap(name = "challenge-verify-hex")]
#[clap(hide = true)]
VerifyChallengeHex {
/// The hex encoded message that was signed
message: String,
/// Hex encoded signed challenge
signed_challenge: String,
/// Address with whose private key the challenge was signed with
address: String,
},
#[clap(name = "challenge-verify-plain")]
VerifyChallenge {
/// The message that was signed
message: String,
/// Hex encoded signed challenge
signed_challenge: String,
/// Address with whose private key the challenge was signed with
address: String,
},
/// Print command history in the wallet for this execution
#[clap(name = "history-print")]
PrintHistory,
/// Clear command history for this execution
#[clap(name = "history-clear")]
ClearHistory,
/// Clear screen
#[clap(name = "screen-clear")]
ClearScreen,
Version,
}
#[derive(Debug, Parser)]
#[clap(rename_all = "kebab-case")]
pub enum WalletCommand {
#[command(flatten)]
ColdCommands(ColdWalletCommand),
#[clap(name = "account-create")]
CreateNewAccount { name: Option<String> },
#[clap(name = "account-rename")]
RenameAccount { name: Option<String> },
/// Switch to a given wallet account.
#[clap(name = "account-select")]
SelectAccount { account_index: U31 },
#[clap(name = "account-utxos")]
ListUtxo {
/// The type of utxo to be listed. Default is "all".
#[arg(value_enum, default_value_t = CliUtxoTypes::All)]
utxo_type: CliUtxoTypes,
/// Whether to include locked outputs. Default is "unlocked"
#[arg(value_enum, default_value_t = CliWithLocked::Unlocked)]
with_locked: CliWithLocked,
/// The state of the utxos; e.g., confirmed, unconfirmed, etc.
#[arg(default_values_t = vec![CliUtxoState::Confirmed])]
utxo_states: Vec<CliUtxoState>,
},
#[clap(name = "account-balance")]
GetBalance {
/// Whether to include locked outputs (outputs that cannot be spend and need time to mature)
#[arg(value_enum, default_value_t = CliWithLocked::Unlocked)]
with_locked: CliWithLocked,
/// The state of utxos to be included (confirmed, unconfirmed, etc)
#[arg(default_values_t = vec![CliUtxoState::Confirmed])]
utxo_states: Vec<CliUtxoState>,
},
#[clap(name = "standalone-address-label-rename")]
StandaloneAddressLabelRename {
/// The existing standalone address
address: String,
/// Optionally specify a new label, not specifying a label will remove the existing one
#[arg(long = "label")]
label: Option<String>,
},
#[clap(name = "standalone-add-watch-only-address")]
AddStandaloneKey {
/// The new standalone watch only address to be added to the selected account
address: String,
/// Optionally specify a label to the new address
#[arg(long = "label")]
label: Option<String>,
/// Skip the rescanning of the blockchain
#[arg(long = "no-rescan")]
no_rescan: Option<bool>,
},
#[clap(name = "standalone-add-private-key-from-hex")]
AddStandalonePrivateKey {
/// The new hex encoded standalone private key to be added to the selected account
hex_private_key: HexEncoded<PrivateKey>,
/// Optionally specify a label to the new address
#[arg(long = "label")]
label: Option<String>,
/// Skip the rescanning of the blockchain
#[arg(long = "no-rescan")]
no_rescan: Option<bool>,
},
#[clap(name = "standalone-add-multisig")]
AddStandaloneMultisig {
/// The minimum required signatures out of the specified public keys
min_required_signatures: u8,
/// Public keys from which to create the multisig challenge
public_keys: Vec<String>,
/// Optionally specify a label to the new address
#[arg(long = "label")]
label: Option<String>,
/// Skip the rescanning of the blockchain
#[arg(long = "no-rescan")]
no_rescan: Option<bool>,
},
#[clap(name = "standalone-multisig-utxos")]
ListMultisigUtxo {
/// The type of utxo to be listed. Default is "all".
#[arg(value_enum, default_value_t = CliUtxoTypes::All)]
utxo_type: CliUtxoTypes,
/// Whether to include locked outputs. Default is "unlocked"
#[arg(value_enum, default_value_t = CliWithLocked::Unlocked)]
with_locked: CliWithLocked,
/// The state of the utxos; e.g., confirmed, unconfirmed, etc.
#[arg(default_values_t = vec![CliUtxoState::Confirmed])]
utxo_states: Vec<CliUtxoState>,
},
#[clap(name = "token-nft-issue-new")]
IssueNewNft {
/// The receiver of the token
destination_address: String,
/// The hash of the media, whose ownership is represented by the NFT
media_hash: String,
/// Name of the token
name: String,
/// Description of the token
description: String,
/// Ticker of the token
ticker: String,
/// The owner, represented by a public key (hex encoded)
creator: Option<HexEncoded<PublicKey>>,
/// URI for the icon of the NFT
icon_uri: Option<String>,
/// URI of the media
media_uri: Option<String>,
additional_metadata_uri: Option<String>,
},
#[clap(name = "token-issue-new")]
IssueNewToken {
/// The ticker/symbol of the token created
token_ticker: String,
/// The maximum number of digits after the decimal points
number_of_decimals: u8,
/// URI for data related to the token (website, media, etc)
metadata_uri: String,
/// The address of the receiver of this token
destination_address: String,
/// The total supply of this token
token_supply: String,
/// Whether it's possible to centrally freeze this token for all users (due to migration requirements, for example)
is_freezable: CliIsFreezable,
},
#[clap(name = "token-change-authority")]
ChangeTokenAuthority { token_id: String, address: String },
#[clap(name = "token-change-metadata-uri")]
ChangeTokenMetadataUri {
token_id: String,
metadata_uri: String,
},
#[clap(name = "token-mint")]
MintTokens {
/// The token id of the tokens to be minted
token_id: String,
/// The receiving address of the minted tokens
address: String,
/// The amount to be minted
amount: DecimalAmount,
},
#[clap(name = "token-unmint")]
UnmintTokens {
/// The token id of the tokens to be unminted
token_id: String,
/// The amount to be unminted
amount: DecimalAmount,
},
#[clap(name = "token-lock-supply")]
LockTokenSupply {
/// The token id of the token, whose supply will be locked
token_id: String,
},
#[clap(name = "token-freeze")]
FreezeToken {
/// The token id of the token to be frozen.
token_id: String,
/// Whether these tokens can be unfrozen again, or permanently freeze them.
is_unfreezable: CliIsUnfreezable,
},
#[clap(name = "token-unfreeze")]
UnfreezeToken {
/// The token id of the token to be unfrozen.
token_id: String,
},
#[clap(name = "token-send")]
SendTokensToAddress {
/// The token id of the tokens to be sent.
token_id: String,
/// The destination address receiving the tokens.
address: String,
/// The amount of tokens to be sent.
amount: DecimalAmount,
},
#[clap(name = "token-make-tx-to-send-with-intent")]
#[clap(hide = true)]
MakeTxToSendTokensToAddressWithIntent {
/// The token id of the tokens to be sent.
token_id: String,
/// The destination address receiving the tokens.
address: String,
/// The amount of tokens to be sent.
amount: DecimalAmount,
/// The message declaring the intent of the transaction.
///
/// The signed intent will be printed separately, it's not a part of the transaction itself.
intent: String,
},
/// Create a transaction for sending tokens from a multisig address to other addresses, returning the change to
/// the original multisig address.
///
/// The utxos to pay fees from will be selected automatically; these will be normal, single-sig utxos.
/// The optional `fee_change_address` specifies the destination for the change for the fee payment;
/// If it's unset, the destination will be taken from one of existing single-sig utxos.
#[clap(name = "token-make-tx-to-send-from-multisig-address")]
#[clap(hide = true)]
MakeTxToSendTokensFromMultisigAddress {
/// The source multisig address; the change will be sent to it as well.
from_address: String,
/// An optional address to which the change for the fee payment should be sent to.
#[arg(long = "fee-change-address")]
fee_change_address: Option<String>,
/// The transaction outputs, in the format `transfer(token_id,address,amount)`
/// e.g. transfer(tmltk1e7egscactagl7e3met67658hpl4vf9ux0ralaculjvnzhtc4qmsqv9y857,tmt1q8lhgxhycm8e6yk9zpnetdwtn03h73z70c3ha4l7,0.9)
outputs: Vec<String>,
},
#[clap(name = "address-send")]
SendToAddress {
/// The receiving address of the coins
address: String,
/// The amount to be sent, in decimal format
amount: DecimalAmount,
/// You can choose what utxos to spend (space separated as additional arguments). A utxo can be from a transaction output or a block reward output:
/// e.g tx(000000000000000000059fa50103b9683e51e5aba83b8a34c9b98ce67d66136c,1) or
/// block(000000000000000000059fa50103b9683e51e5aba83b8a34c9b98ce67d66136c,2)
#[arg(default_values_t = Vec::<String>::new())]
utxos: Vec<String>,
},
#[clap(name = "address-sweep-spendable")]
SweepFromAddress {
/// The receiving address of the coins or tokens
destination_address: String,
/// The addresses to be swept
addresses: Vec<String>,
},
#[clap(name = "staking-sweep-delegation")]
SweepFromDelegation {
/// The receiving address of the coins
destination_address: String,
/// The delegation to be swept
delegation_id: String,
},
#[clap(name = "transaction-create-from-cold-input")]
CreateTxFromColdInput {
/// The receiving address of the coins
address: String,
/// The amount to be sent, in decimal format
amount: DecimalAmount,
/// You can choose what utxo to spend. A utxo can be from a transaction output or a block reward output:
/// e.g tx(000000000000000000059fa50103b9683e51e5aba83b8a34c9b98ce67d66136c,1) or
/// block(000000000000000000059fa50103b9683e51e5aba83b8a34c9b98ce67d66136c,2)
utxo: String,
/// Optional change address, if not specified it returns the change to the same address from the input
#[arg(long = "change")]
change_address: Option<String>,
},
#[clap(name = "transaction-inspect")]
InspectTransaction {
/// Hex encoded transaction or PartiallySignedTransaction.
transaction: String,
},
#[clap(name = "address-deposit-data")]
DepositData {
/// The data to be deposited on the blockchain as hex. DO NOT start the data with 0x.
hex_data: String,
},
#[clap(name = "delegation-create")]
CreateDelegation {
/// The address, that will have the authority to sign withdrawals from the delegation.
owner: String,
/// The pool id of the pool that will get the delegation and stake the coins.
pool_id: String,
},
#[clap(name = "delegation-list-ids")]
ListDelegationIds,
#[clap(name = "delegation-stake")]
DelegateStaking {
/// The amount to be delegated for staking
amount: DecimalAmount,
/// The delegation id that was created. Every pool you want to delegate to must have a delegation id.
delegation_id: String,
},
#[clap(name = "delegation-withdraw")]
WithdrawFromDelegation {
/// The address that will be receiving the coins
address: String,
/// The amount that will be taken away from the delegation
amount: DecimalAmount,
/// The delegation id, from which the delegated coins will be taken
delegation_id: String,
},
#[clap(name = "staking-list-pools")]
ListPools,
#[clap(name = "staking-list-owned-pools-for-decommission")]
ListOwnedPoolsForDecommission,
#[clap(name = "staking-start")]
StartStaking,
#[clap(name = "staking-stop")]
StopStaking,
#[clap(name = "staking-status")]
StakingStatus,
#[clap(name = "staking-pool-balance")]
StakePoolBalance { pool_id: String },
#[clap(name = "staking-list-created-block-ids")]
ListCreatedBlocksIds,
#[clap(name = "staking-create-pool")]
CreateStakePool {
/// The amount to be pledged to the pool. There is a minimum to be accepted.
/// This amount, and the rewards gained by the pool, CANNOT be taken out without decommissioning the pool.
/// If you'd like to withdraw rewards, consider creating a pool and delegating to yourself.
/// Delegators have no restrictions on withdrawals.
/// The likelihood to win block rewards, by creating blocks while staking, is proportional to how much the pool owns,
/// up to a maximum, to discourage heavy centralization of power.
amount: DecimalAmount,
/// An amount in coins to be subtracted from the total rewards in a block and handed to the staker
/// as a constant/fixed cost for running the pool.
cost_per_block: DecimalAmount,
/// After subtracting "cost per block" from the reward, this ratio is taken from the rewards and is handed to the staker.
/// What is left is distributed among delegators, pro-rata, based on their delegation amounts.
/// The amount here is written as a percentage with per-mill accuracy. For example, 0.1% is valid,
/// and is equivalent to 0.001. Also 5% is valid and is equivalent to 0.05.
margin_ratio_per_thousand: String,
/// The key that can decommission the pool. It's recommended to keep the decommission key in a cold storage.
decommission_address: String,
/// This specifies the key that will sign new blocks.
///
/// The key must be owned by the wallet that will do the actual staking. Leave it empty if the current
/// wallet will be the staking wallet.
///
/// Note that this must be a "public key address" and not a "public key hash address", which would normally be used
/// in a transaction. Use the address-reveal-public-key-as-address command to convert the latter to the former
/// (run it in the wallet that owns the key).
staker_address: Option<String>,
/// This specifies the VRF key that will be used to produce POS hashes during staking.
///
/// The key must be owned by the wallet that will do the actual staking. Leave it empty if the current
/// wallet will be the staking wallet.
vrf_public_key: Option<String>,
},
#[clap(name = "staking-decommission-pool")]
DecommissionStakePool {
/// The pool id of the pool to be decommissioned.
/// Notice that this only works if the selected account in this wallet owns the decommission key.
pool_id: String,
/// The address that will be receiving the staker's balance (both pledge and proceeds from staking).
output_address: String,
},
#[clap(name = "staking-decommission-pool-request")]
DecommissionStakePoolRequest {
/// The pool id of the pool to be decommissioned.
pool_id: String,
/// The address that will be receiving the staker's balance (both pledge and proceeds from staking).
output_address: String,
},
#[clap(name = "wallet-rescan")]
Rescan,
#[clap(name = "wallet-sync")]
SyncWallet,
#[clap(name = "node-version")]
NodeVersion,
#[clap(name = "node-shutdown")]
NodeShutdown,
/// Enable or disable p2p networking in the node
#[clap(name = "node-enable-p2p-networking")]
NodeEnableNetworking { enable: EnableOrDisable },
#[clap(name = "node-connect-to-peer")]
Connect { address: IpOrSocketAddress },
#[clap(name = "node-disconnect-peer")]
Disconnect { peer_id: PeerId },
#[clap(name = "node-list-banned-peers")]
ListBanned,
#[clap(name = "node-ban-peer-address")]
Ban {
/// IP address to ban.
address: BannableAddress,
/// Duration of the ban, e.g. 1M (1 month) or "1y 3M 10d 6h 30m 45s"
/// (1 year 3 months 10 days 6 hours 30 minutes 45 seconds).
#[arg(value_parser(humantime::parse_duration))]
duration: Duration,
},
#[clap(name = "node-unban-peer-address")]
Unban { address: BannableAddress },
#[clap(name = "node-list-discouraged-peers")]
ListDiscouraged,
#[clap(name = "node-undiscourage-peer-address")]
Undiscourage { address: BannableAddress },
#[clap(name = "node-peer-count")]
PeerCount,
#[clap(name = "node-list-connected-peers")]
ConnectedPeers,
/// Get connected peers in JSON format
#[clap(name = "node-list-connected-peers-json")]
#[clap(hide = true)]
ConnectedPeersJson,
#[clap(name = "node-list-reserved-peers")]
ReservedPeers,
#[clap(name = "node-add-reserved-peer")]
AddReservedPeer { address: IpOrSocketAddress },
#[clap(name = "node-remove-reserved-peer")]
RemoveReservedPeer { address: IpOrSocketAddress },
#[clap(name = "node-submit-block")]
SubmitBlock {
/// Hex encoded block
block: HexEncoded<Block>,
},
#[clap(name = "node-submit-transaction")]
SubmitTransaction {
/// Hex encoded transaction.
transaction: HexEncoded<SignedTransaction>,
/// Do not store the transaction in the wallet
#[arg(long = "do-not-store", default_value_t = false)]
do_not_store: bool,
},
#[clap(name = "node-chainstate-info")]
ChainstateInfo,
#[clap(name = "node-best-block-id")]
BestBlock,
#[clap(name = "node-best-block-height")]
BestBlockHeight,
/// Returns the current best block timestamp
#[clap(name = "node-best-block-timestamp")]
BestBlockTimestamp,
#[clap(name = "node-block-id")]
BlockId {
/// Block height
height: BlockHeight,
},
#[clap(name = "node-get-block")]
GetBlock {
/// Block hash
hash: String,
},
#[clap(name = "node-generate-block")]
GenerateBlock {
transactions: Vec<HexEncoded<SignedTransaction>>,
},
#[clap(name = "node-generate-blocks")]
#[clap(hide = true)]
GenerateBlocks { block_count: u32 },
/// For each block height in the specified range, find timestamps where staking is/was possible
/// for the given pool.
///
/// `min_height` must not be zero; `max_height` must not exceed the best block height plus one.
///
/// If `check_all_timestamps_between_blocks` is "no", `seconds_to_check_for_height + 1` is the number
/// of seconds that will be checked at each height in the range.
/// If `check_all_timestamps_between_blocks` is "yes", `seconds_to_check_for_height` only applies to the
/// last height in the range; for all other heights the maximum timestamp is the timestamp
/// of the next block.
#[clap(name = "node-find-timestamps-for-staking")]
#[clap(hide = true)]
FindTimestampsForStaking {
pool_id: String,
min_height: BlockHeight,
max_height: BlockHeight,
seconds_to_check_for_height: u64,
check_all_timestamps_between_blocks: YesNo,
},
#[clap(name = "node-get-block-ids-as-checkpoints")]
#[clap(hide = true)]
GetBlockIdsAsCheckpoints {
start_height: BlockHeight,
end_height: BlockHeight,
step: NonZeroUsize,
},
#[clap(name = "transaction-compose")]
TransactionCompose {
/// The transaction outputs, in the format `transfer(address,amount)`
/// e.g. transfer(tmt1q8lhgxhycm8e6yk9zpnetdwtn03h73z70c3ha4l7,0.9)
outputs: Vec<String>,
/// You can choose what utxos to spend (space separated as additional arguments). A utxo can be from a transaction output or a block reward output:
/// e.g tx(000000000000000000059fa50103b9683e51e5aba83b8a34c9b98ce67d66136c,1) or
/// block(000000000000000000059fa50103b9683e51e5aba83b8a34c9b98ce67d66136c,2)
#[arg(long = "utxos", default_values_t = Vec::<String>::new())]
utxos: Vec<String>,
#[arg(long = "only-transaction", default_value_t = false)]
only_transaction: bool,
},
#[clap(name = "transaction-abandon")]
AbandonTransaction {
/// The id of the transaction that will be abandoned, in hex.
transaction_id: HexEncoded<Id<Transaction>>,
},
#[clap(name = "transaction-list-pending")]
ListPendingTransactions,
#[clap(name = "transaction-list-by-address")]
ListMainchainTransactions {
/// Address to filter by
address: Option<String>,
/// limit the number of printed transactions, default is 100
#[arg(long = "limit", default_value_t = 100)]
limit: usize,
},
#[clap(name = "transaction-get")]
GetTransaction {
/// Transaction id, encoded in hex
transaction_id: HexEncoded<Id<Transaction>>,
},
#[clap(name = "transaction-get-raw")]
GetRawTransaction {
/// Transaction id, encoded in hex
transaction_id: HexEncoded<Id<Transaction>>,
},
#[clap(name = "transaction-get-signed-raw")]
GetRawSignedTransaction {
/// Transaction id, encoded in hex
transaction_id: HexEncoded<Id<Transaction>>,
},
}
#[derive(Debug, Parser)]
#[clap(rename_all = "kebab-case")]
pub enum ManageableWalletCommand {
#[command(flatten)]
ManagementCommands(WalletManagementCommand),
#[command(flatten)]
WalletCommands(WalletCommand),
}
#[derive(Debug, Clone, serde::Serialize)]
pub enum ConsoleCommand {
Print(String),
PaginatedPrint {
header: String,
body: String,
},
ClearScreen,
PrintHistory,
ClearHistory,
SetStatus {
status: String,
print_message: String,
},
Exit,
}
// Strip out usage
const MAIN_HELP_TEMPLATE: &str = "\
{all-args}
";
// Strip out name/version
const COMMAND_HELP_TEMPLATE: &str = "\
{about-with-newline}\n\
{usage-heading}\n {usage}\n\
\n\
{all-args}{after-help}\
";
pub fn get_repl_command(cold_wallet: bool, mutable_wallet: bool) -> Command {
const COLD_WALLET_DESC: &Module = &ColdWalletRpcDescription::DESCRIPTION;
const WALLET_DESC: &Module = &WalletRpcDescription::DESCRIPTION;
let repl_command = Command::new("repl")
.multicall(true)
.arg_required_else_help(true)
.subcommand_required(true)
.subcommand_value_name("Command")
.subcommand_help_heading("Commands")
.help_template(MAIN_HELP_TEMPLATE);
// Add commands from generated by clap-derive
let repl_command = if cold_wallet {
ColdWalletCommand::augment_subcommands(repl_command)
} else {
WalletCommand::augment_subcommands(repl_command)
};
let mut repl_command = if mutable_wallet {
WalletManagementCommand::augment_subcommands(repl_command)
} else {
repl_command
};
// Customize the help template for all commands to make it more REPL friendly
for subcommand in repl_command.get_subcommands_mut() {
if let Some(desc) =
COLD_WALLET_DESC.methods.iter().chain(WALLET_DESC.methods).find_map(|method| {
method
.name
.split('_')
.zip(subcommand.get_name().split('-'))
.all(|(x, y)| x == y)
.then_some(method.description)
})
{
*subcommand = subcommand.clone().help_template(COMMAND_HELP_TEMPLATE).about(desc);
} else {
*subcommand = subcommand.clone().help_template(COMMAND_HELP_TEMPLATE);
}
}
repl_command
}
/// Try to parse REPL input string as a [WalletCommands]
pub fn parse_input<N: NodeInterface>(
line: &str,
repl_command: &Command,
) -> Result<Option<ManageableWalletCommand>, WalletCliCommandError<N>> {
let line = line.trim();
if line.is_empty() || line.starts_with('#') {
return Ok(None);
}
// Split arguments as a normal shell would do
let args = shlex::split(line).ok_or(WalletCliCommandError::InvalidQuoting)?;
let mut matches = repl_command
.clone()
.try_get_matches_from(args)
.map_err(WalletCliCommandError::InvalidCommandInput)?;
let command = ManageableWalletCommand::from_arg_matches_mut(&mut matches)
.map_err(WalletCliCommandError::InvalidCommandInput)?;
Ok(Some(command))
}