Closed andreibancioiu closed 1 year ago
Some commands and command arguments were deprecated in mxpy 6. Now (for mxpy 7), we remove them.
mxpy 6
mxpy 7
Removed:
mxpy wallet derive
mxpy wallet convert
--pem
--json
--output-path
mxpy wallet new
--format=...
--outfile
Replacement examples:
mxpy wallet derive alice.pem --mnemonic
mxpy wallet convert --in-format=raw-mnemonic --out-format=pem --outfile=alice.pem
mxpy wallet new --pem --output-path=alice.pem
mxpy wallet new --format=pem --outfile=alice.pem
See:
Some commands and command arguments were deprecated in
mxpy 6
. Now (formxpy 7
), we remove them.Removed:
mxpy wallet derive
. One should now usemxpy wallet convert
, instead.--pem
,--json
,--output-path
of commandmxpy wallet new
. One should now use--format=...
and--outfile
parameters, insteadReplacement examples:
mxpy wallet derive alice.pem --mnemonic
is replaced bymxpy wallet convert --in-format=raw-mnemonic --out-format=pem --outfile=alice.pem
mxpy wallet new --pem --output-path=alice.pem
is replaced bymxpy wallet new --format=pem --outfile=alice.pem
See: