Extend and truncate seeds, XOR them, derive child seeds and xpubs/xprvs at account or root level.
``` seed-utils 0.1.0 CLI seed utilities
USAGE: seed-utils [SUBCOMMAND]
FLAGS: -h, --help Prints help information -V, --version Prints version information
SUBCOMMANDS: child Derives a child seed from a seed extend Creates a new seed by extending the entropy of a 12 or 18 word seed help Prints this message or the help of the given subcommand(s) truncate Creates new seeds by shortening the entropy of another. The new seed begins with the same words as the longer one, only the last word is different to satisfy its checksum xor Does a XOR of multiple seeds xprv Derives account xprvs from a seed xpub Derives account xpubs from a seed ```
child
subcommand:``` Derives a child seed from a seed
USAGE:
seed-utils child [OPTIONS]
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-i, --index
ARGS:
extend
subcommand:``` Creates a new seed by extending the entropy of a 12 or 18 word seed
USAGE:
seed-utils extend [OPTIONS]
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-w, --words
ARGS:
truncate
subcommand:``` Creates new seeds by shortening the entropy of another. The new seed begins with the same words as the longer one, only the last word is different to satisfy its checksum
USAGE:
seed-utils truncate [OPTIONS]
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-w, --words
ARGS:
xor
subcommand:``` Does a XOR of multiple seeds
USAGE:
seed-utils xor
FLAGS: -h, --help Prints help information -V, --version Prints version information
ARGS:
xprv
subcommand:``` Derives account or root xprvs from a seed
USAGE:
seed-utils xprv [FLAGS] [OPTIONS]
FLAGS: -h, --help Prints help information -r, --root Derives xprv at bip32 root instead of account level -V, --version Prints version information
OPTIONS:
-i, --index
ARGS:
xpub
subcommand:``` Derives account or root xpubs from a seed
USAGE:
seed-utils xpub [FLAGS] [OPTIONS]
FLAGS: -h, --help Prints help information -r, --root Derives xpub at bip32 root instead of account level -V, --version Prints version information
OPTIONS:
-i, --index
ARGS:
## Useful resources - Online tool: https://iancoleman.io/bip39/ - bip32: https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki - bip39: https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki - bip85: https://github.com/bitcoin/bips/blob/master/bip-0085.mediawiki