Is it correct create a new stream for every new user in the application to save his details

+2 votes
asked Sep 20, 2018 by rama

1 Answer

0 votes

Generally speaking this is not the simplest approach. Instead, create a single stream that anyone can write to, and then have people publish their details in stream items under their address. You can then use APIs like liststreampublisheritems to find the items published under each address.

answered Sep 20, 2018 by MultiChain
...