我正在尝试制作一个可以扫描 bsc 网络以查找新 BEP20 令牌的机器人。我在https://graphql.bitquery.io/ide中尝试了以下代码。但这并没有给我任何 BEP20 代币。这里有什么参数可以让我指定要过滤的 tokenType 吗?
'''坚固性
{
smartContractCalls(
options: {desc: "block.height", limit: 100,}
smartContractMethod: {is: "Contract Creation"}
smartContractType: {is: Token}
)
{
block {
height
timestamp {
time
}
}
smartContract {
contractType
address {
address
annotation
}
currency {
name
symbol
decimals
tokenType
}
}
}
} } '''