Possible flow chart for operations #11
crazyrabbitLTC
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
graph TD
A[User] -->|1. Pin file| B(Smart Contract)
B -->|2. Emit event| C(AVS Network)
C -->|3. Randomly select committee| D(Committee)
D -->|4. Pull file, verify Merkle root| E{File Verification}
E -->|5. Hash chunks with own keys| F(Put signed message on-chain)
F --> C
C -->|6. Randomly select subset for proof of storage| G(Selected Participants)
G -->|7. Provide Merkle root of chunks from multiple files| H{Proof of Storage}
H -->|8. Verify Merkle root| I{Compare with original file Merkle roots}
I -->|9. Successful verification| J((Pinned File Available))
I -->|10. Failed verification| K((Pinned File Unavailable))
C -->|11. File Retrieval| L(Node Operator)
L -->|12. Prove file availability| M{File Retrieval Verification}
M -->|13. Successful verification| N((File Retrieved))
M -->|14. Failed verification| O((File Retrieval Failed))
Beta Was this translation helpful? Give feedback.
All reactions