From 8c461d50ca434f04dde570f7f7177802241b8f66 Mon Sep 17 00:00:00 2001 From: Yurii Momotenko Date: Thu, 13 Jun 2024 18:48:27 +0200 Subject: [PATCH 1/3] Update blockchains --- README.md | 11 +++++++++-- ankr/types.py | 11 +++++++++-- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 469645e..c50457c 100644 --- a/README.md +++ b/README.md @@ -108,13 +108,17 @@ Mainnet - Gnosis Chain: `"gnosis"` - Scroll: `"scroll"` - Linea: `"linea"` +- Xai: `"xai"` +- Telos: `"telos"` Testnet -- Ethereum Goerli: `"eth_goerli"` +- Ethereum Sepolia: `"eth_sepolia"` +- Ethereum Holesky: `"eth_holesky"` - Avalanche Fuji: `"avalanche_fuji"` -- Polygon Mumbai: `"polygon_mumbai"` +- Polygon Amoy: `"polygon_amoy"` - Optimism Testnet: `"optimism_testnet"` +- Base Sepolia: `"base_sepolia"` Appchain @@ -123,6 +127,9 @@ Appchain Appchain Testnet - META Apes Testnet: `"bas_metaapes_testnet"` +- Neura Devnet `"neura_devnet"` +- Neura Testnet `"neura_testnet_v1"` +- Incentiv Devnet `"incentiv_devnet"` When passing blockchain, you can use one available from `types.py` (preferred) or just a string value. diff --git a/ankr/types.py b/ankr/types.py index f23c0c6..b7c9512 100644 --- a/ankr/types.py +++ b/ankr/types.py @@ -2250,18 +2250,25 @@ class Blockchain(Enum): Avalanche = "avalanche" Avalanche_fuji = "avalanche_fuji" Base = "base" + Base_sepolia = "base_sepolia" Bsc = "bsc" Eth = "eth" - Eth_goerli = "eth_goerli" + Eth_holesky = "eth_holesky" + Eth_sepolia = "eth_sepolia" Fantom = "fantom" Flare = "flare" Gnosis = "gnosis" + Incentiv_devnet = "incentiv_devnet" Linea = "linea" + Neura_devnet = "neura_devnet" + Neura_testnet_v1 = "neura_testnet_v1" Optimism = "optimism" Optimism_testnet = "optimism_testnet" Polygon = "polygon" - Polygon_mumbai = "polygon_mumbai" + Polygon_amoy = "polygon_amoy" Polygon_zkevm = "polygon_zkevm" Rollux = "rollux" Scroll = "scroll" Syscoin = "syscoin" + Telos = "telos" + Xai = "xai" From 13f9efc6f13c6dfff31e927c1ca8c646ae1dca53 Mon Sep 17 00:00:00 2001 From: Yurii Momotenko Date: Fri, 5 Jul 2024 12:11:28 +0200 Subject: [PATCH 2/3] Add xlayer --- README.md | 1 + ankr/types.py | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index c50457c..0243148 100644 --- a/README.md +++ b/README.md @@ -109,6 +109,7 @@ Mainnet - Scroll: `"scroll"` - Linea: `"linea"` - Xai: `"xai"` +- Xlayer: `"xlayer"` - Telos: `"telos"` Testnet diff --git a/ankr/types.py b/ankr/types.py index b7c9512..b20d0a2 100644 --- a/ankr/types.py +++ b/ankr/types.py @@ -2272,3 +2272,4 @@ class Blockchain(Enum): Syscoin = "syscoin" Telos = "telos" Xai = "xai" + Xlayer = "xlayer" From d043a3c7106f6a23b8ce87a5463fd36ecc3aff51 Mon Sep 17 00:00:00 2001 From: Yurii Momotenko Date: Fri, 5 Jul 2024 12:28:12 +0200 Subject: [PATCH 3/3] Update version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ff17370..3c5fd17 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ankr-sdk" -version = "1.0.1" +version = "1.0.2" description = "Compact Python library for interacting with Ankr's Advanced APIs." authors = [ "Roman Fasakhov ",