LogoLogo
Back to AppHelp Center
  • Getting Started
    • Welcome
  • OrdinalsBot API
    • Overview
    • Libraries
    • Template-App
    • Signet
    • Testnet
    • Fractal
    • Getting Prices
      • Getting Prices (Legacy)
    • Create a Direct Inscription Order
    • Create a Managed Inscription Order
    • Get Order Status
    • Create a Collection
    • Create a Collection Order
    • Create Text Inscription Order
    • Search Inscriptions
    • Check Rare Sats Inventory
    • Referral Scheme
    • Transaction Accelerator
    • Burning Assets
    • Webhooks
    • Order States
    • Order Types
  • Runes
    • Etch
    • Mint
    • Launchpad
      • Create
      • Mint
      • Get Launchpad
    • Airdrop
  • Token Pay
    • What is TokenPay?
    • API Docs
      • API reference
        • Order
        • Create payment psbt
        • Create burn rune psbt
        • Validate burn rune tx
        • Create burn inscription psbt
        • Utils
          • Checktx
          • Submittx
          • Finalize psbt
        • User
          • Withdrawal
          • Order
            • Rune
          • Account
            • Withdraw
            • Balance
      • Specification
  • Marketplace
    • User Guide: Pre-Inscribed Launchpad API
    • API Docs
    • Editions Launchpad
  • Launchpad API
    • Create Marketplace
    • Create a new Launchpad
    • Retrieve Launch PSBT
    • Confirm Launch
    • Check Allocation
    • Check for Padding Outputs
    • Setup Padding Outputs
    • Create buy offer
    • Confirm buy offer
    • Get Launch Info
  • Sat Scanner API
    • Find Special Ranges
    • Find Special Ranges UTXO
    • Supported Satributes
  • Sat Extractor
    • Extract
  • BRC20 API
    • OPI API
  • SNS API
    • SNS API
  • Mempool API
    • Mempool API
  • TAP PROTOCOL
    • Tap Reader API
  • UTXO
    • Split
  • User Guide
    • Inscribe your first Ordinal
    • Receiving Payments
  • Knowledge Base
    • Ordinals
      • What is an Ordinal?
      • Satoshi Rarity
      • What are BRC-20 Tokens?
      • Image Optimisation
      • Pixel Art
    • Bitcoin
      • Unspent Transaction Output (UTXO)
  • Official Links
    • Twitter
    • Discord
Powered by GitBook
On this page
  1. Launchpad API

Check for Padding Outputs

PreviousCheck AllocationNextSetup Padding Outputs

Last updated 6 months ago

An API Key is required to interact with Launchpad APIs. Please contact us to get an API Key and get started.

This endpoint helps you find out if the buyer's payment address has the necessary extra outputs, called "padding outputs" in their UTXO set. These extra outputs are used for setting up a buying transaction safely. They are part of a special security method called the 2-Dummy UTXO algorithm. This technique makes sure the Ordinal stays safe and isn't mixed up with other less important or dummy outputs. It also prevents the Ordinal from being mistakenly used up in transaction fees. The system follows common rules, creating a UTXO for the NFT at a specific starting point and setting aside 10,000 satoshis (sats) as postage. This careful approach keeps the transaction secure. This end point is to check if there are padding UTXOs available in the buyers UTXO set. If these are not then can be used to create padding outputs. More info on utxos:

POST /launchpad/confirm-padding-outputs

POST https://api.ordinalsbot.com/launchpad/confirm-padding-outputs

API Key is required in the header:

headers: { 'x-api-key': '<YOUR_API_KEY>', ...otherHeaders }

Request Body

Name
Type
Description

address

String

Buyer's payment wallet address. The buyer will need to pay the cost of the transaction from UTXOs belonging to this address.

// true if padding outputs exist
{
  "paddingOutputsExist": true
}
{
    status: 'error',
    error: 'error reason'
}
https://docs.ordinalsbot.com/knowledge-base/bitcoin/unspent-transaction-output-utxo
https://testnet-api.ordinalsbot.com/launchpad/setup-padding-ouputs