Hello i want to filtering on 2 chains for USDT smart contract.
How can i do this ?
query ($address: String!, $limit: Int!, $offset: Int!, $from: ISO8601DateTime, $till: ISO8601DateTime) {
tron {
transfers(
options: {asc: "block.timestamp.time", limit: $limit, offset: $offset}
date: {since: $from, till: $till}
amount: {gt: 0}
sender: {is: $address}
) {
block {
timestamp {
time(format: "%Y-%m-%d %H:%M:%S")
}
height
}
address: receiver {
address
annotation
}
currency {
address
symbol
tokenId
tokenType
}
amount
txHash
}
}
}