register_command('check_seed',0,0,0,['seed'],['entropy','language'],'Check that a seed was generated with given entropy','')
param_descriptions={
'privkey':'Private key. Set to \'?\'will get a prompt.',
'privkey':'Private key. Set to \'?\'to get a prompt.',
'address':'Bitcoin address',
'seed':'Seed phrase',
'txid':'Transaction ID',
@ -125,7 +123,7 @@ param_descriptions = {
'pubkey':'Public key',
'message':'Clear text message. Use quotes if it contains spaces.',
'encrypted':'Encrypted message',
'amount':'Amount in BTC',
'amount':'Amount to send (in BTC). Set to \'!\' to send the maximum available.',
'csv_file':'CSV file of recipient, amount',
}
@ -138,16 +136,16 @@ command_options = {
'funded':(None,"--funded",False,"Show only funded addresses"),
'show_balance':("-b","--balance",False,"Show the balances of listed addresses"),
'show_labels':("-l","--labels",False,"Show the labels of listed addresses"),
'tx_fee':("-f","--fee",None,"Transaction fee"),
'from_addr':("-F","--fromaddr",None,"Source address. If it isn't in the wallet, it will ask for the private key unless supplied in the format public_key:private_key. It's not saved in the wallet."),
'change_addr':("-c","--changeaddr",None,"Change address. Default is a spare address, or the source address if it's not in the wallet"),
'tx_fee':("-f","--fee",None,"Transaction fee (in BTC)"),
'from_addr':("-F","--from",None,"Source address. If it isn't in the wallet, it will ask for the private key unless supplied in the format public_key:private_key. It's not saved in the wallet."),
'change_addr':("-c","--change",None,"Change address. Default is a spare address, or the source address if it's not in the wallet"),
'nbits':(None,"--nbits",128,"Number of bits of entropy"),
'entropy':(None,"--entropy",1,"Custom entropy"),
'language':("-L","--lang",None,"Default language for wordlist"),
'gap_limit':("-G","--gap",None,"Gap limit"),
'mpk':(None,"--mpk",None,"Restore from master public key"),