{
ethereum(network: bsc_testnet) {
smartContractCalls(
caller: {is: “0x0e8492d5566365236f0E179fd6956fe87c6AC3EB”}
smartContractAddress: {is: “0x2d4ee064ebb491b1e6db6ea1962db59d1d0e0741”}
) {
block {
timestamp {
time(format: "%Y-%m-%d %H:%M:%S")
}
height
}
smartContractMethod {
name
signatureHash
}
address: caller {
address
annotation
}
transaction {
hash
}
gasValue
external
}
}
}
This query gives output of txn hash and various other information of each txn. What can I add so we can also get the amount of each token traded in each txn as it showing other information for each txn. I want to get all this information from this query only. How can I do that?