zora_explore_last_traded_unique
Find coins recently traded by unique traders on Zora's Base mainnet to identify active market participants and trading patterns.
Instructions
Coins most recently traded by unique traders.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | ||
| after | No |
Implementation Reference
- src/index.ts:325-331 (registration)Registers the 'zora_explore_last_traded_unique' MCP tool. This calls the exploreTool helper, providing CoinsSDK.getCoinsLastTradedUnique as the core execution function, along with title and description.exploreTool( "zora_explore_last_traded_unique", // @ts-expect-error - TypeScript can't resolve barrel exports properly CoinsSDK.getCoinsLastTradedUnique, "Last traded (unique traders)", "Coins most recently traded by unique traders." );
- src/index.ts:267-288 (helper)Helper function that performs the actual server.registerTool call for all explore tools, defining the shared input schema (count, after) and thin wrapper handler that invokes the SDK function and returns JSON-formatted response.function exploreTool( name: string, fn: (args: { after?: string; count?: number }) => Promise<unknown>, title: string, description: string ) { server.registerTool( name, { title, description, inputSchema: { count: z.number().int().min(1).max(100).optional(), after: z.string().optional(), }, }, async ({ after, count }) => { const resp = await fn({ after, count }); return { content: [{ type: "text", text: json(resp) }] }; } ); }