Skip to main content

Stake account updates

Returns a list of updates relating to the specified stake key (registration, deregistration, delegation, withdrawal)

Path Parameters
    stake_addr string required

    Bech32 encoded stake/reward address ('stake1...')

Query Parameters
    count any

    The max number of results per page

    order any

    The order in which the results are sorted (by absolute slot)

    cursor string

    Pagination cursor string, use the cursor included in a page of results to fetch the next page

Responses

Updates relating to the specified stake key (registration, deregistration, delegation, withdrawal)


Schema
    data object[] required

    Endpoint response data

  • Array [
  • abs_slot int32 required

    Absolute slot of the block which contained the transaction

    action AccountAction required

    Possible values: [registration, deregistration, delegation, withdrawal]

    Type of staking-related action

    deposit string nullable

    Deposit in lovelace if action is Registration

    epoch_no int32 required

    Epoch number in which the transaction occured

    tx_hash string required

    Transaction hash of the transaction which performed the action

  • ]
  • last_updated object required

    Details of the most recent block processed by the indexer (aka chain tip); that is, the data returned is correct as of this block in time.

    block_hash string required

    Hex-encoded hash of the most recently processed block (aka chain tip)

    block_slot int64 required

    Absolute slot of the most recently processed block (aka chain tip)

    timestamp string required

    UTC timestamp of when the most recently processed block was minted

    next_cursor string nullable

    Pagination cursor

Loading...