whats the right way to query ? im thinking the below query but the DAU numbers dont match the C Chain explorer Avalanche Stats: View Network Activity on a daily basis
query ($network: EthereumNetwork!, $dateFormat: String!, $from: ISO8601DateTime, $till: ISO8601DateTime) {
ethereum(network: $network) {
transactions(options: {asc: "date.date"}, date: {since: $from, till: $till}) {
date: date {
date(format: $dateFormat)
}
txs: count
dau:count(uniq:senders)
}
}
}
params:
{"limit":10,"offset":0,"network":"avalanche","from":"2021-12-24","till":null,"dateFormat":"%Y-%m-%d"}