Hi,
Iâm noticing that my ENS ERC721 doesnât contain any meta data in my call to the âGets NFTs owned by the given addressâ end point. The entity is in the results but its token_uri
and metadat
fields are empty:
{
"token_address": "0x.....",
"token_id": "....",
"amount": "1",
"owner_of": "0x....",
"block_number": "...",
"block_number_minted": "...",
"contract_type": "ERC721",
"token_uri": null,
"metadata": null,
"synced_at": null,
"name": "",
"symbol": ""
},
I think this is because their token doesnât adhere to the standard, instead ENS seems to have their own metadata platform (referenced here: https://medium.com/the-ethereum-name-service/major-refresh-of-nft-images-metadata-for-ens-names-963090b21b23)
Is that the case? They render on OpenSea, for example, but i guess thatâs because they developed their own custom display logic just for the ENS case?
Thank you!