| id | title |
|---|---|
api-collection-data |
Getting Collection Data |
import Tabs from '@theme/Tabs' import TabItem from '@theme/TabItem' import OwnerCount from '../../static/img/guides/monarchs/supply-owner-count.png';
This guide will cover how to retrieve NFT collection data for Monarchs.
Data can be retrieved for any collection by using these queries and updating the collectionAddress.
:::note
GraphiQL Playground: https://api.zora.co/graphql
Monarchs Contract: 0xc729Ce9bF1030fbb639849a96fA8BBD013680B64
A collection is a group of NFTs that all share a single contract.
:::
First off, we can begin by getting a preview of Monarchs by using the collections query.
This query can fetch data for either multiple NFT collections or a specific collection.
<Tabs defaultValue="query" values={[ { label: 'Query', value: 'query', }, { label: 'Response', value: 'response', } ] }>
query CollectionInfo {
collections(networks: [{network: ETHEREUM, chain: MAINNET}],
pagination: {limit: 8},
sort: {sortKey: CREATED, sortDirection: ASC},
where: {collectionAddresses: "0xc729Ce9bF1030fbb639849a96fA8BBD013680B64"})
{
nodes {
address
name
symbol
totalSupply
}
}
}
{
"data": {
"collections": {
"nodes": [
{
"address": "0xc729ce9bf1030fbb639849a96fa8bbd013680b64",
"name": "Monarchs",
"symbol": "MONARCH",
"totalSupply": 888
}
]
}
}
}Now let's look at a few general collection stats for Monarchs.
Below we are using the aggregateStat query to get the information we need.
We can see that 888 total Monarchs that are held by 600 different addresses
and the collection has done over 2251 ETH (chainTokenPrice) in sales volume across all markets.
<Tabs defaultValue="query" values={[ { label: 'Query', value: 'query', }, { label: 'Response', value: 'response', } ] }>
query MonarchCollectionStats {
aggregateStat {
nftCount(where: {collectionAddresses: "0xc729Ce9bF1030fbb639849a96fA8BBD013680B64"})
ownerCount(where: {collectionAddresses: "0xc729Ce9bF1030fbb639849a96fA8BBD013680B64"})
salesVolume(where: {collectionAddresses: ["0x335eeef8e93a7a757d9e7912044d9cd264e2b2d8"]}, networks: [{network: ETHEREUM, chain: MAINNET}]) {
usdcPrice
totalCount
chainTokenPrice
}
}
}
{
"data": {
"aggregateStat": {
"nftCount": 888,
"ownerCount": 600,
"salesVolume": {
"usdcPrice": 6944078.373988687,
"totalCount": 12636,
"chainTokenPrice": 2255.048171858962
}
}
}
}Next, let's look at the first NFT that was ever minted from this collection. We can see that it was minted on November 6th, 2021 for 0 ETH. A deeper dive will tell you that this is the creator's wallet and they were able to mint the first 20 Monarchs for free.
<Tabs defaultValue="query" values={[ { label: 'Query', value: 'query', }, { label: 'Response', value: 'response', } ] }>
query FirstMonarchMinted {
mints(where: {collectionAddresses: "0xc729Ce9bF1030fbb639849a96fA8BBD013680B64"},
pagination: {limit: 1},
sort: {sortKey: TIME,
sortDirection: ASC}) {
nodes {
token {
tokenId
owner
mintInfo {
originatorAddress
price {
chainTokenPrice {
decimal
}
}
mintContext {
transactionHash
blockTimestamp
}
}
}
}
}
}{
"data": {
"mints": {
"nodes": [
{
"token": {
"tokenId": "0",
"owner": "0x1d14d9e297dfbce003f5a8ebcf8cba7faee70b91",
"mintInfo": {
"originatorAddress": "0x4628d77ba8fcc7a7f2b6bd4a0363061a06e7a20f",
"price": {
"chainTokenPrice": {
"decimal": 0
}
},
"mintContext": {
"transactionHash": "0x0d5bfe26cacd6a9b678427f4aca229204d758757478246bc766c7e3844f9be1a",
"blockTimestamp": "2021-10-06T15:55:44"
}
}
}
}
]
}
}
}:::note
One thing to call out is that sometimes collections will airdrop their tokens to people to trick certain interfaces into making it look like that address minted from the collection.
A way to prevent this is to compare the originatorAddress with the toAddress.
The originatorAddress is the address that submitted the transaction and the toAddress is the address where the minted NFT was sent in the transaction.
:::
However, if we set the tokenId in where to 20 we can view the 21st Monarch minted and see that it was minted for 0.8 ETH.
<Tabs defaultValue="query" values={[ { label: 'Query', value: 'query', }, { label: 'Response', value: 'response', } ] }>
query TwentyFirstMonarchMinted {
mints(where:
{tokens: {address: "0xc729Ce9bF1030fbb639849a96fA8BBD013680B64", tokenId: "20"}},
pagination: {limit: 1},
sort: {sortKey: TIME, sortDirection: ASC}) {
nodes {
token {
tokenId
owner
mintInfo {
originatorAddress
price {
nativePrice {
decimal
}
}
mintContext {
transactionHash
blockTimestamp
}
}
}
}
}
}
{
"data": {
"mints": {
"nodes": [
{
"token": {
"tokenId": "20",
"owner": "0x79bc543be01d2b346d659fa69bb25c73436ffa05",
"mintInfo": {
"originatorAddress": "0x79bc543be01d2b346d659fa69bb25c73436ffa05",
"price": {
"nativePrice": {
"decimal": 0.8
}
},
"mintContext": {
"transactionHash": "0x07d236e70c1647f1d8504df7ea74435c01b276e2effe54b1df463a2ea7c76235",
"blockTimestamp": "2021-10-06T16:00:17"
}
}
}
}
]
}
}
}By using the sales query and sorting by descending ETH_PRICE we can see the largest sales for Monarchs.
We can see that the largest sale was tokenId 624 for 8.88 ETH on October 6th, 2021.
<Tabs defaultValue="query" values={[ { label: 'Query', value: 'query', }, { label: 'Response', value: 'response', } ] }>
query TopMonarchSales {
sales(where: {collectionAddresses: "0xc729Ce9bF1030fbb639849a96fA8BBD013680B64"}, pagination: {limit: 3}, sort: {sortKey: NATIVE_PRICE, sortDirection: DESC}) {
nodes {
sale {
saleType
saleContractAddress
buyerAddress
sellerAddress
tokenId
transactionInfo {
blockTimestamp
transactionHash
}
price {
usdcPrice {
decimal
}
nativePrice {
decimal
}
}
}
}
}
}
{
"data": {
"sales": {
"nodes": [
{
"sale": {
"saleType": "OPENSEA_SINGLE_SALE",
"saleContractAddress": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b",
"buyerAddress": "0xc89a6f24b352d35e783ae7c330462a3f44242e89",
"sellerAddress": "0x040fc4f814321242c4e19114cfd7493bebb3b121",
"tokenId": "624",
"transactionInfo": {
"blockTimestamp": "2021-10-06T17:30:36",
"transactionHash": "0xf0179b678809acff8535ad89338bc7fa8a87d28cc10f07c7e595ef823b0e4690"
},
"price": {
"usdcPrice": {
"decimal": 31729.60193029824
},
"nativePrice": {
"decimal": 8.88
}
}
}
},
{
"sale": {
"saleType": "OPENSEA_SINGLE_SALE",
"saleContractAddress": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b",
"buyerAddress": "0x7ae920bef29c849415635b1b97f1ceb33dca89b6",
"sellerAddress": "0x63035f1421fd4292c3f802cccf3060a4b94dcace",
"tokenId": "865",
"transactionInfo": {
"blockTimestamp": "2021-10-06T19:38:45",
"transactionHash": "0xa24328cc093d38e61d6bc0b53f5543d081c6fa4e3e9387ecc2dca427d831c23f"
},
"price": {
"usdcPrice": {
"decimal": 27832.857309572228
},
"nativePrice": {
"decimal": 7.77
}
}
}
},
{
"sale": {
"saleType": "OPENSEA_SINGLE_SALE",
"saleContractAddress": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b",
"buyerAddress": "0xa9a1b8c4ee2cf76e8b22c5dad3976d269e4050e5",
"sellerAddress": "0x50d6102774fe54dd7d073a27f45dffacb51fa667",
"tokenId": "887",
"transactionInfo": {
"blockTimestamp": "2021-10-06T18:58:48",
"transactionHash": "0x89786c7c2e1e113f43a919dcecb3b9270d1526b3fc629ead4a1ccccc9e0b6537"
},
"price": {
"usdcPrice": {
"decimal": 24736.902321472273
},
"nativePrice": {
"decimal": 6.9
}
}
}
}
]
}
}
}We can view who the Monarch whales are by using ownersByCount on aggregateStat.
This will order the addresses that hold the most NFTs of a collection in descending order.
<Tabs defaultValue="query" values={[ { label: 'Query', value: 'query', }, { label: 'Response', value: 'response', } ] }>
query TopHolders {
aggregateStat {
ownersByCount(where: {collectionAddresses: "0xc729Ce9bF1030fbb639849a96fA8BBD013680B64"},
pagination: {limit: 5}) {
nodes {
owner
count
}
}
}
}{
"data": {
"aggregateStat": {
"ownersByCount": {
"nodes": [
{
"owner": "0x7ae920bef29c849415635b1b97f1ceb33dca89b6",
"count": 65
},
{
"owner": "0x8bace3a49a375027868cdd34e84521eed1f1b01d",
"count": 16
},
{
"owner": "0xc78b646d26f73ae8428c49d0e94cc50b1525388a",
"count": 13
},
{
"owner": "0x4628d77ba8fcc7a7f2b6bd4a0363061a06e7a20f",
"count": 10
},
{
"owner": "0x7b4a5410713fe715312d4bb99b30ab00f045f2f4",
"count": 9
}
]
}
}
}
}Here we are able to get a list of NFTs within the Monarchs collection.
You are able to make the preview as simple or complex as you would like.
In this example we are getting 3 tokens from the collection using the tokens query and returning all the metadata for each token.
<Tabs defaultValue="query" values={[ { label: 'Query', value: 'query', }, { label: 'Response', value: 'response', } ] }>
query PreviewTokens {
tokens(networks: [{network: ETHEREUM, chain: MAINNET}],
pagination: {limit: 3},
sort: {sortKey: MINTED, sortDirection: ASC},
where: {collectionAddresses: ["0xc729Ce9bF1030fbb639849a96fA8BBD013680B64"]})
{
nodes {
token {
collectionAddress
tokenId
name
tokenUrl
metadata
}
}
}
}
{
"data": {
"tokens": {
"nodes": [
{
"token": {
"collectionAddress": "0xc729ce9bf1030fbb639849a96fa8bbd013680b64",
"tokenId": "0",
"name": "Monarch #1",
"tokenUrl": "ipfs://QmXuEFJVjQrHX7GRWY2WnbUP59re3WsyDLZoKqXvRPSxBY/0",
"metadata": {
"name": "Monarch #1",
"description": "Monarchs is a limited edition series of generative butterfly NFTs by Eric Hu and Roy Tatum. Viewable as both still and moving image, each artwork features a unique one-of-a-kind butterfly with varying wing shapes, colors, bodies, and patterns—some traits much less common than others.",
"tokenId": 0,
"image": "https://gateway.pinata.cloud/ipfs/QmYBY9R9YDZNyx7eSSA99vZynyyuwwYxHoBZSYtEuVsSd3",
"animation_url": "https://gateway.pinata.cloud/ipfs/QmdSBDJz88EWUu6Hg2BJA6PghN8iM4L3N4VEJ3QmoLkaJu",
"external_url": "https://www.monarchs.art",
"attributes": [
{
"trait_type": "Environment",
"value": "Pony"
},
{
"trait_type": "Base Pattern",
"value": "Shinzaemon"
},
{
"trait_type": "Secondary Pattern",
"value": "Krakow"
},
{
"trait_type": "Wing Shape",
"value": "Osman"
},
{
"trait_type": "Body Type",
"value": "Qing"
}
]
}
}
},
{
"token": {
"collectionAddress": "0xc729ce9bf1030fbb639849a96fa8bbd013680b64",
"tokenId": "1",
"name": "Monarch #2",
"tokenUrl": "ipfs://QmXuEFJVjQrHX7GRWY2WnbUP59re3WsyDLZoKqXvRPSxBY/1",
"metadata": {
"name": "Monarch #2",
"description": "Monarchs is a limited edition series of generative butterfly NFTs by Eric Hu and Roy Tatum. Viewable as both still and moving image, each artwork features a unique one-of-a-kind butterfly with varying wing shapes, colors, bodies, and patterns—some traits much less common than others.",
"tokenId": 1,
"image": "https://gateway.pinata.cloud/ipfs/QmXxgX5Qyhqz1t9wDFkvJtjVKYe1f8Uj714RV2n1LS76Pg",
"animation_url": "https://gateway.pinata.cloud/ipfs/QmcDsZSJ4m9SYZCeEE3BbnpsfXCrMV7RJSbinTr3izS2C3",
"external_url": "https://www.monarchs.art",
"attributes": [
{
"trait_type": "Environment",
"value": "Der Zeit"
},
{
"trait_type": "Base Pattern",
"value": "Dailo"
},
{
"trait_type": "Secondary Pattern",
"value": "Zeitan"
},
{
"trait_type": "Wing Shape",
"value": "Suiko"
},
{
"trait_type": "Body Type",
"value": "Qing"
}
]
}
}
},
{
"token": {
"collectionAddress": "0xc729ce9bf1030fbb639849a96fa8bbd013680b64",
"tokenId": "2",
"name": "Monarch #3",
"tokenUrl": "ipfs://QmXuEFJVjQrHX7GRWY2WnbUP59re3WsyDLZoKqXvRPSxBY/2",
"metadata": {
"name": "Monarch #3",
"description": "Monarchs is a limited edition series of generative butterfly NFTs by Eric Hu and Roy Tatum. Viewable as both still and moving image, each artwork features a unique one-of-a-kind butterfly with varying wing shapes, colors, bodies, and patterns—some traits much less common than others.",
"tokenId": 2,
"image": "https://gateway.pinata.cloud/ipfs/QmNZ5SiMhHSCTeU1UfDJ3GMpwmrwDdSq9qWMwa1K2JQ2hr",
"animation_url": "https://gateway.pinata.cloud/ipfs/QmUu8wBnue5d4DnhGmrGJwQPxGj9QuFf8a66W8XYU9Mwiu",
"external_url": "https://www.monarchs.art",
"attributes": [
{
"trait_type": "Environment",
"value": "Donatello"
},
{
"trait_type": "Base Pattern",
"value": "Katana"
},
{
"trait_type": "Secondary Pattern",
"value": "Nero"
},
{
"trait_type": "Wing Shape",
"value": "Mary"
},
{
"trait_type": "Body Type",
"value": "Mothma"
}
]
}
}
}
]
}
}
}Viewing the distribution of attributes can be done by using the aggregateAttributes query.
This will return the value, percent, and count for every attribute if provided by the NFT.
Note, that some on-chain NFTs don't have attributes directly in their metadata.
<Tabs
defaultValue="query"
values={[
{ label: 'Query', value: 'query', },
{ label: 'Response', value: 'response', }
]
}>
query AggregateAttributesByCollectionAddress {
aggregateAttributes(
where: {collectionAddresses: ["0xc729Ce9bF1030fbb639849a96fA8BBD013680B64"],
},
networks: [{network: ETHEREUM, chain: MAINNET}]
) {
traitType
valueMetrics {
count
percent
value
}
}
}{
"data": {
"aggregateAttributes": [
{
"traitType": "Environment",
"valueMetrics": [
{
"count": 26,
"percent": 10.12,
"value": "Pony"
},
{
"count": 6,
"percent": 2.33,
"value": "Ridley"
},
{
"count": 11,
"percent": 4.28,
"value": "Zeitung"
},
{
"count": 5,
"percent": 1.95,
"value": "Eden"
},
{
"count": 13,
"percent": 5.06,
"value": "Donatello"
},
{
"count": 20,
"percent": 7.78,
"value": "Sort"
},
{
"count": 27,
"percent": 10.51,
"value": "Compile"
},
{
"count": 2,
"percent": 0.78,
"value": "Moonlight"
},
{
"count": 7,
"percent": 2.72,
"value": "New World"
},
{
"count": 3,
"percent": 1.17,
"value": "Moonlight Forest"
},
{
"count": 11,
"percent": 4.28,
"value": "Nuclei Fire"
},
{
"count": 8,
"percent": 3.11,
"value": "Mule"
},
{
"count": 13,
"percent": 5.06,
"value": "Nuclei Purple"
},
{
"count": 4,
"percent": 1.56,
"value": "Circle"
},
{
"count": 3,
"percent": 1.17,
"value": "Acid Rothko"
},
{
"count": 1,
"percent": 0.39,
"value": "Hybrid"
},
{
"count": 2,
"percent": 0.78,
"value": "Tada"
},
{
"count": 1,
"percent": 0.39,
"value": "Dark Forest"
},
{
"count": 4,
"percent": 1.56,
"value": "Hunter"
},
{
"count": 14,
"percent": 5.45,
"value": "Nuclei Green"
},
{
"count": 6,
"percent": 2.33,
"value": "Arrange"
},
{
"count": 5,
"percent": 1.95,
"value": "Nuclei Ultra"
},
{
"count": 17,
"percent": 6.61,
"value": "Jupiter"
},
{
"count": 16,
"percent": 6.23,
"value": "Orbit"
},
{
"count": 7,
"percent": 2.72,
"value": "Mauve"
},
{
"count": 3,
"percent": 1.17,
"value": "Zero"
},
{
"count": 3,
"percent": 1.17,
"value": "Curtain"
},
{
"count": 4,
"percent": 1.56,
"value": "Dijck"
},
{
"count": 5,
"percent": 1.95,
"value": "Zeitgeist"
},
{
"count": 6,
"percent": 2.33,
"value": "Der Zeit"
},
{
"count": 2,
"percent": 0.78,
"value": "Shen"
},
{
"count": 2,
"percent": 0.78,
"value": "Nebula"
}
]
},
{
"traitType": "Base Pattern",
"valueMetrics": [
{
"count": 38,
"percent": 14.79,
"value": "Kingdom"
},
{
"count": 29,
"percent": 11.28,
"value": "Ikarus"
},
{
"count": 12,
"percent": 4.67,
"value": "Ivalice"
},
{
"count": 22,
"percent": 8.56,
"value": "Kaneda"
},
{
"count": 16,
"percent": 6.23,
"value": "Venom"
},
{
"count": 2,
"percent": 0.78,
"value": "Field"
},
{
"count": 27,
"percent": 10.51,
"value": "Dailo"
},
{
"count": 19,
"percent": 7.39,
"value": "Cosmic Horror"
},
{
"count": 16,
"percent": 6.23,
"value": "Srivatsa"
},
{
"count": 14,
"percent": 5.45,
"value": "Koichi"
},
{
"count": 4,
"percent": 1.56,
"value": "Be Not Afraid"
},
{
"count": 14,
"percent": 5.45,
"value": "Shinzaemon"
},
{
"count": 9,
"percent": 3.5,
"value": "Kubrick"
},
{
"count": 8,
"percent": 3.11,
"value": "Jungle"
},
{
"count": 7,
"percent": 2.72,
"value": "Carnage"
},
{
"count": 9,
"percent": 3.5,
"value": "Kazumasa"
},
{
"count": 11,
"percent": 4.28,
"value": "Katana"
}
]
},
{
"traitType": "Secondary Pattern",
"valueMetrics": [
{
"count": 29,
"percent": 11.28,
"value": "Maui"
},
{
"count": 14,
"percent": 5.45,
"value": "Julien"
},
{
"count": 19,
"percent": 7.39,
"value": "Zara"
},
{
"count": 20,
"percent": 7.78,
"value": "Nehemiah"
},
{
"count": 8,
"percent": 3.11,
"value": "Krakow"
},
{
"count": 24,
"percent": 9.34,
"value": "Sebastien"
},
{
"count": 12,
"percent": 4.67,
"value": "Malawi"
},
{
"count": 11,
"percent": 4.28,
"value": "Cyrus"
},
{
"count": 13,
"percent": 5.06,
"value": "Droplet"
},
{
"count": 24,
"percent": 9.34,
"value": "Zeitan"
},
{
"count": 10,
"percent": 3.89,
"value": "Makeda"
},
{
"count": 14,
"percent": 5.45,
"value": "Owl"
},
{
"count": 11,
"percent": 4.28,
"value": "Kuzmickas"
},
{
"count": 3,
"percent": 1.17,
"value": "Oahu"
},
{
"count": 9,
"percent": 3.5,
"value": "Nikto"
},
{
"count": 8,
"percent": 3.11,
"value": "Valhalla"
},
{
"count": 7,
"percent": 2.72,
"value": "Mehmed"
},
{
"count": 13,
"percent": 5.06,
"value": "Nero"
},
{
"count": 4,
"percent": 1.56,
"value": "Kora"
},
{
"count": 2,
"percent": 0.78,
"value": "Augustus"
},
{
"count": 1,
"percent": 0.39,
"value": "Anastasia"
},
{
"count": 1,
"percent": 0.39,
"value": "Lelouch"
}
]
},
{
"traitType": "Wing Shape",
"valueMetrics": [
{
"count": 66,
"percent": 25.68,
"value": "Theodora"
},
{
"count": 24,
"percent": 9.34,
"value": "Nubis"
},
{
"count": 24,
"percent": 9.34,
"value": "Victoria"
},
{
"count": 16,
"percent": 6.23,
"value": "Suiko"
},
{
"count": 18,
"percent": 7,
"value": "Petrovna"
},
{
"count": 12,
"percent": 4.67,
"value": "Antoinette"
},
{
"count": 14,
"percent": 5.45,
"value": "Vallal"
},
{
"count": 24,
"percent": 9.34,
"value": "Suleiman"
},
{
"count": 6,
"percent": 2.33,
"value": "Bellucci"
},
{
"count": 7,
"percent": 2.72,
"value": "Mary"
},
{
"count": 10,
"percent": 3.89,
"value": "Krimhelde"
},
{
"count": 26,
"percent": 10.12,
"value": "Osman"
},
{
"count": 8,
"percent": 3.11,
"value": "Gemma"
},
{
"count": 2,
"percent": 0.78,
"value": "Lilou"
}
]
},
{
"traitType": "Body Type",
"valueMetrics": [
{
"count": 136,
"percent": 52.92,
"value": "Mothma"
},
{
"count": 51,
"percent": 19.84,
"value": "Qing"
},
{
"count": 70,
"percent": 27.24,
"value": "Schmett"
}
]
}
]
}
}The Zora API can find any token or collection that contains a specific keyword.
In this case, the query is searching for tokens in the Monarch collection that have the word "Venom".
We can see here that "Venom" ends up being a type of Base Pattern for Monarchs.
<Tabs
defaultValue="query"
values={[
{ label: 'Query', value: 'query', },
{ label: 'Response', value: 'response', }
]
}>
query CollectionTextSearch {
search(pagination: {limit: 5},
query: {text: "Venom"},
filter: {collectionAddresses: "0xc729Ce9bF1030fbb639849a96fA8BBD013680B64",
entityType: TOKEN})
{
nodes {
entity {
... on Token {
tokenId
owner
attributes {
traitType
value
}
}
}
}
}
}{
"data": {
"search": {
"nodes": [
{
"entity": {
"tokenId": "117",
"owner": "0x09b14b1c8a92bca0cc592a80dc311bf1a3fde9f5",
"attributes": [
{
"traitType": "Environment",
"value": "Donatello"
},
{
"traitType": "Base Pattern",
"value": "Venom"
},
{
"traitType": "Secondary Pattern",
"value": "Krakow"
},
{
"traitType": "Wing Shape",
"value": "Suiko"
},
{
"traitType": "Body Type",
"value": "Mothma"
}
]
}
},
{
"entity": {
"tokenId": "280",
"owner": "0x17b1cb1ad28e8e8b038139e95cf6223ee7e8b572",
"attributes": [
{
"traitType": "Environment",
"value": "Compile"
},
{
"traitType": "Base Pattern",
"value": "Venom"
},
{
"traitType": "Secondary Pattern",
"value": "Nehemiah"
},
{
"traitType": "Wing Shape",
"value": "Krimhelde"
},
{
"traitType": "Body Type",
"value": "Mothma"
}
]
}
},
{
"entity": {
"tokenId": "285",
"owner": "0xa5c2b80bcfa9201df2310a47ded0b282f6b79bee",
"attributes": [
{
"traitType": "Environment",
"value": "Curtain"
},
{
"traitType": "Base Pattern",
"value": "Venom"
},
{
"traitType": "Secondary Pattern",
"value": "Nikto"
},
{
"traitType": "Wing Shape",
"value": "Nubis"
},
{
"traitType": "Body Type",
"value": "Mothma"
}
]
}
},
{
"entity": {
"tokenId": "620",
"owner": "0x954536dacf5860f3c8d4dd0d25b7a85818e08864",
"attributes": [
{
"traitType": "Environment",
"value": "Zeitung"
},
{
"traitType": "Base Pattern",
"value": "Venom"
},
{
"traitType": "Secondary Pattern",
"value": "Zara"
},
{
"traitType": "Wing Shape",
"value": "Theodora"
},
{
"traitType": "Body Type",
"value": "Mothma"
}
]
}
},
{
"entity": {
"tokenId": "87",
"owner": "0x968794b44f79079b10ca33e5584cff591e590461",
"attributes": [
{
"traitType": "Environment",
"value": "Compile"
},
{
"traitType": "Base Pattern",
"value": "Venom"
},
{
"traitType": "Secondary Pattern",
"value": "Malawi"
},
{
"traitType": "Wing Shape",
"value": "Gemma"
},
{
"traitType": "Body Type",
"value": "Mothma"
}
]
}
}
]
}
}
}