Skip to content

Commit

Permalink
feat: introduce lisk sepolia
Browse files Browse the repository at this point in the history
  • Loading branch information
juliopavila committed Feb 8, 2025
1 parent b63ada4 commit e3de55a
Showing 1 changed file with 22 additions and 7 deletions.
29 changes: 22 additions & 7 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@ const argv = yargs
dotenv.config()
const { INFURA_KEY, MNEMONIC, ETHERSCAN_API_KEY, PK, ALCHEMY_KEY } = process.env

import "./src/tasks/extract-mastercopy";
import "./src/tasks/deploy-mastercopies";
import "./src/tasks/deploy-mastercopy";
import "./src/tasks/verify-mastercopies";
import "./src/tasks/verify-mastercopy";

import './src/tasks/extract-mastercopy'
import './src/tasks/deploy-mastercopies'
import './src/tasks/deploy-mastercopy'
import './src/tasks/verify-mastercopies'
import './src/tasks/verify-mastercopy'

const DEFAULT_MNEMONIC =
'candy maple cake sugar pudding cream honey rich smooth crumble sweet treat'
Expand Down Expand Up @@ -54,7 +53,7 @@ export default {
solidity: {
compilers: [
{ version: '0.8.20' },
{ version: '0.8.4' },
{ version: '0.8.4' },
{ version: '0.8.2' },
{ version: '0.8.1' },
{ version: '0.8.0' },
Expand Down Expand Up @@ -90,6 +89,12 @@ export default {
url: 'http://localhost:24012/rpc',
timeout: 100000000,
},
'lisk-sepolia': {
...sharedNetworkConfig,
chainId: 4202,
url: 'https://rpc.sepolia-api.lisk.com',
gasPrice: 1000000000,
},
},
namedAccounts: {
deployer: 0,
Expand All @@ -99,5 +104,15 @@ export default {
},
etherscan: {
apiKey: ETHERSCAN_API_KEY,
customChains: [
{
network: 'lisk-sepolia',
chainId: 4202,
urls: {
apiURL: 'https://sepolia-blockscout.lisk.com/api',
browserURL: 'https://sepolia-blockscout.lisk.com',
},
},
],
},
}

0 comments on commit e3de55a

Please sign in to comment.