You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add feature of wallet derivation to the cosmos_node_client library
Acceptance criteria
introduce new type Mnemonic that has the constructor Mnemonic.generate(MnemonicLength length)
enumMnemonicLength {
words12,
words24,
}
classMnemonic {
finalString value;
List<String> get words {} // generate list of words based on the `value`constMnemonic._(this.value);
factoryMnemonic.generate(MnemonicLength length) { ... }
introduce new type Account with a factory deriveFromMnemonic that accepts Mnemonic mnemonic.
Add feature of wallet derivation to the
cosmos_node_client
libraryAcceptance criteria
Mnemonic
that has the constructorMnemonic.generate(MnemonicLength length)
Account
with a factoryderiveFromMnemonic
that acceptsMnemonic mnemonic
.The text was updated successfully, but these errors were encountered: