Skip to content

Commit 3bd6d29

Browse files
committed
➕ Add Sei Test and Main Network Configurations
Signed-off-by: Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>
1 parent ad7f0ec commit 3bd6d29

4 files changed

Lines changed: 166 additions & 141 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ All files | 100 | 100 | 100 | 100 |
146146
- Arthera Testnet (⚠️ Deprecated): [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://explorer-test.arthera.net/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)
147147
- Blast Testnet (Sepolia): [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://testnet.blastscan.io/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)
148148
- Kroma Testnet (Sepolia): [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://testnet.kroscan.io/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)
149-
- Sei Arctic Testnet: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://seistream.app/account/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)
149+
- Sei Arctic Testnet: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://seitrace.com/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2?chain=arctic-1)
150150
- X Layer (Sepolia): [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://www.oklink.com/x-layer-testnet/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)
151151
- Core Testnet: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://scan.test.btcs.network/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)
152152
- Telos Testnet: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://testnet.teloscan.io/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)

hardhat.config.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -591,6 +591,24 @@ const config: HardhatUserConfig = {
591591
accounts:
592592
process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
593593
},
594+
seiDevnet: {
595+
chainId: 713715,
596+
url: process.env.SEI_DEVNET_URL || "",
597+
accounts:
598+
process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
599+
},
600+
seiTestnet: {
601+
chainId: 1328,
602+
url: process.env.SEI_TESTNET_URL || "",
603+
accounts:
604+
process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
605+
},
606+
seiMain: {
607+
chainId: 1329,
608+
url: process.env.SEI_MAINNET_URL || "",
609+
accounts:
610+
process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
611+
},
594612
xlayerTestnet: {
595613
chainId: 195,
596614
url: process.env.XLAYER_TESTNET_URL || "",

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,9 @@
114114
"deploy:metismain": "npx hardhat run --network metisMain scripts/deploy.ts",
115115
"deploy:modetestnet": "npx hardhat run --network modeTestnet scripts/deploy.ts",
116116
"deploy:modemain": "npx hardhat run --network modeMain scripts/deploy.ts",
117+
"deploy:seidevnet": "npx hardhat run --network seiDevnet scripts/deploy.ts",
117118
"deploy:seitestnet": "npx hardhat run --network seiTestnet scripts/deploy.ts",
119+
"deploy:seimain": "npx hardhat run --network seiMain scripts/deploy.ts",
118120
"deploy:xlayertestnet": "npx hardhat run --network xlayerTestnet scripts/deploy.ts",
119121
"deploy:xlayermain": "npx hardhat run --network xlayerMain scripts/deploy.ts",
120122
"deploy:bobtestnet": "npx hardhat run --network bobTestnet scripts/deploy.ts",
@@ -215,18 +217,18 @@
215217
"@typechain/hardhat": "^9.1.0",
216218
"@types/chai": "^4.3.20",
217219
"@types/mocha": "^10.0.10",
218-
"@types/node": "^22.14.1",
220+
"@types/node": "^22.15.2",
219221
"chai": "^4.5.0",
220222
"dotenv": "^16.5.0",
221223
"eslint": "^9.25.1",
222224
"eslint-config-prettier": "^10.1.2",
223-
"ethers": "^6.13.5",
225+
"ethers": "^6.13.7",
224226
"hardhat": "^2.23.0",
225227
"hardhat-abi-exporter": "^2.11.0",
226228
"hardhat-contract-sizer": "^2.10.0",
227229
"hardhat-gas-reporter": "^2.2.3",
228230
"prettier": "^3.5.3",
229-
"prettier-plugin-solidity": "^1.4.2",
231+
"prettier-plugin-solidity": "^1.4.3",
230232
"solhint": "^5.0.5",
231233
"solidity-coverage": "^0.8.15",
232234
"ts-node": "^10.9.2",

0 commit comments

Comments
 (0)