get_wallet_activity
Query transaction history and activity for a specified wallet address across EVM-compatible blockchains like Ethereum, Polygon, and BSC.
Instructions
Query the activity of a specified wallet address on supported EVM blockchains.
Parameters:
wallet_address (str): The wallet address to query (e.g., '0x123...').
Must be a valid EVM-compatible address for chains like Ethereum, Polygon, or BSC.
Returns:
str: Formatted text with activity information (chain_id, block_time, tx_hash, type, asset_type, value, value_usd)
or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
wallet_address | Yes |
Input Schema (JSON Schema)
{
"properties": {
"wallet_address": {
"title": "Wallet Address",
"type": "string"
}
},
"required": [
"wallet_address"
],
"type": "object"
}