đ¨ord_sendInscriptions
You can use the ord_sendInscriptions
method to request inscription transfers from your user's connected wallet's ordinal address. You can request multiple transfers in a single request, each transfer involving:
an inscription
a recipient address
The method accepts a transfers
array as request parameter:
transfers
an array of transfer objects with <inscriptionId
, recipient
> properties:
The user will be prompted to review the inscription transfer transaction in the wallet, and to confirm:
the inscriptions to send and their recipients
their desired Bitcoin transaction fee
The transaction will be signed and broadcasted upon user approval.
The ord_sendInscriptions
method returns a Promise that resolves to the sendInscriptionsResultSchema
object:
txid
The Bitcoin transaction id as a hex-encoded string.
Last updated