Hello together
I have tried several versions from existing queries, but none work with the Secured Moonrat (SMRAT) token.
However, it works with other tokens.
Exchange: Pancakeswap
Token: SMRAT
Contract ID: 0x68590a47578e5060a29fd99654f4556dbfa05d10
BSCSCAN: https://www.bscscan.com/token/0x68590a47578e5060a29fd99654f4556dbfa05d10
Among other things, I tried this code in https://graphql.bitquery.io/ide:
{
ethereum(network: bsc) {
dexTrades(
options: {limit: 2, desc: “block.timestamp.time”}
exchangeName: {is: “Pancake”}
baseCurrency: {is: “0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c”}
quoteCurrency: {is: “0x68590a47578e5060a29fd99654f4556dbfa05d10”}
) {
block {
timestamp {
time(format: “%Y-%m-%d %H:%M:%S”)
}
}
baseCurrency {
symbol
address
}
baseAmount
quoteCurrency {
symbol
address
}
quoteAmount
trades: count
quotePrice
}
}
}
Can someone help here please?