Skip to content

Queries getting duplicated results/taking long to update #7941

@pedrointercap

Description

@pedrointercap

Hi guys,

I'm running into some issues and I would like to check if I could get some help here.

Just created a NFT Drop contract and started building my NextJs App.

When started to test, we faced TWO issues while querying the data using Thirdweb hooks, that might be related since it looks like an insight database sync or cache issue:

  1. When I finish a purchase it takes several minutes until I finally get my new NFT using the getOwnedNFTs

  2. Still using the getOwnedNFTs function, it returns the same NFTs multiple times. We had to create a sort of deduplication function in order to make this looks good to the final user (not the best solution, though).

Query url:

https://insight.thirdweb.com/v1/nfts?chain=84532&limit=50&owner_address=0x4F2C7E99d9D6e8608aAD3eB8a9F1c5b588bdFA28&contract_address=0x141Ecbd4985B84c904394913B02D1FDDD89d8c1e&page=0

Result:

{
    "data": [
        {
            "chain_id": 84532,
            "name": "Fancy Astronauts #1",
            "description": "A pair of fancy astronauts stepping on the moon",
            "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png",
            "background_color": "#0098EE",
            "metadata_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmUesLrxFWoUMfeY4ZfsYaUm6dNcHBX2Ba76bREbuUdZ4b/0",
            "extra_metadata": {
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png",
                "background_color": "#0098EE",
                "attributes": [
                    {
                        "trait_type": "# of astronauts",
                        "value": "2"
                    },
                    {
                        "trait_type": "background",
                        "value": "space-blue"
                    },
                    {
                        "trait_type": "uniform color",
                        "value": "white"
                    }
                ],
                "image_original_url": "ipfs://QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png"
            },
            "collection": {
                "name": "Fancy Astronauts",
                "description": "Why can't you be fancy during a space trip? The boring space suits are gone! Look at this incredible fancy astronauts and foresee how the space fashion can be fun.",
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmQKpr9XDMbRwaZHUkuVVcxuFuvbjuTUY3oXqJJiCDDHR2/nft-cover-art.png"
            },
            "contract": {
                "chain_id": 84532,
                "address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
                "type": "erc721",
                "name": "Fancy Astronauts",
                "symbol": "FYA"
            },
            "token_id": "0",
            "balance": "1",
            "token_type": "erc721",
            "contract_address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
            "owner_addresses": [
                "0x4f2c7e99d9d6e8608aad3eb8a9f1c5b588bdfa28"
            ]
        },
        {
            "chain_id": 84532,
            "name": "Fancy Astronauts #1",
            "description": "A pair of fancy astronauts stepping on the moon",
            "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png",
            "background_color": "#0098EE",
            "metadata_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmUesLrxFWoUMfeY4ZfsYaUm6dNcHBX2Ba76bREbuUdZ4b/0",
            "extra_metadata": {
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png",
                "background_color": "#0098EE",
                "attributes": [
                    {
                        "trait_type": "# of astronauts",
                        "value": "2"
                    },
                    {
                        "trait_type": "background",
                        "value": "space-blue"
                    },
                    {
                        "trait_type": "uniform color",
                        "value": "white"
                    }
                ],
                "image_original_url": "ipfs://QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png"
            },
            "collection": {
                "name": "Fancy Astronauts",
                "description": "Why can't you be fancy during a space trip? The boring space suits are gone! Look at this incredible fancy astronauts and foresee how the space fashion can be fun.",
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmQKpr9XDMbRwaZHUkuVVcxuFuvbjuTUY3oXqJJiCDDHR2/nft-cover-art.png"
            },
            "contract": {
                "chain_id": 84532,
                "address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
                "type": "erc721",
                "name": "Fancy Astronauts",
                "symbol": "FYA"
            },
            "token_id": "0",
            "balance": "1",
            "token_type": "erc721",
            "contract_address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
            "owner_addresses": [
                "0x4f2c7e99d9d6e8608aad3eb8a9f1c5b588bdfa28"
            ]
        },
        {
            "chain_id": 84532,
            "name": "Fancy Astronauts #1",
            "description": "A pair of fancy astronauts stepping on the moon",
            "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png",
            "background_color": "#0098EE",
            "metadata_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmUesLrxFWoUMfeY4ZfsYaUm6dNcHBX2Ba76bREbuUdZ4b/0",
            "extra_metadata": {
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png",
                "background_color": "#0098EE",
                "attributes": [
                    {
                        "trait_type": "# of astronauts",
                        "value": "2"
                    },
                    {
                        "trait_type": "background",
                        "value": "space-blue"
                    },
                    {
                        "trait_type": "uniform color",
                        "value": "white"
                    }
                ],
                "image_original_url": "ipfs://QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png"
            },
            "collection": {
                "name": "Fancy Astronauts",
                "description": "Why can't you be fancy during a space trip? The boring space suits are gone! Look at this incredible fancy astronauts and foresee how the space fashion can be fun.",
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmQKpr9XDMbRwaZHUkuVVcxuFuvbjuTUY3oXqJJiCDDHR2/nft-cover-art.png"
            },
            "contract": {
                "chain_id": 84532,
                "address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
                "type": "erc721",
                "name": "Fancy Astronauts",
                "symbol": "FYA"
            },
            "token_id": "0",
            "balance": "1",
            "token_type": "erc721",
            "contract_address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
            "owner_addresses": [
                "0x4f2c7e99d9d6e8608aad3eb8a9f1c5b588bdfa28"
            ]
        },
        {
            "chain_id": 84532,
            "name": "Fancy Astronauts #1",
            "description": "A pair of fancy astronauts stepping on the moon",
            "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png",
            "background_color": "#0098EE",
            "metadata_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmUesLrxFWoUMfeY4ZfsYaUm6dNcHBX2Ba76bREbuUdZ4b/0",
            "extra_metadata": {
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png",
                "background_color": "#0098EE",
                "attributes": [
                    {
                        "trait_type": "# of astronauts",
                        "value": "2"
                    },
                    {
                        "trait_type": "background",
                        "value": "space-blue"
                    },
                    {
                        "trait_type": "uniform color",
                        "value": "white"
                    }
                ],
                "image_original_url": "ipfs://QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png"
            },
            "collection": {
                "name": "Fancy Astronauts",
                "description": "Why can't you be fancy during a space trip? The boring space suits are gone! Look at this incredible fancy astronauts and foresee how the space fashion can be fun.",
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmQKpr9XDMbRwaZHUkuVVcxuFuvbjuTUY3oXqJJiCDDHR2/nft-cover-art.png"
            },
            "contract": {
                "chain_id": 84532,
                "address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
                "type": "erc721",
                "name": "Fancy Astronauts",
                "symbol": "FYA"
            },
            "token_id": "0",
            "balance": "1",
            "token_type": "erc721",
            "contract_address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
            "owner_addresses": [
                "0x4f2c7e99d9d6e8608aad3eb8a9f1c5b588bdfa28"
            ]
        },
        {
            "chain_id": 84532,
            "name": "Fancy Astronauts #1",
            "description": "A pair of fancy astronauts stepping on the moon",
            "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png",
            "background_color": "#0098EE",
            "metadata_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmUesLrxFWoUMfeY4ZfsYaUm6dNcHBX2Ba76bREbuUdZ4b/0",
            "extra_metadata": {
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png",
                "background_color": "#0098EE",
                "attributes": [
                    {
                        "trait_type": "# of astronauts",
                        "value": "2"
                    },
                    {
                        "trait_type": "background",
                        "value": "space-blue"
                    },
                    {
                        "trait_type": "uniform color",
                        "value": "white"
                    }
                ],
                "image_original_url": "ipfs://QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png"
            },
            "collection": {
                "name": "Fancy Astronauts",
                "description": "Why can't you be fancy during a space trip? The boring space suits are gone! Look at this incredible fancy astronauts and foresee how the space fashion can be fun.",
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmQKpr9XDMbRwaZHUkuVVcxuFuvbjuTUY3oXqJJiCDDHR2/nft-cover-art.png"
            },
            "contract": {
                "chain_id": 84532,
                "address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
                "type": "erc721",
                "name": "Fancy Astronauts",
                "symbol": "FYA"
            },
            "token_id": "0",
            "balance": "1",
            "token_type": "erc721",
            "contract_address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
            "owner_addresses": [
                "0x4f2c7e99d9d6e8608aad3eb8a9f1c5b588bdfa28"
            ]
        },
        {
            "chain_id": 84532,
            "name": "Fancy Astronauts #1",
            "description": "A pair of fancy astronauts stepping on the moon",
            "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png",
            "background_color": "#0098EE",
            "metadata_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmUesLrxFWoUMfeY4ZfsYaUm6dNcHBX2Ba76bREbuUdZ4b/0",
            "extra_metadata": {
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png",
                "background_color": "#0098EE",
                "attributes": [
                    {
                        "trait_type": "# of astronauts",
                        "value": "2"
                    },
                    {
                        "trait_type": "background",
                        "value": "space-blue"
                    },
                    {
                        "trait_type": "uniform color",
                        "value": "white"
                    }
                ],
                "image_original_url": "ipfs://QmXCzSAAqyd7TkKjAVgxnKknvX9biYTrvq7kj1emyXo1sa/0.png"
            },
            "collection": {
                "name": "Fancy Astronauts",
                "description": "Why can't you be fancy during a space trip? The boring space suits are gone! Look at this incredible fancy astronauts and foresee how the space fashion can be fun.",
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmQKpr9XDMbRwaZHUkuVVcxuFuvbjuTUY3oXqJJiCDDHR2/nft-cover-art.png"
            },
            "contract": {
                "chain_id": 84532,
                "address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
                "type": "erc721",
                "name": "Fancy Astronauts",
                "symbol": "FYA"
            },
            "token_id": "0",
            "balance": "1",
            "token_type": "erc721",
            "contract_address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
            "owner_addresses": [
                "0x4f2c7e99d9d6e8608aad3eb8a9f1c5b588bdfa28"
            ]
        },
        {
            "chain_id": 84532,
            "name": "Fancy Astronauts #2",
            "description": "A triple of fancy astronauts stepping on the moon",
            "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmQU8W2kgMtxD29P13fmWU4EbNa9zPhhtV1z4MvYhdChXa/1.png",
            "background_color": "#0098EE",
            "metadata_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/Qmf5YDRhYmRCKJApv7DkZAUgw4sHBCbacEVEazDQ9nAPsB/1",
            "extra_metadata": {
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmQU8W2kgMtxD29P13fmWU4EbNa9zPhhtV1z4MvYhdChXa/1.png",
                "background_color": "#0098EE",
                "attributes": [
                    {
                        "trait_type": "# of astronauts",
                        "value": "3"
                    },
                    {
                        "trait_type": "background",
                        "value": "space-boreal"
                    },
                    {
                        "trait_type": "uniform color",
                        "value": "orange/white"
                    }
                ],
                "image_original_url": "ipfs://QmQU8W2kgMtxD29P13fmWU4EbNa9zPhhtV1z4MvYhdChXa/1.png"
            },
            "collection": {
                "name": "Fancy Astronauts",
                "description": "Why can't you be fancy during a space trip? The boring space suits are gone! Look at this incredible fancy astronauts and foresee how the space fashion can be fun.",
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmQKpr9XDMbRwaZHUkuVVcxuFuvbjuTUY3oXqJJiCDDHR2/nft-cover-art.png"
            },
            "contract": {
                "chain_id": 84532,
                "address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
                "type": "erc721",
                "name": "Fancy Astronauts",
                "symbol": "FYA"
            },
            "token_id": "1",
            "balance": "1",
            "token_type": "erc721",
            "contract_address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
            "owner_addresses": [
                "0x4f2c7e99d9d6e8608aad3eb8a9f1c5b588bdfa28"
            ]
        },
        {
            "chain_id": 84532,
            "name": "Fancy Astronauts #2",
            "description": "A triple of fancy astronauts stepping on the moon",
            "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmQU8W2kgMtxD29P13fmWU4EbNa9zPhhtV1z4MvYhdChXa/1.png",
            "background_color": "#0098EE",
            "metadata_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/Qmf5YDRhYmRCKJApv7DkZAUgw4sHBCbacEVEazDQ9nAPsB/1",
            "extra_metadata": {
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmQU8W2kgMtxD29P13fmWU4EbNa9zPhhtV1z4MvYhdChXa/1.png",
                "background_color": "#0098EE",
                "attributes": [
                    {
                        "trait_type": "# of astronauts",
                        "value": "3"
                    },
                    {
                        "trait_type": "background",
                        "value": "space-boreal"
                    },
                    {
                        "trait_type": "uniform color",
                        "value": "orange/white"
                    }
                ],
                "image_original_url": "ipfs://QmQU8W2kgMtxD29P13fmWU4EbNa9zPhhtV1z4MvYhdChXa/1.png"
            },
            "collection": {
                "name": "Fancy Astronauts",
                "description": "Why can't you be fancy during a space trip? The boring space suits are gone! Look at this incredible fancy astronauts and foresee how the space fashion can be fun.",
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmQKpr9XDMbRwaZHUkuVVcxuFuvbjuTUY3oXqJJiCDDHR2/nft-cover-art.png"
            },
            "contract": {
                "chain_id": 84532,
                "address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
                "type": "erc721",
                "name": "Fancy Astronauts",
                "symbol": "FYA"
            },
            "token_id": "1",
            "balance": "1",
            "token_type": "erc721",
            "contract_address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
            "owner_addresses": [
                "0x4f2c7e99d9d6e8608aad3eb8a9f1c5b588bdfa28"
            ]
        },
        {
            "chain_id": 84532,
            "name": "Fancy Astronauts #3",
            "description": "A couple of fancy astronauts dating on the moon.",
            "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmfNa76XcVSMzbJZVAWhShK2Cw5B3veCfpGK8GtsgPWG74/2.png",
            "background_color": "#0098EE",
            "metadata_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmRYHK7Gvz6hUpUHUaFAqcjtDhRBvgxsC7DGWS7d1h4yp6/2",
            "extra_metadata": {
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmfNa76XcVSMzbJZVAWhShK2Cw5B3veCfpGK8GtsgPWG74/2.png",
                "background_color": "#0098EE",
                "attributes": [
                    {
                        "trait_type": "# of astronauts",
                        "value": "2"
                    },
                    {
                        "trait_type": "background",
                        "value": "space-blue"
                    },
                    {
                        "trait_type": "uniform color",
                        "value": "pink/white"
                    }
                ],
                "image_original_url": "ipfs://QmfNa76XcVSMzbJZVAWhShK2Cw5B3veCfpGK8GtsgPWG74/2.png"
            },
            "collection": {
                "name": "Fancy Astronauts",
                "description": "Why can't you be fancy during a space trip? The boring space suits are gone! Look at this incredible fancy astronauts and foresee how the space fashion can be fun.",
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmQKpr9XDMbRwaZHUkuVVcxuFuvbjuTUY3oXqJJiCDDHR2/nft-cover-art.png"
            },
            "contract": {
                "chain_id": 84532,
                "address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
                "type": "erc721",
                "name": "Fancy Astronauts",
                "symbol": "FYA"
            },
            "token_id": "2",
            "balance": "1",
            "token_type": "erc721",
            "contract_address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
            "owner_addresses": [
                "0x4f2c7e99d9d6e8608aad3eb8a9f1c5b588bdfa28"
            ]
        },
        {
            "chain_id": 84532,
            "name": "Fancy Astronauts #3",
            "description": "A couple of fancy astronauts dating on the moon.",
            "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmfNa76XcVSMzbJZVAWhShK2Cw5B3veCfpGK8GtsgPWG74/2.png",
            "background_color": "#0098EE",
            "metadata_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmRYHK7Gvz6hUpUHUaFAqcjtDhRBvgxsC7DGWS7d1h4yp6/2",
            "extra_metadata": {
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmfNa76XcVSMzbJZVAWhShK2Cw5B3veCfpGK8GtsgPWG74/2.png",
                "background_color": "#0098EE",
                "attributes": [
                    {
                        "trait_type": "# of astronauts",
                        "value": "2"
                    },
                    {
                        "trait_type": "background",
                        "value": "space-blue"
                    },
                    {
                        "trait_type": "uniform color",
                        "value": "pink/white"
                    }
                ],
                "image_original_url": "ipfs://QmfNa76XcVSMzbJZVAWhShK2Cw5B3veCfpGK8GtsgPWG74/2.png"
            },
            "collection": {
                "name": "Fancy Astronauts",
                "description": "Why can't you be fancy during a space trip? The boring space suits are gone! Look at this incredible fancy astronauts and foresee how the space fashion can be fun.",
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmQKpr9XDMbRwaZHUkuVVcxuFuvbjuTUY3oXqJJiCDDHR2/nft-cover-art.png"
            },
            "contract": {
                "chain_id": 84532,
                "address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
                "type": "erc721",
                "name": "Fancy Astronauts",
                "symbol": "FYA"
            },
            "token_id": "2",
            "balance": "1",
            "token_type": "erc721",
            "contract_address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
            "owner_addresses": [
                "0x4f2c7e99d9d6e8608aad3eb8a9f1c5b588bdfa28"
            ]
        },
        {
            "chain_id": 84532,
            "name": "Mystery NFT (coming soon)",
            "description": "Reveal in your own time.",
            "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmSGTRfK6tPgw84okzu325yfjjFzQBCrBZnxZfyppF4BBf/pre-reveal.png",
            "metadata_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmUiVFksFYcA8x7C3JFwGz4mnb6nGN9k2GdGsCVPfhckkp/0",
            "extra_metadata": {
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmSGTRfK6tPgw84okzu325yfjjFzQBCrBZnxZfyppF4BBf/pre-reveal.png",
                "image_original_url": "ipfs://QmSGTRfK6tPgw84okzu325yfjjFzQBCrBZnxZfyppF4BBf/pre-reveal.png"
            },
            "collection": {
                "name": "Fancy Astronauts",
                "description": "Why can't you be fancy during a space trip? The boring space suits are gone! Look at this incredible fancy astronauts and foresee how the space fashion can be fun.",
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmQKpr9XDMbRwaZHUkuVVcxuFuvbjuTUY3oXqJJiCDDHR2/nft-cover-art.png"
            },
            "contract": {
                "chain_id": 84532,
                "address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
                "type": "erc721",
                "name": "Fancy Astronauts",
                "symbol": "FYA"
            },
            "token_id": "6",
            "balance": "1",
            "token_type": "erc721",
            "contract_address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
            "owner_addresses": [
                "0x4f2c7e99d9d6e8608aad3eb8a9f1c5b588bdfa28"
            ]
        },
        {
            "chain_id": 84532,
            "name": "Mystery NFT (coming soon)",
            "description": "Reveal in your own time.",
            "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmSGTRfK6tPgw84okzu325yfjjFzQBCrBZnxZfyppF4BBf/pre-reveal.png",
            "metadata_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmUiVFksFYcA8x7C3JFwGz4mnb6nGN9k2GdGsCVPfhckkp/0",
            "extra_metadata": {
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmSGTRfK6tPgw84okzu325yfjjFzQBCrBZnxZfyppF4BBf/pre-reveal.png",
                "image_original_url": "ipfs://QmSGTRfK6tPgw84okzu325yfjjFzQBCrBZnxZfyppF4BBf/pre-reveal.png"
            },
            "collection": {
                "name": "Fancy Astronauts",
                "description": "Why can't you be fancy during a space trip? The boring space suits are gone! Look at this incredible fancy astronauts and foresee how the space fashion can be fun.",
                "image_url": "https://a0fd2cc03e537bc4386b5ec24929daeb.ipfscdn.io/ipfs/QmQKpr9XDMbRwaZHUkuVVcxuFuvbjuTUY3oXqJJiCDDHR2/nft-cover-art.png"
            },
            "contract": {
                "chain_id": 84532,
                "address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
                "type": "erc721",
                "name": "Fancy Astronauts",
                "symbol": "FYA"
            },
            "token_id": "6",
            "balance": "1",
            "token_type": "erc721",
            "contract_address": "0x141ecbd4985b84c904394913b02d1fddd89d8c1e",
            "owner_addresses": [
                "0x4f2c7e99d9d6e8608aad3eb8a9f1c5b588bdfa28"
            ]
        }
    ]
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions