Skip to content

Commit

Permalink
Merge pull request #180 from BitGo/base-v2.4
Browse files Browse the repository at this point in the history
chore(ccr): use default gas params
  • Loading branch information
kamleshmugdiya authored Sep 20, 2024
2 parents 9483259 + be4f555 commit 1ea5648
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 1ea5648

Please sign in to comment.