From e06d75e509903514c357cef918bca54c6047c48a Mon Sep 17 00:00:00 2001 From: Kamlesh Mugdiya Date: Wed, 14 Aug 2024 11:19:44 +0530 Subject: [PATCH] feat(contract): deploy base v4 contract Ticket: COIN-1108 --- hardhat.config.ts | 4 ++-- scripts/deploy.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hardhat.config.ts b/hardhat.config.ts index fb4c4d2..54434ba 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -126,11 +126,11 @@ const config: HardhatUserConfig = { }, tbaseeth: { url: 'https://sepolia.base.org', - accounts: [`${TESTNET_PRIVATE_KEY_FOR_CONTRACT_DEPLOYMENT}`] + accounts: [`${PRIVATE_KEY_FOR_V4_CONTRACT_DEPLOYMENT}`] }, baseeth: { url: 'https://mainnet.base.org/', - accounts: [`${MAINNET_PRIVATE_KEY_FOR_CONTRACT_DEPLOYMENT}`] + accounts: [`${PRIVATE_KEY_FOR_V4_CONTRACT_DEPLOYMENT}`] }, tbera: { url: `https://bartio.rpc.berachain.com/`, diff --git a/scripts/deploy.ts b/scripts/deploy.ts index 7b1eb27..d310843 100644 --- a/scripts/deploy.ts +++ b/scripts/deploy.ts @@ -86,8 +86,8 @@ async function main() { // base case 8453: walletImplementationContractName = 'WalletSimple'; - forwarderContractName = 'Forwarder'; - forwarderFactoryContractName = 'ForwarderFactory'; + forwarderContractName = 'ForwarderV4'; + forwarderFactoryContractName = 'ForwarderFactoryV4'; contractPath = `contracts/${walletImplementationContractName}.sol:${walletImplementationContractName}`; break; case 80084: