Permissions per stream

+1 vote
Is it possible to control access per stream? For example, there is 'myStream1', only users a, b, c can write data into 'myStream1' and only users a, b, .., f, h can read data in 'myStream1'?

 

Thanks in advance.
asked Jul 18, 2018 by enics

2 Answers

+1 vote

It's possible to control who can write to a stream. See step 4 here: https://www.multichain.com/getting-started/

Create the stream with "open" set to false and then explicitly grant write permissions like:

grant <address> myStream1.write

answered Jul 18, 2018 by John
+1 vote
To add to the other answer, it's not yet possible to control stream read permissions, but this is something we're working on for the future.
answered Jul 19, 2018 by MultiChain
...