Stages

Returns the processing stages of a provided inbound hash.

get

/thorchain/tx/stages/{hash}

Path parameters
hashstringrequired
Example: CF524818D42B63D25BBA0CCC4909F127CAA645C0F9CD07324F2824CC151A64C7
Query parameters
heightinteger · int64

optional block height, defaults to current tip

Responses
curl -L \
  --url 'https://thor.nownodes.io/thorchain/tx/stages/{hash}'
{
  "inbound_observed": {
    "started": false,
    "pre_confirmation_count": 80,
    "final_count": 80,
    "completed": false
  },
  "inbound_confirmation_counted": {
    "counting_start_height": 1234,
    "chain": "BTC",
    "external_observed_height": 16042625,
    "external_confirmation_delay_height": 16042626,
    "remaining_confirmation_seconds": 600,
    "completed": false
  },
  "inbound_finalised": {
    "completed": false
  },
  "swap_status": {
    "pending": false,
    "streaming": {
      "interval": 1,
      "quantity": 1,
      "count": 1
    }
  },
  "swap_finalised": {
    "completed": false
  },
  "outbound_delay": {
    "remaining_delay_blocks": 5,
    "remaining_delay_seconds": 30,
    "completed": false
  },
  "outbound_signed": {
    "scheduled_outbound_height": 1234,
    "blocks_since_scheduled": 1234,
    "completed": false
  }
}