Hi all. Iam newbie in bitquery.
I trying get a new listed PancakeSwap Coins
I using this query in my project
{
ethereum(network: bsc) {
arguments(
smartContractAddress: {
is: "0xBCfCcbde45cE874adCB698cC183deBcF17952812"
}
smartContractEvent: { is: "PairCreated" }
argument: { not: "pair" }
options: { desc: "block.timestamp.unixtime", limit: 50 }
) {
block {
height
timestamp {
unixtime
}
}
reference {
address
smartContract {
currency {
name
symbol
}
}
}
}
}
}
`
But very slowly response. Why coult it be? Or have any Graphql query for share with me
Thanks