get_all_native_bids
Retrieve all CryptoPunks with active on-chain bids placed directly through the marketplace contract. Use this tool to identify punks receiving direct purchase offers on the blockchain.
Instructions
Get all CryptoPunks that currently have an active native bid placed directly on them via the CryptoPunks marketplace contract. Note: these are on-chain native bids, different from off-chain collection bids (use get_collection_bids for those).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/handlers.ts:312-315 (handler)The handler for the get_all_native_bids tool, which calls api.getBiddedPunks().
case "get_all_native_bids": { const result = await api.getBiddedPunks(); return ok(result); } - src/tools.ts:121-125 (registration)The registration of the get_all_native_bids tool, including its description and schema.
get_all_native_bids: { description: "Get all CryptoPunks that currently have an active native bid placed directly on them via the CryptoPunks marketplace contract. Note: these are on-chain native bids, different from off-chain collection bids (use get_collection_bids for those).", inputSchema: z.object({}), },