From 51fea8dd954ab539b9ffbc4831ce51220041b4ab Mon Sep 17 00:00:00 2001 From: Pascal Marco Caversaccio Date: Sun, 12 May 2024 13:02:06 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9E=95=20Add=20BOB=20Test=20and=20Main=20Net?= =?UTF-8?q?works?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pascal Marco Caversaccio --- README.md | 2 ++ package.json | 2 +- pnpm-lock.yaml | 14 +++++++------- src/networks.ts | 4 ++++ 4 files changed, 14 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index b089f4a..34740ec 100644 --- a/README.md +++ b/README.md @@ -221,6 +221,7 @@ The current available networks are: - `modeTestnet` - `seiArcticTestnet` - `xlayerTestnet` + - `bobTestnet` - **EVM-Based Production Networks:** - `ethMain` - `bscMain` @@ -257,6 +258,7 @@ The current available networks are: - `metisMain` - `modeMain` - `xlayerMain` + - `bobMain` > [!IMPORTANT] > Note that you must ensure that your deployment account has sufficient funds on **all** target networks. diff --git a/package.json b/package.json index 9a996dc..04bbd3b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xdeployer", - "version": "3.0.9", + "version": "3.0.10", "description": "Hardhat plugin to deploy your smart contracts across multiple EVM chains with the same deterministic address.", "author": "Pascal Marco Caversaccio ", "license": "MIT", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3edd61b..d98397c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2370,10 +2370,10 @@ packages: } hasBin: true - semver@7.6.1: + semver@7.6.2: resolution: { - integrity: sha512-f/vbBsu+fOiYt+lmwZV0rVwJScl46HppnOA1ZvIuBWKOTlllpyJ3bfVax76/OrhCH38dyxoDIA8K7uB963IYgA==, + integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==, } engines: { node: ">=10" } hasBin: true @@ -3261,7 +3261,7 @@ snapshots: graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 - semver: 7.6.1 + semver: 7.6.2 ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: typescript: 5.4.5 @@ -3308,7 +3308,7 @@ snapshots: globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.4 - semver: 7.6.1 + semver: 7.6.2 ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: typescript: 5.4.5 @@ -3324,7 +3324,7 @@ snapshots: "@typescript-eslint/types": 7.8.0 "@typescript-eslint/typescript-estree": 7.8.0(typescript@5.4.5) eslint: 8.57.0 - semver: 7.6.1 + semver: 7.6.2 transitivePeerDependencies: - supports-color - typescript @@ -4260,7 +4260,7 @@ snapshots: dependencies: "@solidity-parser/parser": 0.17.0 prettier: 3.2.5 - semver: 7.6.1 + semver: 7.6.2 solidity-comments-extractor: 0.0.8 prettier@3.2.5: {} @@ -4339,7 +4339,7 @@ snapshots: semver@6.3.1: {} - semver@7.6.1: {} + semver@7.6.2: {} serialize-javascript@6.0.0: dependencies: diff --git a/src/networks.ts b/src/networks.ts index 15486ae..af0014f 100644 --- a/src/networks.ts +++ b/src/networks.ts @@ -37,6 +37,7 @@ export const networks = [ "modeTestnet", "seiArcticTestnet", "xlayerTestnet", + "bobTestnet", "ethMain", "bscMain", "optimismMain", @@ -72,6 +73,7 @@ export const networks = [ "metisMain", "modeMain", "xlayerMain", + "bobMain", ]; // List of block explorers, in the same order as `networks` @@ -113,6 +115,7 @@ export const explorers = [ "https://sepolia.explorer.mode.network/", "https://seistream.app/", "https://www.oklink.com/xlayer-test/", + "https://testnet-explorer.gobob.xyz/", "https://etherscan.io/", "https://bscscan.com/", "https://optimistic.etherscan.io/", @@ -148,4 +151,5 @@ export const explorers = [ "https://andromeda-explorer.metis.io/", "https://explorer.mode.network/", "https://www.oklink.com/xlayer/", + "https://explorer.gobob.xyz/", ];