@@ -107,6 +107,7 @@ Mainnet
107107- Flare: ` "flare" `
108108- Gnosis Chain: ` "gnosis" `
109109- Scroll: ` "scroll" `
110+ - Stellar: ` "stellar" `
110111- Linea: ` "linea" `
111112- Xai: ` "xai" `
112113- Xlayer: ` "xlayer" `
@@ -118,19 +119,15 @@ Testnet
118119- Ethereum Holesky: ` "eth_holesky" `
119120- Avalanche Fuji: ` "avalanche_fuji" `
120121- Polygon Amoy: ` "polygon_amoy" `
121- - Optimism Testnet : ` "optimism_testnet " `
122+ - Optimism Sepolia : ` "optimism_sepolia " `
122123- Base Sepolia: ` "base_sepolia" `
123-
124- Appchain
125-
126- - META Apes: ` "bas_metaapes" `
124+ - Neura Devnet ` "neura_devnet" `
125+ - Neura Testnet ` "neura_testnet_v1" `
127126
128127Appchain Testnet
129128
130- - META Apes Testnet: ` "bas_metaapes_testnet" `
131- - Neura Devnet ` "neura_devnet" `
132- - Neura Testnet ` "neura_testnet_v1" `
133- - Incentiv Devnet ` "incentiv_devnet" `
129+ - Incentiv Devnet ` "incentiv_devnet_v3" `
130+ - Incentiv Testnet ` "incentiv_testnet" `
134131
135132When passing blockchain, you can use one available from ` types.py ` (preferred) or just a string value.
136133
@@ -141,9 +138,6 @@ When passing blockchain, you can use one available from `types.py` (preferred) o
141138Early Access
142139
143140- [ ` get_token_price_history ` ] ( #gettokenpricehistory--gettokenpricehistoryraw )
144- - [ ` get_account_balance_historical ` ] ( #getaccountbalancehistorical--getaccountbalancehistoricalraw )
145- - [ ` get_internal_transactions_by_block_number ` ] ( #getinternaltransactionsbyblocknumber--getinternaltransactionsbyblocknumberraw )
146- - [ ` get_internal_transactions_by_parent_hash ` ] ( #getinternaltransactionsbyparenthash--getinternaltransactionsbyparenthashraw )
147141
148142Token API
149143
@@ -208,68 +202,6 @@ result = advancedAPI.get_token_price_history(
208202print (result)
209203```
210204
211- #### ` get_account_balance_historical ` / ` get_account_balance_historical_raw `
212-
213- Get the coin and token balances of the wallet at specified block.
214-
215- ``` python3
216- from ankr import AnkrAdvancedAPI
217- from ankr.types import Blockchain, GetAccountBalanceHistoricalRequest
218-
219- advancedAPI = AnkrAdvancedAPI(" YOUR-TOKEN" )
220-
221- result = advancedAPI.get_account_balance_historical(
222- request = GetAccountBalanceHistoricalRequest(
223- blockchain = Blockchain.Eth,
224- walletAddress = ' vitalik.eth' ,
225- onlyWhitelisted = False ,
226- blockHeight = 17967813 ,
227- )
228- )
229- print (result)
230- ```
231-
232- #### ` get_internal_transactions_by_block_number ` / ` get_internal_transactions_by_block_number_raw `
233-
234- Get a list of internal transactions in the block.
235-
236- ``` python3
237- from ankr import AnkrAdvancedAPI
238- from ankr.types import Blockchain, GetInternalTransactionsByBlockNumberRequest
239-
240- advancedAPI = AnkrAdvancedAPI(" YOUR-TOKEN" )
241-
242- result = advancedAPI.get_internal_transactions_by_block_number(
243- request = GetInternalTransactionsByBlockNumberRequest(
244- blockchain = Blockchain.Eth,
245- blockNumber = 10000000 ,
246- onlyWithValue = True ,
247- )
248- )
249- for transaction in result:
250- print (transaction)
251- ```
252-
253- #### ` get_internal_transactions_by_parent_hash ` / ` get_internal_transactions_by_parent_hash_raw `
254-
255- Get a list of internal transactions in the transaction.
256-
257- ``` python3
258- from ankr import AnkrAdvancedAPI
259- from ankr.types import Blockchain, GetInternalTransactionsByParentHashRequest
260-
261- advancedAPI = AnkrAdvancedAPI(" YOUR-TOKEN" )
262-
263- result = advancedAPI.get_internal_transactions_by_parent_hash(
264- request = GetInternalTransactionsByParentHashRequest(
265- blockchain = Blockchain.Eth,
266- parentTransactionHash = ' 0xa50f8744e65cb76f66f9d54499d5401866a75d93db2e784952f55205afc3acc5' ,
267- onlyWithValue = True ,
268- )
269- )
270- for transaction in result:
271- print (transaction)
272- ```
273205
274206### Token API
275207
0 commit comments