I have a list of BSC addrs. Need to check every single addr and show, which have =<2 incoming trans. Is it possible?
Check number of txs for multiple addresses
{
ethereum(network: bsc){
transactions (txTo: {in: ["Address1", "Address2"]}){
count
to{
address
}
}
}
}