From cdd11e0d29bd93c10f9affc0d83746188852f22d Mon Sep 17 00:00:00 2001 From: Pascal Marco Caversaccio Date: Mon, 1 Jul 2024 16:06:19 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9E=95=20Add=20Taraxa=20Test=20and=20Main=20?= =?UTF-8?q?Network=20Deployments?= 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 +- src/networks.ts | 4 ++++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 47704f7..4e1d8c1 100644 --- a/README.md +++ b/README.md @@ -225,6 +225,7 @@ The current available networks are: - `telosTestnet` - `rootstockTestnet` - `chilizTestnet` + - `taraxaTestnet` - **EVM-Based Production Networks:** - `ethMain` - `bscMain` @@ -266,6 +267,7 @@ The current available networks are: - `coreMain` - `telosMain` - `rootstockMain` + - `taraxaMain` > [!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 4dd241f..90cb0bd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xdeployer", - "version": "3.0.13", + "version": "3.0.14", "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/src/networks.ts b/src/networks.ts index b2e8c41..d2b8460 100644 --- a/src/networks.ts +++ b/src/networks.ts @@ -41,6 +41,7 @@ export const networks = [ "telosTestnet", "rootstockTestnet", "chilizTestnet", + "taraxaTestnet", "ethMain", "bscMain", "optimismMain", @@ -81,6 +82,7 @@ export const networks = [ "coreMain", "telosMain", "rootstockMain", + "taraxaMain", ]; // List of block explorers, in the same order as `networks` @@ -126,6 +128,7 @@ export const explorers = [ "https://testnet.teloscan.io/", "https://rootstock-testnet.blockscout.com/", "https://testnet.chiliscan.com/", + "https://testnet.explorer.taraxa.io/", "https://etherscan.io/", "https://bscscan.com/", "https://optimistic.etherscan.io/", @@ -166,4 +169,5 @@ export const explorers = [ "https://scan.coredao.org/", "https://www.teloscan.io/", "https://rootstock.blockscout.com/", + "https://mainnet.explorer.taraxa.io/", ];