Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds support for standard string based addresses, NEP-2 encoded private keys and NEP-6 wallets.
Commands that require an address for non signing purposes (
show balance
,show balances
,transfer
receiver) now support standard Neo addresses in additon to neo express wallet names.Commands that require an address for signing purposes (
contract deploy
,contract invoke
,transfer
sender) now can accept a NEP-2 encoded private key or the path to a NEP-6 wallet in addition to a neo-express wallet name. Since NEP-2 and NEP-6 are both password protected, those commands now support a -p/--password option so that the password can be provided on the command line. Note, -p/--password option is usable in both normal and batch mode.For non-batch mode, if the user doesn't specify a neo-express wallet for a signing address, neo-express will prompt the user interactively for the password.
fix #103