-
Notifications
You must be signed in to change notification settings - Fork 43
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
[PSDK-111] Wallet Import/Export/Save/Load #23
[PSDK-111] Wallet Import/Export/Save/Load #23
Conversation
3cc7875
to
c0699ba
Compare
ec16e94
to
f2c323e
Compare
expect(walletSeedData[walletId].authTag).toBeTruthy(); | ||
expect(walletSeedData[walletId].seed).not.toBe(seed); | ||
}); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
test: Seed does not match wallet
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seed
is a private member so this test is not necessary on Node.js SDK. Ruby allows seed
to be a public setter (Consider changing this)
f2c323e
to
ccdc856
Compare
ccdc856
to
8f717d7
Compare
@John-peterson-coinbase I see a The |
+1 this implementation was based off of the previous version of ruby sdk where this logic is closer to parity. We will flag a follow up to update the wallet import logic to more closely track the v0.0.5 release of Ruby SDK |
What changed? Why?
Added the following methods + tests:
User.saveWallet
User.loadWallets
User.importWallet
Wallet.export()
Qualified Impact