check_exclusive_bundle

Query your bundle.

Example Request

curl -X POST https://boost.quasar.win/check_exclusive_bundle_bulk \
     -H "Content-Type: application/json" \
     -H 'Authorization: your-api-key' \
     -d '{
           "bundle_hash": "0x8aab.."
         }'

Example Response

{
    "status": "landed",
    "block_number": 23220513,
    "tx_hashes":
    [
        "0x00cda..."
    ],
    "bundle_hash": "0x8aab...",
    "is_rebroadcast":false,
    "is_quasar_mined":true,            
    "sim_failure_reason": null,
    "kickbacks": [
        {
           "kickback_amount": "23981209213",
           "kickback_recipient": "0x1Bs2...",
           "kickback_percent": 50.0,
           "kickback_tx_hash": "0x9a3f..."
        }
}

Authentication

To authenticate your requests, include your API key in the Authorization header of each request.

Last updated