From bcc45d8ceb346e8502f296ee46bbc41798372b5f Mon Sep 17 00:00:00 2001 From: sh-wallet <137136919+sh-wallet@users.noreply.github.com> Date: Mon, 19 Aug 2024 09:22:52 +0530 Subject: [PATCH] Mobile: custom nonce support (#387) --- packages/mobile/src/stores/root.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/mobile/src/stores/root.tsx b/packages/mobile/src/stores/root.tsx index fd2426f66f..82a31f6411 100644 --- a/packages/mobile/src/stores/root.tsx +++ b/packages/mobile/src/stores/root.tsx @@ -57,6 +57,7 @@ export class RootStore { public readonly chainSuggestStore: ChainSuggestStore; public readonly activityStore: ActivityStore; public readonly tokenGraphStore: TokenGraphStore; + public readonly accountBaseStore: AsyncKVStore; public readonly queriesStore: QueriesStore< [CosmosQueries, CosmwasmQueries, SecretQueries, KeplrETCQueries] @@ -183,6 +184,7 @@ export class RootStore { new AsyncKVStore("store_token_graph_config"), this.chainStore ); + this.accountBaseStore = new AsyncKVStore("store_account_config"); this.accountStore = new AccountStore( { @@ -196,6 +198,7 @@ export class RootStore { this.chainStore, this.activityStore, this.tokenGraphStore, + this.accountBaseStore, () => { return { suggestChain: false,