get_kickback_payment_for_hash

Information on tx and bundles accounted for in a kickback payment.

Example Request

curl -X POST https://boost.quasar.win/get_kickback_payment_for_hash \
     -H "Content-Type: application/json" \
     -H 'Authorization: my-api-key' \
     -d '{
           "hash": "0x1234..."
         }'

Example Response

{
   "kickback_value":"182739847492921",
   "hash":"0x12345...",
   "included_bundles":[
      "0xabcd...",
      "0x9876..."
   ],
   "included_txs":[
      "0x1827...",
      "0x1928..."
   ],
   "total_bundles":2,
   "total_txs":2,
   "fee":"596739202"
}

Last updated