How to get the attribute of a Non-Fungible token?

  • getAttribute

This function is used to Get the attribute of an NFT token.

import { L1XProvider, NFTTokenGetAttributeArg } from "@l1x/l1x-wallet-sdk";

let l1xProvider = new L1XProvider({
  clusterType: "mainnet",
  endpoint: "https://v2-mainnet-rpc.l1x.foundation"
});

let params: NFTTokenGetAttributeArg = {
  contract_address: "cf0289e86714d97979d726eeb2fa3a23b9c007c1",
};

l1xProvider.tokens.NFT.getAttribute(params)
  .then((response) => console.log(response)) // log response
  .catch((err) => console.error(err)); // log error

Parameters:

The attribute for getting the token attribute.

{
    "contract_address": "cf0289e86714d97979d726eeb2fa3a23b9c007c1"
}

Returns:

The response containing the token attribute.

{
    "name": "MyNFT",
    "symbol": "MN",
    "total_minted": "24"
}

Last updated