Skip to content

Commit

Permalink
➕ Add OP-Endurance Test Network Deployment
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <[email protected]>
  • Loading branch information
pcaversaccio committed Jan 18, 2024
1 parent c49c3f6 commit 5c26903
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2233,6 +2233,7 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
- [LUKSO Testnet](https://explorer.execution.testnet.lukso.network/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Manta Pacific Testnet](https://pacific-explorer.testnet.manta.network/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Frame Testnet](https://explorer.testnet.frame.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [OP-Endurance Testnet](https://explorer-l2-testnet.fusionist.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)

## Integration With External Tooling

Expand Down
7 changes: 7 additions & 0 deletions deployments/deployments.json
Original file line number Diff line number Diff line change
Expand Up @@ -427,5 +427,12 @@
"urls": [
"https://explorer.testnet.frame.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "OP-Endurance Testnet",
"chainId": 6480001001,
"urls": [
"https://explorer-l2-testnet.fusionist.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
}
]
18 changes: 18 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -432,6 +432,14 @@ const config: HardhatUserConfig = {
url: vars.get("FRAME_TESTNET_URL", "https://rpc.testnet.frame.xyz/http"),
accounts,
},
openduranceTestnet: {
chainId: 6480001001,
url: vars.get(
"OPENDURANCE_TESTNET_URL",
"https://rpc-l2-testnet.fusionist.io",
),
accounts,
},
},
contractSizer: {
alphaSort: true,
Expand Down Expand Up @@ -551,6 +559,8 @@ const config: HardhatUserConfig = {
mantaTestnet: vars.get("MANTA_API_KEY", ""),
// For Arthera testnet
artheraTestnet: vars.get("ARTHERA_API_KEY", ""),
// For OP-Endurance testnet
openduranceTestnet: vars.get("OPENDURANCE_API_KEY", ""),
},
customChains: [
{
Expand Down Expand Up @@ -859,6 +869,14 @@ const config: HardhatUserConfig = {
browserURL: "https://explorer-test.arthera.net",
},
},
{
network: "openduranceTestnet",
chainId: 6480001001,
urls: {
apiURL: "https://explorer-l2-testnet.fusionist.io/api",
browserURL: "https://explorer-l2-testnet.fusionist.io",
},
},
],
},
};
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@
"deploy:shardeumtestnet": "npx hardhat run --no-compile --network shardeumTestnet scripts/deploy.ts",
"deploy:artheratestnet": "npx hardhat run --no-compile --network artheraTestnet scripts/deploy.ts",
"deploy:frametestnet": "npx hardhat run --no-compile --network frameTestnet scripts/deploy.ts",
"deploy:opendurancetestnet": "npx hardhat run --no-compile --network openduranceTestnet scripts/deploy.ts",
"prettier:check": "npx prettier -c **/*.{js,ts,md,sol,json,yml,yaml}",
"prettier:check:interface": "cd interface && pnpm prettier:check",
"prettier:fix": "npx prettier -w **/*.{js,ts,md,sol,json,yml,yaml}",
Expand Down

0 comments on commit 5c26903

Please sign in to comment.