Hi there,
I am trying to understand the stream functionality of Multichain 2.0
For Multichain 1.0 I publish one json object(as hex) associated with a UUID key, that is one json object published in single transaction. My request looks like this
{
"method": "publish",
"params": ["stream", "UUID", "Hex"]
}
What i need is a way to publish multiple json objects, each associated with a unique key in a single transaction, something like this
{
"method": "publish",
"params": ["stream", "[UUID1,UUID2,...UUID10]", "[Hex1,Hex2....Hex10]"]
}
where UUID1 corresponds to Hex1 and so on. Is that achievable with Multichain 2.0. If yes, how can i do that?