Confirm Launch
Use this endpoint to confirm and save the new launch. Once unsigned psbt is available from get-launch-psbt endpoint, the psbt needs to be signed by the PSBT needs to be signed by the wallet that owns all the pre inscribed inscriptions. The signed psbt needs to be submitted to /save-launch endpoint for the launch to be confirmed.
POST /launchpad/save-launch
POST /launchpad/save-launchPOST https://api.ordinalsbot.com/launchpad/save-launch
API Key is required in the header:
headers: { 'x-api-key': '<YOUR_API_KEY>', ...otherHeaders }
Example Request Body, this will confirm and save a new launch:
{
"launchpadId": "65a123b789cdef0123456789",
"updateLaunchData": {
"signedListingPSBT": "cHNidP8BAHECAAAAAfPQ0OTWpSxwRJK..."
}
}Request Body
Name
Type
Description
launchpadIdString
launchpad id returned by the create launch api
signedListingPSBTString
The signed PSBT
{
"message": "Launchpad listing is updated successfully"
}
{
status: 'error',
error: 'error reason'
}Last updated

