/shards

Returns all available shards

Parameters

  • from OPTIONAL (number) - Number of items to skip for the result set

  • size OPTIONAL (number) - Number of items to retrieve

Returns

  • shard : (number) - shard number

  • validators : (number) - number of validators

  • activeValidators : (number) - number of active validators

Example

Request

curl -X 'GET' \
  'https://elrond-api.public.blastapi.io/shards' \
  -H 'accept: application/json'

Result

[
  {
    "shard": 0,
    "validators": 800,
    "activeValidators": 798
  },
  {
    "shard": 4294967295,
    "validators": 800,
    "activeValidators": 797
  },
  {
    "shard": 1,
    "validators": 800,
    "activeValidators": 796
  },
  {
    "shard": 2,
    "validators": 800,
    "activeValidators": 797
  }
]

Last updated