iota_wallet_reject
Cancel pending IOTA wallet signing requests by specifying the request ID, preventing unwanted transactions from proceeding.
Instructions
Reject a pending signing request
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| request_id | Yes | ID of the pending request to reject |
Implementation Reference
- src/index.ts:164-171 (handler)The iota_wallet_reject tool is registered and implemented directly using a server.tool definition that calls the wallet helper function with a POST request to /reject/{request_id}.
server.tool( "iota_wallet_reject", "Reject a pending signing request", { request_id: z.string().describe("ID of the pending request to reject"), }, async ({ request_id }) => text(await wallet(`/reject/${request_id}`, "POST")) );