Doing the below query:
{
ethereum(network: ethereum) {
smartContractCalls(
date: {after: "2020-01-01"}
options: {asc: "block.height", limit: 1000, offset: 0}
smartContractMethod: {is: "Contract Creation"}
smartContractType: {is: Token}
) {
transaction {
txFrom {
address
}
}
block {
height
timestamp {
time
}
}
smartContract {
contractType
address {
address
annotation
}
currency {
name
symbol
decimals
tokenType
}
}
}
}
}
some of the most famous collections are missing. It give back all ERC-20 and ERC-721 tokens but I can see that very famous ones are missing (some example: Azuki, ENS, BAYC …)
Anyone know why it is happening? or how to check why some collections are listed and some other no?
I’ve done the same call using a cumulative offset to get all the collections from 2020 to today