-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Account creation using NEP-2 #60
Comments
Summary or problem description Do you have any solution you want to propose? Additional contextual information
|
lock9
added a commit
to simplitech/neo-mamba
that referenced
this issue
Apr 8, 2021
# Conflicts: # neo3/wallet/__init__.py # neo3/wallet/account.py # requirements.txt # tests/wallet/test_account.py
luc10921
pushed a commit
to simplitech/neo-mamba
that referenced
this issue
Apr 28, 2021
luc10921
pushed a commit
to simplitech/neo-mamba
that referenced
this issue
Apr 29, 2021
Closed
luc10921
pushed a commit
to simplitech/neo-mamba
that referenced
this issue
May 4, 2021
ixje
added a commit
that referenced
this issue
May 7, 2021
* Account creation using NEP-2 #60 * Finished testing. * Changed the constructor and moved all local imports to the top of the file * added some descriptions to methods * generated new accounts using rc1 instead of preview3 * updated code according to feedback * added a test trying to create an account with an encrypted key and the wrong password * added validade_address() and removed the underscore after `data`. Co-authored-by: Erik van den Brink <git@erikvandenbrink.com> Co-authored-by: luc10921 <lucas.uezu@simpli.com.br>
Closed with #81 |
ixje
added a commit
that referenced
this issue
Jun 14, 2021
* Account creation using NEP-2 #60 (#81) * Account creation using NEP-2 #60 * Finished testing. * Changed the constructor and moved all local imports to the top of the file * added some descriptions to methods * generated new accounts using rc1 instead of preview3 * updated code according to feedback * added a test trying to create an account with an encrypted key and the wrong password * added validade_address() and removed the underscore after `data`. Co-authored-by: Erik van den Brink <git@erikvandenbrink.com> Co-authored-by: luc10921 <lucas.uezu@simpli.com.br> * Wallet creation using NEP-6 (#80) * Wallet creation using NEP-6 * moved ScryptParameter default to constructor * changed None returns to raising exceptions and removed unnecessary method * change default values * import wallet package in the unit test * don't persist as default * code review * move new_wallet logic to constructor Co-authored-by: Erik van den Brink <git@erikvandenbrink.com> * clean up imports, typing, docs * Update accounts to RC2 * Import private key (#87) * Decrypting NEP-2 account (#92) Co-authored-by: luc10921 <lucas.uezu@simpli.com.br> * Remove mutable object from default arguments * Add and remove accounts in the wallet (#89) * Add support to multiple accounts in the same wallet * doc strings and rename method Co-authored-by: Erik van den Brink <git@erikvandenbrink.com> * Add extra keys (#94) * Add extra keys * change extra typing and to_json conversion + rebase * fix unit tests * Exporting wallet using NEP-6 format (#83) * Export wallet using NEP-6 format * fix lint e type-check Co-authored-by: Erik van den Brink <git@erikvandenbrink.com> * - fix isdefault -> isDefault - fix version 3.0 -> 1.0 - use f-strings - some docs strings and other cleanup * - remove tests that could throw away user wallets - cleanup test wallet * fix account from json overriding address for multisig account * merge account and accountcontract into one module * Add single account signing * fix circle-ci * Add multisig signing support * Add fee calculation helpers * bump requirements * Add signing example (#109) * silence circleci Co-authored-by: Lucas Kenji Uezu <49196318+luc10921@users.noreply.github.com> Co-authored-by: luc10921 <lucas.uezu@simpli.com.br> Co-authored-by: Mirella de Medeiros <mirellamedeiros.09@hotmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Create a single account using NEP-2 (password is needed)
NewAccount()
NewAccountFromEncryptedKey(nep2: string, password: string)
NewAccountFromPrivateKey()
The text was updated successfully, but these errors were encountered: