diff --git a/README.md b/README.md index 469645e..0243148 100644 --- a/README.md +++ b/README.md @@ -108,13 +108,18 @@ Mainnet - Gnosis Chain: `"gnosis"` - Scroll: `"scroll"` - Linea: `"linea"` +- Xai: `"xai"` +- Xlayer: `"xlayer"` +- 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 +128,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..b20d0a2 100644 --- a/ankr/types.py +++ b/ankr/types.py @@ -2250,18 +2250,26 @@ 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" + Xlayer = "xlayer" 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 ",