iota_wallet_approve
Approve pending signing requests for IOTA blockchain transactions, enabling secure wallet operations through human confirmation.
Instructions
Approve a pending signing request
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| request_id | Yes | ID of the pending request to approve |
Implementation Reference
- src/index.ts:155-162 (handler)The implementation of the iota_wallet_approve tool, which sends a POST request to the /approve/ endpoint of the wallet service.
server.tool( "iota_wallet_approve", "Approve a pending signing request", { request_id: z.string().describe("ID of the pending request to approve"), }, async ({ request_id }) => text(await wallet(`/approve/${request_id}`, "POST")) );