Skip to content

Commit

Permalink
Mobile: custom nonce support (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-wallet authored and agent-dominatrix committed Aug 27, 2024
1 parent 3bf2f78 commit bcc45d8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/mobile/src/stores/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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(
{
Expand All @@ -196,6 +198,7 @@ export class RootStore {
this.chainStore,
this.activityStore,
this.tokenGraphStore,
this.accountBaseStore,
() => {
return {
suggestChain: false,
Expand Down

0 comments on commit bcc45d8

Please sign in to comment.