get_overall_market_stats
Retrieve comprehensive Axie Infinity marketplace statistics including new Axies minted, trading volumes in RON and USD, total transactions, and ascended Axies data.
Instructions
Get overall marketplace statistics including new Axies minted, marketplace volumes in RON and USD, total transactions, and ascended Axies.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:662-667 (handler)The handler logic for the 'get_overall_market_stats' tool, which executes a GraphQL query and returns the market stats.
case "get_overall_market_stats": { const data = await client.query<{ overallMarketStats: unknown }>( queries.GET_OVERALL_MARKET_STATS ); return jsonContent(data.overallMarketStats); } - src/index.ts:253-262 (registration)Registration of the 'get_overall_market_stats' tool with its schema and description.
{ name: "get_overall_market_stats", description: "Get overall marketplace statistics including new Axies minted, marketplace volumes in RON and USD, total transactions, and ascended Axies.", inputSchema: { type: "object", properties: {}, required: [], }, }, - src/queries.ts:128-138 (schema)The GraphQL query definition for 'get_overall_market_stats'.
export const GET_OVERALL_MARKET_STATS = ` query GetOverallMarketStats { overallMarketStats { newAxies { last24H last7D last30D allTime } mkpVolume { last24H last7D last30D allTime } mkpTxs { last24H last7D last30D allTime } mkpVolumeInUsdAllTime ascendedAxiesLast7D } } `;