Skip to content

Commit

Permalink
default safeTxGas 0
Browse files Browse the repository at this point in the history
  • Loading branch information
fewensa committed Aug 13, 2024
1 parent 6a28014 commit 3f3c991
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
7 changes: 0 additions & 7 deletions src/ecosys/definition.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,3 @@ safepin:
46: # darwinia
safeTxGas: 613599
gasPrice: 154000000000
42161: # arbitrum
safeTxGas: 552730
#gasPrice: 10000000
534352: # scroll
safeTxGas: 5000000
100: # gnosis
safeTxGas: 0
5 changes: 4 additions & 1 deletion src/ecosys/safe.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,10 @@ export async function propose(options = {definition, safeSdk, safeService, trans
nonce = remoteNonce;
}

let createTransactionOptions = {nonce};
let createTransactionOptions = {
safeTxGas: 0,
nonce,
};
if (safepin) {
createTransactionOptions = {...createTransactionOptions, ...safepin};
}
Expand Down

0 comments on commit 3f3c991

Please sign in to comment.