Skip to content

Commit

Permalink
fix: set gasfee for fuse to 11
Browse files Browse the repository at this point in the history
  • Loading branch information
L03TJ3 committed Aug 8, 2024
1 parent 5bf3b33 commit d24c585
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const fuseNetwork = {
defaultPublicRpc: 'https://rpc.fuse.io/',
explorerName: 'fusescan',
network_id: 122,
gasPrice: 10, // in gwei
gasPrice: 11, // in gwei
g$Decimals: 2,
}

Expand Down Expand Up @@ -221,7 +221,7 @@ const Config = {
networkId,
isFVFlow: env.REACT_APP_BUILD_TARGET === 'FV',
estimateGasPrice: env.REACT_APP_ESTIMATE_GAS_PRICE === 'true',
defaultGasPrice: parseInt(env.REACT_APP_DEFAULT_GAS_PRICE || 10),
defaultGasPrice: parseInt(env.REACT_APP_DEFAULT_GAS_PRICE || 11),
defaultTxGas: parseInt(env.REACT_APP_DEFAULT_TX_GAS || 1000000),
verifyCaptchaUrl: env.REACT_APP_VERIFY_CAPTCHA_URL || 'https://verify.goodworker.workers.dev',
...(env.REACT_APP_TEST_CLAIM_NOTIFICATION === 'true' ? notifyOptsTest : notifyOpts),
Expand Down

0 comments on commit d24c585

Please sign in to comment.