From be4f55557da8d3d463009bbf1c6fdc66fda7a2ce Mon Sep 17 00:00:00 2001 From: Kamlesh Mugdiya Date: Fri, 20 Sep 2024 17:14:46 +0530 Subject: [PATCH] chore(ccr): use default gas params Ticket: COIN-1108 --- scripts/deploy.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/deploy.ts b/scripts/deploy.ts index eebffe0..f34dfc8 100644 --- a/scripts/deploy.ts +++ b/scripts/deploy.ts @@ -102,11 +102,15 @@ async function main() { case 84532: // base case 8453: + eip1559GasParams.gasLimit = 3000000; + eip1559GasParams.maxFeePerGas = BigNumber.from('10000000000'); + eip1559GasParams.maxPriorityFeePerGas = BigNumber.from('10000000000'); walletImplementationContractName = 'WalletSimple'; forwarderContractName = 'Forwarder'; forwarderFactoryContractName = 'ForwarderFactory'; contractPath = `contracts/${walletImplementationContractName}.sol:${walletImplementationContractName}`; break; + // bera case 80084: walletImplementationContractName = 'WalletSimple'; forwarderContractName = 'ForwarderV4';