iota_move_build
Compile Move smart contracts for the IOTA blockchain to verify code correctness and prepare deployment.
Instructions
Build a Move package and report compilation results
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | No | Path to Move package directory (default: current dir) |
Implementation Reference
- src/index.ts:193-200 (handler)The `iota_move_build` tool is registered and implemented using a server.tool call. It executes `iota move build` via a helper function `run`.
server.tool( "iota_move_build", "Build a Move package and report compilation results", { path: z.string().optional().describe("Path to Move package directory (default: current dir)"), }, async ({ path }) => text(await run("iota move build", path || undefined)) );