1. Generate Direct Mint PSBT

Direct Mint PSBT

POST https://api.ordinalsbot.com/runes/direct-mint

Request Body

Name
Type
Description

runeName*

String

Rune name to mint

minterAddress*

String

A Bitcoin address to pay order and receive the rune balance

feeRate*

Number

Miner fee that will be paid while inscribing the ordinals in sats/byte.

mintCount*

Number

Number of times provided rune should be minted to receive address.

sendAddress

String

(Optional) Address that will receive the rune mint. If not set minterAddress is the default value

simulateFee

Boolean

(Optional) If true, only fee information will be returned and no order will be created. Default is false

Example request body:

{
    "runeName": "RUNE•NAME",
    "minterAddress": "bc1q...",
    "feeRate": 3,
    "mintCount": 2,
    "sendAddress": "bc1q...",
    "simulateFee": false
}

Example response:

{
    "orderId": "21c7ea58-b568-4a2b-a9e6-2ff380bf3a18",
    "psbt": "cHNidP8...",
    "chainFee": 1337,
    "serviceFee": 1337
}

Last updated