Skip to content

Commit 7937f14

Browse files
committed
➕ Add Botanix Test and Main Networks
Signed-off-by: Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>
1 parent ec964ab commit 7937f14

File tree

4 files changed

+67
-57
lines changed

4 files changed

+67
-57
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@ The current available networks are:
268268
- `abstractTestnet`
269269
- `hyperevmTestnet`
270270
- `apeChainTestnet`
271+
- `botanixTestnet`
271272
- **EVM-Based Production Networks:**
272273
- `ethMain`
273274
- `bscMain`
@@ -348,6 +349,7 @@ The current available networks are:
348349
- `hyperevmMain`
349350
- `kaiaMain`
350351
- `apeChainMain`
352+
- `botanixMain`
351353

352354
> [!IMPORTANT]
353355
> Note that you must ensure that your deployment account has sufficient funds on **all** target networks.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "xdeployer",
3-
"version": "3.1.15",
3+
"version": "3.1.16",
44
"description": "Hardhat plugin to deploy your smart contracts across multiple EVM chains with the same deterministic address.",
55
"author": "Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>",
66
"license": "MIT",
@@ -43,17 +43,17 @@
4343
"README.md"
4444
],
4545
"devDependencies": {
46-
"@eslint/js": "^9.28.0",
46+
"@eslint/js": "^9.29.0",
4747
"@nomicfoundation/hardhat-ethers": "^3.0.9",
4848
"@types/chai": "^4.3.20",
4949
"@types/fs-extra": "^11.0.4",
5050
"@types/mocha": "^10.0.10",
5151
"@types/node": "^24.0.1",
5252
"chai": "^4.5.0",
53-
"eslint": "^9.28.0",
53+
"eslint": "^9.29.0",
5454
"eslint-config-prettier": "^10.1.5",
55-
"ethers": "^6.14.3",
56-
"hardhat": "^2.24.2",
55+
"ethers": "^6.14.4",
56+
"hardhat": "^2.24.3",
5757
"mocha": "^11.6.0",
5858
"prettier": "^3.5.3",
5959
"prettier-plugin-solidity": "^2.0.0",
@@ -63,8 +63,8 @@
6363
},
6464
"peerDependencies": {
6565
"@nomicfoundation/hardhat-ethers": "^3.0.9",
66-
"ethers": "^6.14.3",
67-
"hardhat": "^2.24.2"
66+
"ethers": "^6.14.4",
67+
"hardhat": "^2.24.3"
6868
},
6969
"pnpm": {
7070
"onlyBuiltDependencies": [

pnpm-lock.yaml

Lines changed: 50 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/utils/networks.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,10 @@ export const networksInfo = {
231231
url: "https://curtis.apescan.io",
232232
chainId: 33111,
233233
},
234+
botanixTestnet: {
235+
url: "https://testnet.botanixscan.io",
236+
chainId: 3636,
237+
},
234238
ethMain: { url: "https://etherscan.io", chainId: 1 },
235239
bscMain: { url: "https://bscscan.com", chainId: 56 },
236240
optimismMain: { url: "https://optimistic.etherscan.io", chainId: 10 },
@@ -415,6 +419,10 @@ export const networksInfo = {
415419
url: "https://apescan.io",
416420
chainId: 33139,
417421
},
422+
botanixMain: {
423+
url: "https://botanixscan.io",
424+
chainId: 3637,
425+
},
418426
} as const;
419427

420428
// Mapping of Sei networks to their chain query identifiers required for constructing the

0 commit comments

Comments
 (0)