iota_objects_by_owner
List objects owned by a specific IOTA blockchain address to query ownership and manage assets on-chain.
Instructions
List objects owned by an address
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | Owner address (0x...) | |
| limit | No | Max results (default 10) |
Implementation Reference
- src/index.ts:252-268 (handler)The handler implementation for the `iota_objects_by_owner` tool, which queries objects owned by an address using `iota_getOwnedObjects` RPC call.
server.tool( "iota_objects_by_owner", "List objects owned by an address", { address: z.string().describe("Owner address (0x...)"), limit: z.number().optional().describe("Max results (default 10)"), }, async ({ address, limit }) => text( await rpc("iota_getOwnedObjects", [ address, { filter: null, options: { showType: true, showContent: true } }, null, limit || 10, ]) ) );