Skip to content

Commit

Permalink
➕ Add Arthera Testnet Deployment
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>
  • Loading branch information
pcaversaccio committed Sep 17, 2023
1 parent 4491687 commit 710ba17
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,5 +111,6 @@ All files | 100 | 100 | 100 | 100 |
- LUKSO Testnet: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://explorer.execution.testnet.lukso.network/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)
- Manta Pacific Testnet: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://pacific-explorer.testnet.manta.network/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)
- Shardeum Testnet: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://explorer-dapps.shardeum.org/account/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)
- Arthera Testnet: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://explorer-test.arthera.net/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)

[^1]: Please refer to [this](https://github.com/pcaversaccio/create2deployer/issues/128) issue why the contract [`Create2Deployer`](https://github.com/pcaversaccio/create2deployer/blob/main/contracts/Create2Deployer.sol) was not deployed on the Base mainnet.
16 changes: 16 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,12 @@ const config: HardhatUserConfig = {
accounts:
process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
},
artheraTestnet: {
chainId: 10243,
url: process.env.ARTHERA_TESTNET_URL || "",
accounts:
process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
},
},
gasReporter: {
enabled: process.env.REPORT_GAS !== undefined,
Expand Down Expand Up @@ -523,6 +529,8 @@ const config: HardhatUserConfig = {
// For Manta testnet & mainnet
manta: process.env.MANTA_API_KEY || "",
mantaTestnet: process.env.MANTA_API_KEY || "",
// For Arthera testnet
artheraTestnet: process.env.ARTHERA_API_KEY || "",
},
customChains: [
{
Expand Down Expand Up @@ -757,6 +765,14 @@ const config: HardhatUserConfig = {
browserURL: "https://pacific-explorer.testnet.manta.network",
},
},
{
network: "artheraTestnet",
chainId: 10243,
urls: {
apiURL: "https://explorer-test.arthera.net/api",
browserURL: "https://explorer-test.arthera.net",
},
},
],
},
};
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
"deploy:mantatestnet": "npx hardhat run --network mantaTestnet scripts/deploy.ts",
"deploy:mantamain": "npx hardhat run --network mantaMain scripts/deploy.ts",
"deploy:shardeumtestnet": "npx hardhat run --network shardeumTestnet scripts/deploy.ts",
"deploy:artheratestnet": "npx hardhat run --network artheraTestnet scripts/deploy.ts",
"prettier:check": "npx prettier -c **/*.{js,ts,md,sol,json,yml,yaml}",
"prettier:fix": "npx prettier -w **/*.{js,ts,md,sol,json,yml,yaml}",
"solhint:check": "npx solhint 'contracts/**/*.sol'",
Expand Down

0 comments on commit 710ba17

Please sign in to comment.