Skip to content

Commit

Permalink
chore(eth-multisig-v4): add bera config
Browse files Browse the repository at this point in the history
Ticket: WIN-3295
  • Loading branch information
adarsh312 committed Aug 14, 2024
1 parent ea2b2b3 commit c9f3d0b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down Expand Up @@ -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'
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion scripts/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`;
Expand Down

0 comments on commit c9f3d0b

Please sign in to comment.