@@ -32,11 +32,11 @@ def check_chain_supported(chain: str) -> bool:
3232@handle_exceptions
3333def get_wallet_token_balances (wallet_address : str , chain : str , output_include : list [str ], cursor : str = "" ) -> dict :
3434 """
35- Get token balances for a specific wallet address and their token prices in USD . (paginated)
35+ Get token balances for a specific wallet address in a specific chian . (paginated)
3636 apply decimal conversion for balance
3737
3838 Args:
39- wallet_address (str): Ethereum wallet address
39+ wallet_address (str): Wallet address
4040 chain (str): The chain ID can be ["eth", "0x1", "polygon", "0x89", "bsc", "0x38", "avalanche", "0xa86a", "fantom", "0xfa", "palm", "0x2a15c308d", "cronos", "0x19", "arbitrum", "0xa4b1", "chiliz", "0x15b38","gnosis", "0x64", "base", "0x2105", "optimism", "0xa", "linea", "0xe708", "moonbeam", "0x504", "moonriver", "0x505", "flow", "0x2eb", "ronin", "0x7e4", "lisk", "0x46f", "pulse", "0x171"]
4141 output_include (list[str]): A list of field names to include in the output.
4242 cursor (str): The cursor returned in the previous response (used for getting the next page). end of page cursor is None
@@ -81,10 +81,10 @@ def get_wallet_token_balances(wallet_address: str, chain: str, output_include: l
8181@handle_exceptions
8282def get_wallet_stats (wallet_address : str , chain : str , output_include : list [str ]) -> dict :
8383 """
84- Get the stats for a wallet address.
84+ Get the stats for a wallet address in a specific chain .
8585
8686 Args:
87- wallet_address (str): Ethereum wallet address
87+ wallet_address (str): Wallet address
8888 chain (str): The chain ID can be ["eth", "0x1", "polygon", "0x89", "bsc", "0x38", "avalanche", "0xa86a", "fantom", "0xfa", "palm", "0x2a15c308d", "cronos", "0x19", "arbitrum", "0xa4b1", "chiliz", "0x15b38","gnosis", "0x64", "base", "0x2105", "optimism", "0xa", "linea", "0xe708", "moonbeam", "0x504", "moonriver", "0x505", "flow", "0x2eb", "ronin", "0x7e4", "lisk", "0x46f", "pulse", "0x171"]
8989 output_include (list[str]): A list of field names to include in the output.
9090
@@ -117,10 +117,10 @@ def get_wallet_stats(wallet_address: str, chain: str, output_include: list[str])
117117def get_wallet_history (wallet_address : str , chain : str , output_include : list [str ], cursor : str = "" ) -> dict :
118118 """
119119 Retrieve the full transaction history of a specified wallet address, including sends, receives, token and NFT transfers
120- and contract interactions. (paginated & in descending order)
120+ and contract interactions in a specific chain . (paginated & in descending order)
121121
122122 Args:
123- wallet_address (str): Ethereum wallet address
123+ wallet_address (str): Wallet address
124124 chain (str): The chain ID can be ["eth", "0x1", "polygon", "0x89", "bsc", "0x38", "avalanche", "0xa86a", "fantom", "0xfa", "palm", "0x2a15c308d", "cronos", "0x19", "arbitrum", "0xa4b1", "chiliz", "0x15b38","gnosis", "0x64", "base", "0x2105", "optimism", "0xa", "linea", "0xe708", "moonbeam", "0x504", "moonriver", "0x505", "flow", "0x2eb", "ronin", "0x7e4", "lisk", "0x46f", "pulse", "0x171"]
125125 output_include (list[str]): A list of field names to include in the output.
126126 cursor (str): The cursor returned in the previous response (used for getting the next page). end of page cursor is None
@@ -165,7 +165,7 @@ def get_wallet_history(wallet_address: str, chain: str, output_include: list[str
165165@handle_exceptions
166166def get_transaction_detail (transaction_hash : str , chain : str , output_include : list [str ]) -> dict :
167167 """
168- Get the contents of a transaction by the given transaction hash.
168+ Get the contents of a transaction for a specific chain by the given transaction hash.
169169
170170 Args:
171171 transaction_hash (str): transaction hash to be decoded
@@ -205,10 +205,10 @@ def get_transaction_detail(transaction_hash: str, chain: str, output_include: li
205205@handle_exceptions
206206def get_token_approvals (wallet_address : str , chain : str , output_include : list [str ], cursor : str = "" ) -> dict :
207207 """
208- Get ERC20 approvals for one or many wallet addresses and/or contract addresses, ordered by block number in descending order.
208+ Get ERC20 approvals for one or many wallet addresses for a specific chain and/or contract addresses, ordered by block number in descending order.
209209
210210 Args:
211- wallet_address (str): Ethereum wallet address
211+ wallet_address (str): Wallet address
212212 chain (str): The chain ID can be ["eth", "0x1", "polygon", "0x89", "bsc", "0x38", "avalanche", "0xa86a", "fantom", "0xfa", "palm", "0x2a15c308d", "cronos", "0x19", "arbitrum", "0xa4b1", "chiliz", "0x15b38","gnosis", "0x64", "base", "0x2105", "optimism", "0xa", "linea", "0xe708", "moonbeam", "0x504", "moonriver", "0x505", "flow", "0x2eb", "ronin", "0x7e4", "lisk", "0x46f", "pulse", "0x171"]
213213 output_include (list[str]): A list of field names to include in the output.
214214 cursor (str): The cursor returned in the previous response (used for getting the next page). end of page cursor is None
0 commit comments