Skip to content

Commit

Permalink
feat:add chain config
Browse files Browse the repository at this point in the history
  • Loading branch information
livingrockrises committed Oct 10, 2024
1 parent 946800a commit 2582396
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ artifacts-filtered
account-abstraction
scw-contracts

.DS_Store
55 changes: 55 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,61 @@ const config: HardhatUserConfig = {
accounts: hardhatAccounts,
chainId: 1328,
},
kakarotTestnet: {
url: "https://sepolia-rpc-priority.kakarot.org/",
accounts: hardhatAccounts,
chainId: 1802203764,
},
fireChainTestnet: {
url: "https://rpc.testnet.5ire.network",
accounts: hardhatAccounts,
chainId: 997,
},
fireChainMainnet: {
url: "https://rpc.5ire.network",
accounts: hardhatAccounts,
chainId: 995,
},
bobaSepolia: {
url: "https://sepolia.boba.network",
accounts: hardhatAccounts,
chainId: 28882,
},
bobaMainnet: {
url: "https://mainnet.boba.network",
accounts: hardhatAccounts,
chainId: 288,
},
metalL2Testnet: {
url: "https://rpc-metal-l2-testnet-3bbzi9kufn.t.conduit.xyz/4nvN9tL8pppXKHkjWrT128yrFUMvXBxZL",
accounts: hardhatAccounts,
chainId: 1740,
},
metalL2Mainnet: {
url: "https://rpc-metal-mainnet-0.t.conduit.xyz/4nvN9tL8pppXKHkjWrT128yrFUMvXBxZL",
accounts: hardhatAccounts,
chainId: 1750,
},
metalL0Testnet: {
url: "https://tahoe.metalblockchain.org/ext/bc/C/rpc",
accounts: hardhatAccounts,
chainId: 381932,
},
metalL0Mainnet: {
url: "https://api.metalblockchain.org/ext/bc/C/rpc",
accounts: hardhatAccounts,
chainId: 381931,
},
liskTestnet: {
url: "https://rpc.sepolia-api.lisk.com",
accounts: hardhatAccounts,
chainId: 4202,
},
liskMainnet: {
url: "https://rpc.api.lisk.com",
accounts: hardhatAccounts,
chainId: 1135,
},
},
gasReporter: {
enabled: process.env.REPORT_GAS !== undefined,
Expand Down

0 comments on commit 2582396

Please sign in to comment.