@@ -28,7 +28,7 @@ def wallet_cmd(ctx: click.Context) -> None:
28
28
type = int ,
29
29
default = None ,
30
30
)
31
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
31
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
32
32
@click .option ("-i" , "--id" , help = "Id of the wallet to use" , type = int , default = 1 , show_default = True , required = True )
33
33
@click .option ("-tx" , "--tx_id" , help = "transaction id to search for" , type = str , required = True )
34
34
@click .option ("--verbose" , "-v" , count = True , type = int )
@@ -49,7 +49,7 @@ def get_transaction_cmd(wallet_rpc_port: Optional[int], fingerprint: int, id: in
49
49
type = int ,
50
50
default = None ,
51
51
)
52
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
52
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
53
53
@click .option ("-i" , "--id" , help = "Id of the wallet to use" , type = int , default = 1 , show_default = True , required = True )
54
54
@click .option (
55
55
"-o" ,
@@ -140,7 +140,7 @@ def get_transactions_cmd(
140
140
type = int ,
141
141
default = None ,
142
142
)
143
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
143
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
144
144
@click .option ("-i" , "--id" , help = "Id of the wallet to use" , type = int , default = 1 , show_default = True , required = True )
145
145
@click .option ("-a" , "--amount" , help = "How much chia to send, in XCH" , type = str , required = True )
146
146
@click .option ("-e" , "--memo" , help = "Additional memo for the transaction" , type = str , default = None )
@@ -227,7 +227,7 @@ def send_cmd(
227
227
type = int ,
228
228
default = None ,
229
229
)
230
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
230
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
231
231
@click .option (
232
232
"-w" ,
233
233
"--wallet_type" ,
@@ -255,7 +255,7 @@ def show_cmd(wallet_rpc_port: Optional[int], fingerprint: int, wallet_type: Opti
255
255
default = None ,
256
256
)
257
257
@click .option ("-i" , "--id" , help = "Id of the wallet to use" , type = int , default = 1 , show_default = True , required = True )
258
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
258
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
259
259
@click .option (
260
260
"-n/-l" ,
261
261
"--new-address/--latest-address" ,
@@ -286,7 +286,7 @@ def get_address_cmd(wallet_rpc_port: Optional[int], id, fingerprint: int, new_ad
286
286
default = None ,
287
287
)
288
288
@click .option ("-i" , "--id" , help = "Id of the wallet to use" , type = int , default = 1 , show_default = True , required = True )
289
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
289
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
290
290
def delete_unconfirmed_transactions_cmd (wallet_rpc_port : Optional [int ], id , fingerprint : int ) -> None :
291
291
extra_params = {"id" : id }
292
292
import asyncio
@@ -304,7 +304,7 @@ def delete_unconfirmed_transactions_cmd(wallet_rpc_port: Optional[int], id, fing
304
304
type = int ,
305
305
default = None ,
306
306
)
307
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
307
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
308
308
def get_derivation_index_cmd (wallet_rpc_port : Optional [int ], fingerprint : int ) -> None :
309
309
extra_params : Dict [str , Any ] = {}
310
310
import asyncio
@@ -322,7 +322,7 @@ def get_derivation_index_cmd(wallet_rpc_port: Optional[int], fingerprint: int) -
322
322
type = int ,
323
323
default = None ,
324
324
)
325
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
325
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
326
326
@click .option ("-a" , "--address" , help = "The address you want to use for signing" , type = str , required = True )
327
327
@click .option ("-m" , "--hex_message" , help = "The hex message you want sign" , type = str , required = True )
328
328
def address_sign_message (wallet_rpc_port : Optional [int ], fingerprint : int , address : str , hex_message : str ) -> None :
@@ -344,7 +344,7 @@ def address_sign_message(wallet_rpc_port: Optional[int], fingerprint: int, addre
344
344
type = int ,
345
345
default = None ,
346
346
)
347
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
347
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
348
348
@click .option (
349
349
"-i" , "--index" , help = "Index to set. Must be greater than the current derivation index" , type = int , required = True
350
350
)
@@ -400,7 +400,7 @@ def add_token_cmd(wallet_rpc_port: Optional[int], asset_id: str, token_name: str
400
400
type = int ,
401
401
default = None ,
402
402
)
403
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
403
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
404
404
@click .option (
405
405
"-o" ,
406
406
"--offer" ,
@@ -459,7 +459,7 @@ def make_offer_cmd(
459
459
type = int ,
460
460
default = None ,
461
461
)
462
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
462
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
463
463
@click .option ("-id" , "--id" , help = "The ID of the offer that you wish to examine" )
464
464
@click .option ("-p" , "--filepath" , help = "The path to rewrite the offer file to (must be used in conjunction with --id)" )
465
465
@click .option ("-em" , "--exclude-my-offers" , help = "Exclude your own offers from the output" , is_flag = True )
@@ -505,7 +505,7 @@ def get_offers_cmd(
505
505
type = int ,
506
506
default = None ,
507
507
)
508
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
508
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
509
509
@click .option ("-e" , "--examine-only" , help = "Print the summary of the offer file but do not take it" , is_flag = True )
510
510
@click .option (
511
511
"-m" , "--fee" , help = "The fee to use when pushing the completed offer, in XCH" , default = "0" , show_default = True
@@ -546,7 +546,7 @@ def take_offer_cmd(
546
546
type = int ,
547
547
default = None ,
548
548
)
549
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
549
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
550
550
@click .option ("-id" , "--id" , help = "The offer ID that you wish to cancel" , required = True )
551
551
@click .option ("--insecure" , help = "Don't make an on-chain transaction, simply mark the offer as cancelled" , is_flag = True )
552
552
@click .option (
@@ -589,7 +589,7 @@ def did_cmd():
589
589
type = int ,
590
590
default = None ,
591
591
)
592
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
592
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
593
593
@click .option ("-n" , "--name" , help = "Set the DID wallet name" , type = str )
594
594
@click .option (
595
595
"-a" ,
@@ -627,7 +627,7 @@ def did_create_wallet_cmd(
627
627
type = int ,
628
628
default = None ,
629
629
)
630
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
630
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
631
631
@click .option ("-i" , "--did_id" , help = "DID ID you want to use for signing" , type = str , required = True )
632
632
@click .option ("-m" , "--hex_message" , help = "The hex message you want to sign" , type = str , required = True )
633
633
def did_sign_message (wallet_rpc_port : Optional [int ], fingerprint : int , did_id : str , hex_message : str ) -> None :
@@ -647,7 +647,7 @@ def did_sign_message(wallet_rpc_port: Optional[int], fingerprint: int, did_id: s
647
647
type = int ,
648
648
default = None ,
649
649
)
650
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
650
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
651
651
@click .option ("-i" , "--id" , help = "Id of the wallet to use" , type = int , required = True )
652
652
@click .option ("-n" , "--name" , help = "Set the DID wallet name" , type = str , required = True )
653
653
def did_wallet_name_cmd (wallet_rpc_port : Optional [int ], fingerprint : int , id : int , name : str ) -> None :
@@ -667,7 +667,7 @@ def did_wallet_name_cmd(wallet_rpc_port: Optional[int], fingerprint: int, id: in
667
667
type = int ,
668
668
default = None ,
669
669
)
670
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
670
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
671
671
@click .option ("-i" , "--id" , help = "Id of the wallet to use" , type = int , required = True )
672
672
def did_get_did_cmd (wallet_rpc_port : Optional [int ], fingerprint : int , id : int ) -> None :
673
673
import asyncio
@@ -691,7 +691,7 @@ def nft_cmd():
691
691
type = int ,
692
692
default = None ,
693
693
)
694
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
694
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
695
695
@click .option ("-di" , "--did-id" , help = "DID Id to use" , type = str )
696
696
@click .option ("-n" , "--name" , help = "Set the NFT wallet name" , type = str )
697
697
def nft_wallet_create_cmd (
@@ -713,7 +713,7 @@ def nft_wallet_create_cmd(
713
713
type = int ,
714
714
default = None ,
715
715
)
716
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
716
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
717
717
@click .option ("-i" , "--nft_id" , help = "NFT ID you want to use for signing" , type = str , required = True )
718
718
@click .option ("-m" , "--hex_message" , help = "The hex message you want to sign" , type = str , required = True )
719
719
def nft_sign_message (wallet_rpc_port : Optional [int ], fingerprint : int , nft_id : str , hex_message : str ) -> None :
@@ -733,7 +733,7 @@ def nft_sign_message(wallet_rpc_port: Optional[int], fingerprint: int, nft_id: s
733
733
type = int ,
734
734
default = None ,
735
735
)
736
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
736
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
737
737
@click .option ("-i" , "--id" , help = "Id of the NFT wallet to use" , type = int , required = True )
738
738
@click .option ("-ra" , "--royalty-address" , help = "Royalty address" , type = str )
739
739
@click .option ("-ta" , "--target-address" , help = "Target address" , type = str )
@@ -831,7 +831,7 @@ def nft_mint_cmd(
831
831
type = int ,
832
832
default = None ,
833
833
)
834
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
834
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
835
835
@click .option ("-i" , "--id" , help = "Id of the NFT wallet to use" , type = int , required = True )
836
836
@click .option ("-ni" , "--nft-coin-id" , help = "Id of the NFT coin to add the URI to" , type = str , required = True )
837
837
@click .option ("-u" , "--uri" , help = "URI to add to the NFT" , type = str )
@@ -888,7 +888,7 @@ def nft_add_uri_cmd(
888
888
type = int ,
889
889
default = None ,
890
890
)
891
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
891
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
892
892
@click .option ("-i" , "--id" , help = "Id of the NFT wallet to use" , type = int , required = True )
893
893
@click .option ("-ni" , "--nft-coin-id" , help = "Id of the NFT coin to transfer" , type = str , required = True )
894
894
@click .option ("-ta" , "--target-address" , help = "Target recipient wallet address" , type = str , required = True )
@@ -939,7 +939,7 @@ def nft_transfer_cmd(
939
939
type = int ,
940
940
default = None ,
941
941
)
942
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
942
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
943
943
@click .option ("-i" , "--id" , help = "Id of the NFT wallet to use" , type = int , required = True )
944
944
def nft_list_cmd (wallet_rpc_port : Optional [int ], fingerprint : int , id : int ) -> None :
945
945
import asyncio
@@ -958,7 +958,7 @@ def nft_list_cmd(wallet_rpc_port: Optional[int], fingerprint: int, id: int) -> N
958
958
type = int ,
959
959
default = None ,
960
960
)
961
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
961
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
962
962
@click .option ("-i" , "--id" , help = "Id of the NFT wallet to use" , type = int , required = True )
963
963
@click .option ("-di" , "--did-id" , help = "DID Id to set on the NFT" , type = str , required = True )
964
964
@click .option ("-ni" , "--nft-coin-id" , help = "Id of the NFT coin to set the DID on" , type = str , required = True )
@@ -1009,7 +1009,7 @@ def nft_set_did_cmd(
1009
1009
type = int ,
1010
1010
default = None ,
1011
1011
)
1012
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
1012
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
1013
1013
@click .option ("-ni" , "--nft-coin-id" , help = "Id of the NFT coin to get information on" , type = str , required = True )
1014
1014
def nft_get_info_cmd (
1015
1015
wallet_rpc_port : Optional [int ],
@@ -1043,7 +1043,7 @@ def notification_cmd():
1043
1043
type = int ,
1044
1044
default = None ,
1045
1045
)
1046
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
1046
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
1047
1047
@click .option ("-t" , "--to-address" , help = "The address to send the notification to" , type = str , required = True )
1048
1048
@click .option (
1049
1049
"-a" ,
@@ -1087,7 +1087,7 @@ def _send_notification(
1087
1087
type = int ,
1088
1088
default = None ,
1089
1089
)
1090
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
1090
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
1091
1091
@click .option ("-i" , "--id" , help = "The specific notification ID to show" , type = str , default = [], multiple = True )
1092
1092
@click .option ("-s" , "--start" , help = "The number of notifications to skip" , type = int , default = None )
1093
1093
@click .option ("-e" , "--end" , help = "The number of notifications to stop at" , type = int , default = None )
@@ -1120,7 +1120,7 @@ def _get_notifications(
1120
1120
type = int ,
1121
1121
default = None ,
1122
1122
)
1123
- @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which wallet to use" , type = int )
1123
+ @click .option ("-f" , "--fingerprint" , help = "Set the fingerprint to specify which key to use" , type = int )
1124
1124
@click .option ("-i" , "--id" , help = "A specific notification ID to delete" , type = str , multiple = True )
1125
1125
@click .option ("--all" , help = "All notifications can be deleted (they will be recovered during resync)" , is_flag = True )
1126
1126
def _delete_notifications (
0 commit comments