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
Copy file name to clipboardExpand all lines: slip39/main.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ def main( argv=None ):
77
77
help="Save an encrypted JSON wallet for each Ethereum address w/ this password, '-' reads it from stdin (default: None)" )
78
78
ap.add_argument( '-w', '--wallet',
79
79
default=None,
80
-
help="Produce paper wallets in output PDF; each wallet private key is encrypted this password" )
80
+
help="Produce paper wallets in output PDF; each wallet private key is encrypted this password (use --wallet=\"\" for empty password)" )
81
81
ap.add_argument( '--wallet-hint',
82
82
default=None,
83
83
help="Paper wallets password hint" )
@@ -86,7 +86,7 @@ def main( argv=None ):
86
86
help=f"Paper wallet size; {', '.join(WALLET_SIZES.keys())} or '(<h>,<w>),<margin>' (default: {WALLET})" )
87
87
ap.add_argument( '-s', '--secret',
88
88
default=None,
89
-
help="Use the supplied 128-, 256- or 512-bit hex value as the secret seed; '-' reads it from stdin (eg. output from slip39.recover)" )
89
+
help="Use the supplied BIP-39 Mnemonic or 128-, 256- or 512-bit hex value as the secret seed; '-' reads it from stdin (eg. output from slip39.recover)" )
90
90
ap.add_argument( '--bits',
91
91
default=None, # Do not enforce default of 128-bit seeds
92
92
help=f"Ensure that the seed is of the specified bit length; {', '.join( map( str, BITS ))} supported." )
0 commit comments