Querying senders, and filtering for method. Which is best cube to achieve this?

hey Aleksey, i’ve created this, to list all senders, via transactions cube.
However, I also need to filter for certain methods.
Which is best cube that will facilitate below code, and allow for filtering by method (which shows up in transaction (per etherscan / transactions tab)?
Thanks

query MyQuery {
ethereum {
transactions(
options: {desc: “count”}
date: {since: “21-03-01”, till: “21-06-28”}
txTo: {is: “0x11111112542d85b3ef69ae05771c2dccff4faa26”}
) {
sender {
address
annotation
}
count
}
}
}

when i run this for all of June, if i sum results of “count”, i get 160,683.

I created the following code, and i get a different sum amount:
query MyQuery {
ethereum {
smartContractCalls(
options: {desc: “count”, limit: 10000}
date: {since: “21-06-30”, till: “21-06-30”}
smartContractAddress: {is: “0x11111112542d85b3ef69ae05771c2dccff4faa26”}
#smartContractMethod: {is: “unoswap”}
) {
count(uniq: txs)
#transaction {
#txFrom {
#address
}
}
}
#}
#}

11,617

Is this solved? if yes…please answer how you solved it

no i haven’t been able to solve this. Waiting for Aleksey

Can you rephrase the problem here once… I didn’t understand

@chiron is this problem resolved from your end? or is it still pending?

can close this ticket