From fb8b7e9d2f6f40ac35f4a605f61e3b5673b0bc21 Mon Sep 17 00:00:00 2001 From: Akbar Ahmadi Date: Tue, 8 Oct 2024 19:18:02 +0330 Subject: [PATCH 1/2] feat: add misssing stellar --- README.md | 1 + src/types.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dcc0621..0a8f553 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,7 @@ Mainnet - Xai: `"xai"` - Telos: `"telos"` - Xlayer: `"xlayer"` +- Stellar: `"stellar"` Testnet diff --git a/src/types.ts b/src/types.ts index dafaa5b..eec01c0 100644 --- a/src/types.ts +++ b/src/types.ts @@ -542,4 +542,4 @@ export interface GetAccountBalanceHistoricalReply { syncStatus?: SyncStatus; blockHeight?: number | "latest" | "earliest"; } -export type Blockchain = 'arbitrum' | 'avalanche' | 'avalanche_fuji' | 'base' | 'base_sepolia' | 'bsc' | 'eth' | 'eth_holesky' | 'eth_sepolia' | 'fantom' | 'flare' | 'gnosis' | 'incentiv_devnet' | 'linea' | 'neura_devnet' | 'neura_testnet_v1' | 'optimism' | 'optimism_testnet' | 'polygon' | 'polygon_amoy' | 'polygon_zkevm' | 'rollux' | 'scroll' | 'syscoin' | 'telos' | 'xai' | 'xlayer'; +export type Blockchain = 'arbitrum' | 'avalanche' | 'avalanche_fuji' | 'base' | 'base_sepolia' | 'bsc' | 'eth' | 'eth_holesky' | 'eth_sepolia' | 'fantom' | 'flare' | 'gnosis' | 'incentiv_devnet' | 'linea' | 'neura_devnet' | 'neura_testnet_v1' | 'optimism' | 'optimism_testnet' | 'polygon' | 'polygon_amoy' | 'polygon_zkevm' | 'rollux' | 'scroll' | 'stellar' | 'syscoin' | 'telos' | 'xai' | 'xlayer'; From 238ab0adc2aae65be298fbbb407f1b7ee252c438 Mon Sep 17 00:00:00 2001 From: Akbar Ahmadi Date: Tue, 8 Oct 2024 19:26:05 +0330 Subject: [PATCH 2/2] feat: sort blockchains list according to doc --- README.md | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 0a8f553..f8ea0d3 100644 --- a/README.md +++ b/README.md @@ -41,34 +41,33 @@ await provider.getNFTsByOwner({ Mainnet -- Ethereum: `"eth"` +- Avalanche: `"avalanche"` +- Base: `"base"` - BNB Smart Chain: `"bsc"` -- Polygon: `"polygon"` +- Ethereum: `"eth"` - Fantom: `"fantom"` -- Arbitrum: `"arbitrum"` -- Avalanche: `"avalanche"` -- Syscoin NEVM: `"syscoin"` +- Flare: `"flare"` +- Gnosis: `"gnosis"` +- Linea: `"linea"` - Optimism: `"optimism"` +- Polygon: `"polygon"` - Polygon zkEVM: `"polygon_zkevm"` - Rollux: `"rollux"` -- Base: `"base"` -- Flare: `"flare"` -- Gnosis Chain: `"gnosis"` - Scroll: `"scroll"` -- Linea: `"linea"` -- Xai: `"xai"` -- Telos: `"telos"` -- Xlayer: `"xlayer"` - Stellar: `"stellar"` +- Syscoin: `"syscoin"` +- Telos: `"telos"` +- Xai: `"xai"` +- X Layer: `"xlayer"` Testnet -- Ethereum Sepolia: `"eth_sepolia"` -- Ethereum Holesky: `"eth_holesky"` - Avalanche Fuji: `"avalanche_fuji"` -- Polygon Amoy: `"polygon_amoy"` -- Optimism Testnet: `"optimism_testnet"` - Base Sepolia: `"base_sepolia"` +- Ethereum Holesky: `"eth_holesky"` +- Ethereum Sepolia: `"eth_sepolia"` +- Optimism Testnet: `"optimism_testnet"` +- Polygon Amoy: `"polygon_amoy"` Appchain