@lunie/cosmos-keys
Version:
js version of cosmos wallet signer and address generation
9 lines (8 loc) • 590 B
TypeScript
import { Wallet, WalletIndex } from './types';
export declare function getStoredWallet(address: string, password: string): Wallet;
export declare function storeWallet(wallet: Wallet, name: string, password: string, network: string, HDPath?: string, // default
curve?: string): void;
export declare function removeWallet(address: string, password: string): void;
export declare function testPassword(address: string, password: string): void;
export declare function getWalletIndex(enriched?: Boolean): WalletIndex[];
export declare function removeFromStorage(address: string): void;