Prepare Inscription
ordnet_inscribe_preparePrepare a Bitcoin SV inscription transaction without broadcasting. Review the raw hex, estimated fee, and inscription ID before sending.
Instructions
Prepare an inscription transaction without broadcasting.
Creates a signed transaction ready for broadcast. Returns the raw hex and fee breakdown for review before broadcasting.
Args:
content (string): Content to inscribe (HTML, text, JSON, etc.)
contentType (string): MIME type (default: text/html;charset=utf8)
feePerByte (number): Fee per byte (default: 0.2)
Returns: { rawHex, txid, feeEstimate, inscriptionId }
Requires: Wallet must be initialized first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | The content to inscribe on the blockchain | |
| feePerByte | No | Fee per byte in satoshis (default: 0.15) | |
| contentType | No | MIME content type (default: text/html;charset=utf8) | text/html;charset=utf8 |