/tokens/{identifier}/roles

Returns a list of accounts that can perform various actions on a specific token

Parameters

  • identifier REQUIRED(string) - Search by token identifier

Returns

  • address: (string) Account bech32 address

  • canLocalMint: (boolean)

  • canLocalBurn: (boolean)

  • roles: (array[string])

Example

Request

curl -X 'GET' \
  'https://elrond-api.public.blastapi.io/tokens/ASTRO-91f2cc/roles' \
  -H 'accept: application/json'

Result

[
  {
    "address": "string",
    "canLocalMint": false,
    "canLocalBurn": false,
    "roles": [
      "string"
    ]
  }
]

Last updated