forked from cerc-io/laconic-wallet
* Add the creatHDWallet function * Make review changes * Add signMessage and signEthMessage functions * Add signCosmosMessage function * Add resetWallet function * Add resetWallet function * Integrate functions with UI * Add Alerts to react component * Make review changes * Add comment in utils file * Remove lowerCase conversion in signCosmosmessage function --------- Co-authored-by: IshaVenikar <ishavenikar7@gmail.com>
15 lines
261 B
TypeScript
15 lines
261 B
TypeScript
export type StackParamsList = {
|
|
Laconic: undefined;
|
|
SignMessage: { selectedNetwork: string } | undefined;
|
|
};
|
|
|
|
export type Account = {
|
|
pubKey: string;
|
|
address: string;
|
|
};
|
|
|
|
export type WalletDetails = {
|
|
ethAccount: Account;
|
|
cosmosAccount: Account;
|
|
};
|