Skip to main content

Returns all ledger updates for a given milestone index.

GET 

/api/explorer/v2/ledger/updates/by-milestone/:milestoneId

Returns all ledger updates that occurred in the milestone with the provided index.

Request

Path Parameters

    milestoneId stringrequired

    Milestone id for which to receive ledger updates.

    Example: 0x7a09324557e9200f39bf493fc8fd6ac43e9ca750c6f6d884cc72386ddcb7d695

Query Parameters

    pageSize number

    Requested page size. Overridden by the cursor if provided.

    Example: 100
    cursor string

    The cursor which can be used to retrieve the next logical page of results.

    Example: 1643383242.fa0de75d225cca2799395e5fc340702fc7eac821d2bdd79911126f131ae097a20100.100

Responses

Successful operation.

Schema
    milestoneIndex integerrequired

    The index of the milestone.

    items undefined[]required

    A list of ledger updates.

  • Array [
  • address stringrequired

    bech32 address that is referenced by the outputs.

    outputId stringrequired

    The output ID (transaction hash + output index) of the update. Hex-encoded with 0x prefix.

    isSpent booleanrequired

    Indicates if the output is spent or not.

  • ]
  • cursor string

    The cursor which can be used to retrieve the next logical page of results.

Loading...