Learn best practices for handling multiple addresses in your streams.
You do not have to create a separate stream for each address. Instead, you can attach multiple addresses to the same stream. The best practice is to create as few streams as possible and instead attach addresses to existing streams whenever it makes sense. You can attach any number of addresses to a stream.
If you need more streams, update to a paid plan or contact support ([email protected]) if you are already a paying client.
If you want to add multiple addresses to another stream, you can always attach them to an existing stream.
// Add addressesawait Moralis.Streams.addAddress({ id: streamId, address: [ "0xCFDF6Aaae9f6B927E3736FBD327853B622c5060E", "0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B", ], // Can also be a single string});