Skip to content

Commit

Permalink
Merge pull request #322 from gnosisguild/feat_add_sepolia_lisk
Browse files Browse the repository at this point in the history
feat: introduce lisk sepolia
  • Loading branch information
jfschwarz authored Feb 7, 2025
2 parents b0e1c79 + e6726a2 commit 6fd9752
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions packages/evm/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,12 @@ const config: HardhatUserConfig = {
chainId: 84532,
url: `https://sepolia.base.org`,
},
"lisk-sepolia": {
...sharedNetworkConfig,
chainId: 4202,
url: "https://rpc.sepolia-api.lisk.com",
gasPrice: 1000000000,
},
},
etherscan: {
apiKey: {
Expand All @@ -138,6 +144,8 @@ const config: HardhatUserConfig = {
base: BASESCAN_API_KEY,
baseSepolia: BASESCAN_API_KEY,
bsc: BSCSCAN_API_KEY,
// Use "ETHERSCAN_API_KEY" as a placeholder, because Blockscout doesn't need a real API key, and Hardhat will complain if this property isn't set.
"lisk-sepolia": ETHERSCAN_API_KEY,
} as Record<string, string>,
customChains: [
{
Expand Down Expand Up @@ -196,8 +204,19 @@ const config: HardhatUserConfig = {
browserURL: "https://bscscan.com",
},
},
{
network: "lisk-sepolia",
chainId: 4202,
urls: {
apiURL: "https://sepolia-blockscout.lisk.com/api",
browserURL: "https://sepolia-blockscout.lisk.com",
},
},
],
},
sourcify: {
enabled: false,
},
gasReporter: {
enabled: true,
},
Expand Down

0 comments on commit 6fd9752

Please sign in to comment.