Classes

Classes queries the non-fungible token classes of the module.

get

/coreum/asset/nft/v1/classes

Query parameters
pagination.keyany

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetany

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitany

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalany

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseany

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

issuerany
Responses
curl -L \
  --url 'https://coreum.nownodes.io/coreum/asset/nft/v1/classes'
{
  "pagination": {
    "next_key": "text",
    "total": "text"
  },
  "classes": [
    {
      "id": "text",
      "issuer": "text",
      "name": "text",
      "symbol": "text",
      "description": "text",
      "uri": "text",
      "uri_hash": "text",
      "data": {
        "@type": "text",
        "ANY_ADDITIONAL_PROPERTY": "anything"
      },
      "features": [
        "burning"
      ],
      "royalty_rate": "text"
    }
  ]
}

Class queries the non-fungible token class of the module.

get

/coreum/asset/nft/v1/classes/{id}

Path parameters
idanyrequired

we don't use the gogoproto.customname here since the google.api.http ignores it and generates invalid code.

Responses
curl -L \
  --url 'https://coreum.nownodes.io/coreum/asset/nft/v1/classes/{id}'
{
  "class": {
    "id": "text",
    "issuer": "text",
    "name": "text",
    "symbol": "text",
    "description": "text",
    "uri": "text",
    "uri_hash": "text",
    "data": {
      "@type": "text",
      "ANY_ADDITIONAL_PROPERTY": "anything"
    },
    "features": [
      "burning"
    ],
    "royalty_rate": "text"
  }
}