I’m testing the BSC chain and have this query:
query MyQuery {
ethereum(network: bsc) {
smartContractCalls(options: {desc: "block.height"}, smartContractMethod: {}) {
block(height: {is: 8730128}) {
timestamp {
time
}
height
}
smartContractMethod {
name
}
}
}
}
Works fine, gives me a list of transactions types and the time stamps, etc.
If I add a line to filter for swap in the smartContractMethod, that works fine too. To do it, I’m adding the line:
smartContractMethod: {is: "swap"}
BUT if I try to filter for Contract Creation lines it doesn’t work despite there definitely being on in this block (you can see this by searching through the original query that has all lines). The line I’m using is:
smartContractMethod: {is: "Contract Creation"}
Has anyone seen this or have any ideas why it not showing up?