Inscribe Binary Content
ordnet_inscribe_binaryPrepare binary files (images, audio, video, PDF) for inscription on Bitcoin SV by converting base64 content into a ready-to-broadcast inscription.
Instructions
Prepare an inscription for BINARY content (images, audio, video, PDF) from base64.
Bytes are inscribed untouched — use this instead of ordnet_inscribe_prepare for anything that is not text. Supported: image/png, image/jpeg, image/gif, image/webp, image/svg+xml, audio/mpeg, video/mp4, application/pdf.
Args:
contentBase64 (string): base64-encoded content
contentType (string): MIME type, e.g. image/png
feePerByte (number, optional): default 0.15
Returns prepared inscription; broadcast with ordnet_inscribe_broadcast.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| feePerByte | No | Fee per byte (default 0.15) | |
| contentType | Yes | MIME type, e.g. image/png | |
| contentBase64 | Yes | Base64-encoded binary content (image, audio, video, pdf) |