From c9f3d0b8d60788c6fe174fe1a6539e4a7b8b9669 Mon Sep 17 00:00:00 2001 From: Adarsh Ravichandran Date: Wed, 14 Aug 2024 15:58:22 +0530 Subject: [PATCH] chore(eth-multisig-v4): add bera config Ticket: WIN-3295 --- hardhat.config.ts | 8 ++++---- scripts/deploy.ts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hardhat.config.ts b/hardhat.config.ts index c945920..fc9b42f 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -137,7 +137,7 @@ const config: HardhatUserConfig = { accounts: [`${MAINNET_PRIVATE_KEY_FOR_CONTRACT_DEPLOYMENT}`] ======= tbera: { - url: `${BARTIO_BERA_EXPLORER_API_KEY}`, + url: `https://bartio.rpc.berachain.com/`, accounts: [`${PRIVATE_KEY_FOR_V4_CONTRACT_DEPLOYMENT}`] >>>>>>> be622e1 (chore(eth-multisig-v4): add bera config) } @@ -217,12 +217,12 @@ const config: HardhatUserConfig = { } }, { - network: 'berachainBartio', + network: 'bartioBera', chainId: 80084, urls: { apiURL: - 'https://api.routescan.io/v2/network/testnet/evm/80084/etherscan/api/', - browserURL: 'https://bartio.beratrail.io/' + 'https://api.routescan.io/v2/network/testnet/evm/80084/etherscan/api', + browserURL: 'https://bartio.beratrail.io' } }, { diff --git a/scripts/deploy.ts b/scripts/deploy.ts index 3f10087..695ad97 100644 --- a/scripts/deploy.ts +++ b/scripts/deploy.ts @@ -88,7 +88,7 @@ async function main() { forwarderFactoryContractName = 'ForwarderFactory'; contractPath = `contracts/${walletImplementationContractName}.sol:${walletImplementationContractName}`; case 80084: - walletImplementationContractName = 'BeraWalletSimple'; + walletImplementationContractName = 'WalletSimple'; forwarderContractName = 'ForwarderV4'; forwarderFactoryContractName = 'ForwarderFactoryV4'; contractPath = `contracts/${walletImplementationContractName}.sol:${walletImplementationContractName}`;