Skip to main content

/accounts/:address:/waiting-list

Returns all nodes in the node queue where the account is owner

Parameters

  • address REQUIRED (string) - Account bech32 address

Returns

Returns an array of strings of all active nodes where the account is owner

  • address : (string) - the owner's address
  • nonce : (string) - Account current nonce
  • rank : (number)
  • value : (number)

Example

Request

curl -X 'GET' \
'https://elrond-api.public.blastapi.io/accounts/erd1qga7ze0l03chfgru0a32wxqf2226nzrxnyhzer9lmudqhjgy7ycqjjyknz/waiting-list' \
-H 'accept: application/json'

Result

[
{
"address": "erd1qga7ze0l03chfgru0a32wxqf2226nzrxnyhzer9lmudqhjgy7ycqjjyknz",
"nonce": 46,
"rank": 2,
"value": "9780000000000000000"
}
]