get_leaderboard
Retrieve the CryptoPunks leaderboard showing top holders ranked by number of punks owned for market analysis and portfolio research.
Instructions
Get the top CryptoPunks holders leaderboard ranked by number of punks owned.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/handlers.ts:327-330 (handler)Handler for the get_leaderboard tool, calling the API client.
case "get_leaderboard": { const result = await api.getLeaderboard(); return ok(result); } - src/api.ts:162-164 (handler)Actual implementation of the getLeaderboard API call.
export async function getLeaderboard() { return get(DATA_BASE, "/api/punks", { action: "leaderboard" }); } - src/tools.ts:139-143 (schema)Tool registration and description for get_leaderboard.
get_leaderboard: { description: "Get the top CryptoPunks holders leaderboard ranked by number of punks owned.", inputSchema: z.object({}), },