nonce_mint_packet
Builds a ready-to-broadcast mint transaction from a mined nonce — {to, data, value} plus copy-paste commands for MetaMask Agent Wallet (mm wallet send-transaction) and the Bankr wallet API. NEVER holds, asks for, or touches a private key. Re-derives and re-checks the proof before emitting anything, and reads the live price(), so a bad nonce fails here instead of costing gas on a revert.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| nonce | Yes | The winning nonce, as a decimal string (uint256). | |
| minter | Yes | The 0x address the nonce was mined for — must be the address that sends the tx. | |
| slippageBps | No | Extra value above price() in basis points, as a buffer against the price rising between read and broadcast. Overpayment is auto-refunded by the contract. Default 200 = 2%. |