Skip to content

Commit c8666a9

Browse files
authored
Merge pull request #288 from BitGo/win-5033
feat: update chainConfig to default
2 parents 333a7ab + bb6ba1d commit c8666a9

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

scripts/chainConfig.ts

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -139,21 +139,7 @@ export async function getChainConfig(chainId: number): Promise<ChainConfig> {
139139
break;
140140

141141
case CHAIN_IDS.MONAD_TESTNET:
142-
case CHAIN_IDS.MONAD: {
143-
const baseFee = 30_000_000_000n; // fallback base fee
144-
const priority = 1n * GWEI;
145-
gasParams = {
146-
maxFeePerGas: baseFee + priority,
147-
maxPriorityFeePerGas: priority,
148-
gasLimit: 3_000_000
149-
};
150-
forwarderContractName = 'ForwarderV4';
151-
forwarderFactoryContractName = 'ForwarderFactoryV4';
152-
const estimatedTxCost = ethers.formatEther(
153-
gasParams.maxFeePerGas * BigInt(gasParams.gasLimit)
154-
);
155-
break;
156-
}
142+
case CHAIN_IDS.MONAD:
157143

158144
case CHAIN_IDS.FLARE:
159145
case CHAIN_IDS.FLARE_TESTNET:

0 commit comments

Comments
 (0)