You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Off-chain / on-chain private sequenced transfer coordination
This gen2 architecture provides an extension over the first generation, to solve two interconnected problems:
When you miss the private (off-chain) data for a message, you don't know which messages this blocks
This can lead to "stop the world" scenarios, where the only safe thing to do is to stop processing anything
Most business solutions can use a "topic" (such as a customer ID, or business transaction ID) to discriminated sequences that need to be ordered
By specifying a topic in the message, an app can state which sequence it's involved in, so if you miss a message, then only that sequence becomes blocked - the other sequences can continue.
Putting an identifier in all messages on a topic leaks metadata
Information can be gleaned by seeing that X messages happened on a given topic
Even if the topic is hashed, you can still see that the message were interconnected
In the architecture, we mask this strongly using:
A monotonically increasing nonce unique to each sender
An ID for the group (calculated as a hash of the membership list and optional name)
To allow global ordering without leaking the group ID to the chain, we calculate the next-hash of all members, and match new message arrivals against that
Note this issue does not cover anonymity of the sender of the transaction. The integration of HD Wallets, ID mixers etc. is protocol specific, and handled in ethconnect and other Blockchain Interface implementations.
The text was updated successfully, but these errors were encountered:
Off-chain / on-chain private sequenced transfer coordination
This gen2 architecture provides an extension over the first generation, to solve two interconnected problems:
topic
in the message, an app can state which sequence it's involved in, so if you miss a message, then only that sequence becomes blocked - the other sequences can continue.topic
leaks metadataThe text was updated successfully, but these errors were encountered: