Skip to content

Commit

Permalink
use timestamp nonce in validator config
Browse files Browse the repository at this point in the history
  • Loading branch information
aforaleka committed Oct 14, 2024
1 parent 49621c4 commit 2713d3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/hooks/useDydxClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ const useDydxClientContext = () => {
broadcastPollIntervalMs: 3_000,
broadcastTimeoutMs: 60_000,
},
DEFAULT_TRANSACTION_MEMO
DEFAULT_TRANSACTION_MEMO,
true // TODO(@aforaleka): default this to true in v4-clients once verified working
)
)
);
Expand Down
3 changes: 2 additions & 1 deletion src/lib/abacus/dydxChainTransactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ class DydxChainTransactions implements AbacusDYDXChainTransactionsProtocol {
broadcastPollIntervalMs: 3_000,
broadcastTimeoutMs: 60_000,
},
DEFAULT_TRANSACTION_MEMO
DEFAULT_TRANSACTION_MEMO,
true // TODO(@aforaleka): default this to true in v4-clients once verified working
)
)
);
Expand Down

0 comments on commit 2713d3f

Please sign in to comment.