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
4. When users registers for any of the roles, chain will check if there is any data that needs hosting and if there is at least one hoster, one encoder and one attestor, then 'New Pin' is emitted
5. new event is emitted (NewPin) where encoder and hoster are notified about what feed needs hosting/encoding
const[encoderID,hosterID,datID]=event.data
6. we pair hoster and encoder: encoder compresses data and passes them over to hoster
7. when encoder finishes its job, it notifies the chain (registerEncoding)
constargs=[hosterID,datID,start,end]// if more ranges, send same tx for each range separately
8. when hoster gets all the data, it also notifies the chain (confirmHosting)
awaitAPI.tx.datVerify.confirmHosting(datID,index)// index = HostedMap.encoded[index] (get encoderID and then loop through to get position in the array)
11. Challenge event is emitted where hoster is notified about the challenges
const[hosterKey,datKey]=event.data// hostedMap => see which chunks are hosted by this hoster for this key (Rust API line 317)
12. Hoster submits proof to the chain
//challengeID no longer exists -> use [datID, chunk] directlyawaitAPI.tx.datVerify.submitProof(challengeID,[])//challenge ID is parsed
13. If challenges are successful, chain emits new event: AttestPhase
const[challengeID,expectedAttestors]=event.dataconstattestorIDs=JSON.parse(expectedAttestors).expected_attestors// change proposal:// could we just pass an array of attestors instead of an objectconst[challengeID,attestorIDs]=event.data
14. random attester is selected to go grab data from the swarm
currently we just hardcode the response, so no attester actually goes to the swarm
15. Attester reports back to the chain (submitAttestation)
functiongetAttestation(){constlocation=0constlatency=0return[location,latency]}constattestation=awaitgetAttestation()//challengeID no longer exists -> use [hosterId, datID, chunk] directlyconstsubmit=awaitAPI.tx.datVerify.submitAttestation(challengeID,attestation)
The text was updated successfully, but these errors were encountered:
@todo
1. publisher registers new data
we get merkle root like this https://pastebin.com/QH7egWUX and then submit it to the chain
2. chain emits
SomethingStored
event3. after the event is emitted, users can register for different roles: encoder, hoster, attestor
4. When users registers for any of the roles, chain will check if there is any data that needs hosting and if there is at least one hoster, one encoder and one attestor, then 'New Pin' is emitted
5. new event is emitted (
NewPin
) where encoder and hoster are notified about what feed needs hosting/encoding6. we pair hoster and encoder: encoder compresses data and passes them over to hoster
7. when encoder finishes its job, it notifies the chain (registerEncoding)
8. when hoster gets all the data, it also notifies the chain (confirmHosting)
9. chain emits event:
HostingStarted
10. Publisher can now submitChallenge
11.
Challenge
event is emitted where hoster is notified about the challenges12. Hoster submits proof to the chain
13. If challenges are successful, chain emits new event:
AttestPhase
14. random attester is selected to go grab data from the swarm
15. Attester reports back to the chain (submitAttestation)
The text was updated successfully, but these errors were encountered: