get_top_assets_by_volume
Fetch top assets by volume from the Wormholescan API for specified time spans, returning a pandas DataFrame for cross-chain activity insights.
Instructions
Fetch top assets by volume from Wormholescan API.
Args:
timeSpan: Time span for data (7d, 15d, 30d). Default: 7d
Returns:
String representation of a pandas DataFrame containing top assets by volume
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timeSpan | No | 7d |
Input Schema (JSON Schema)
{
"properties": {
"timeSpan": {
"default": "7d",
"title": "Timespan",
"type": "string"
}
},
"title": "get_top_assets_by_volumeArguments",
"type": "object"
}