get_cross_chain_activity
Fetch and analyze cross-chain activity data from Wormholescan API, returning results as a pandas DataFrame. Supports custom time spans, app filters, and metrics by notional or transaction count.
Instructions
Fetch cross-chain activity data from Wormholescan API and return as a pandas DataFrame.
Args:
timeSpan: Time span for data (7d, 30d, 90d, 1y, all-time). Default: 7d
by: Render results by notional or tx count. Default: notional
app: Comma-separated list of apps. Default: all apps
Returns:
String representation of a pandas DataFrame containing cross-chain activity data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app | No | ||
by | No | notional | |
timeSpan | No | 7d |
Input Schema (JSON Schema)
{
"properties": {
"app": {
"default": "",
"title": "App",
"type": "string"
},
"by": {
"default": "notional",
"title": "By",
"type": "string"
},
"timeSpan": {
"default": "7d",
"title": "Timespan",
"type": "string"
}
},
"title": "get_cross_chain_activityArguments",
"type": "object"
}