Hello,
I need to show the user all transactions on Mainnet and Testnet from all the Eth, BSC and Polygon chain.
const query = new moralis.Query("EthTransactions");
query.equalTo("from_address", "user address");
query.find().then((transactions) => {
console.log(transactions);
});
But itโs not showing all the transactions on Eth chain.
Thanks,
Zee