Skip to main content

Returns the top richest addresses.

GET 

/api/explorer/v2/ledger/richest-addresses

Returns the top richest addresses at the ledger state specified by the provided index.

Request

Query Parameters

    ledgerIndex integer

    The milestone index to be used to determine the ledger state. Defaults to the application's current ledger index.

    Example: 200000
    top number

    The number of richest addresses to return.

    Example: 100

Responses

Successful operation.

Schema
    top object[]required

    The top wealthiest addresses.

  • Array [
  • address objectrequired
    oneOf
    type integerrequired

    Set to value 0 to denote an Ed25519 Address.

    pubKeyHash stringrequired

    The hex-encoded, 0x prefixed BLAKE2b-256 hash of the Ed25519 public key

    balance stringrequired

    The total balance within this range.

  • ]
Loading...