Hello!
I’m using the nodejs sdk to create a stream and then add many addresses to track the tx, my question is if it’s possible to filter and say I only want the address to be in from or it could be in to. I was looking at documentation but I didn’t see anything about it other than for contracts, in this case I don’t use a contract.
const options = {
chains: [EvmChain.BSC_TESTNET],
description: 'app:deposit',
tag: 'addresses',
includeContractLogs: false,
includeNativeTxs: true,
webhookUrl: Keys.MORALIS_WEBHOOK
}
const stream = await Moralis.Streams.add(options)
is there a possibility to do this?