mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-03 22:13:12 +00:00
Add or remove proof requirements when a request contract’s state changes. When a request sale has completed (for a slot), the host who purchased that slot now must provide regular proofs for the data they are contracted to hold. This is now enforced by adding the slotId to the HashSet of Ids for which to require proofs. When a request has been cancelled (not all slots were filled before the request expired), proofs no longer need to be provided and the slotId is removed from teh HashSet. Add `isCancelled` and `isSlotCancelled` checks to query the contract state without relying the on the state context variable in the contract. Because contract state can only be updated in a transaction, and the client withdrawing funds is responsible for changing the contract state to “Cancelled”, the `isCancelled` and `isSlotCancelled` functions were introduced to check the state regardless of whether or not the client had already withdrawn their funds.
60 lines
2.2 KiB
Nim
60 lines
2.2 KiB
Nim
import pkg/ethers
|
|
import ../storageproofs/timing/proofs
|
|
import ./storage
|
|
|
|
export proofs
|
|
|
|
type
|
|
OnChainProofs* = ref object of Proofs
|
|
storage: Storage
|
|
pollInterval*: Duration
|
|
ProofsSubscription = proofs.Subscription
|
|
EventSubscription = ethers.Subscription
|
|
OnChainProofsSubscription = ref object of ProofsSubscription
|
|
eventSubscription: EventSubscription
|
|
|
|
const DefaultPollInterval = 3.seconds
|
|
|
|
proc new*(_: type OnChainProofs, storage: Storage): OnChainProofs =
|
|
OnChainProofs(storage: storage, pollInterval: DefaultPollInterval)
|
|
|
|
method periodicity*(proofs: OnChainProofs): Future[Periodicity] {.async.} =
|
|
let period = await proofs.storage.proofPeriod()
|
|
return Periodicity(seconds: period)
|
|
|
|
method isSlotCancelled*(proofs: OnChainProofs,
|
|
id: ContractId): Future[bool] {.async.} =
|
|
return await proofs.storage.isSlotCancelled(id)
|
|
|
|
method isCancelled*(proofs: OnChainProofs,
|
|
id: array[32, byte]): Future[bool] {.async.} =
|
|
return await proofs.storage.isCancelled(id)
|
|
|
|
method isProofRequired*(proofs: OnChainProofs,
|
|
id: SlotId): Future[bool] {.async.} =
|
|
return await proofs.storage.isProofRequired(id)
|
|
|
|
method willProofBeRequired*(proofs: OnChainProofs,
|
|
id: SlotId): Future[bool] {.async.} =
|
|
return await proofs.storage.willProofBeRequired(id)
|
|
|
|
method getProofEnd*(proofs: OnChainProofs,
|
|
id: SlotId): Future[UInt256] {.async.} =
|
|
return await proofs.storage.proofEnd(id)
|
|
|
|
method submitProof*(proofs: OnChainProofs,
|
|
id: SlotId,
|
|
proof: seq[byte]) {.async.} =
|
|
await proofs.storage.submitProof(id, proof)
|
|
|
|
method subscribeProofSubmission*(proofs: OnChainProofs,
|
|
callback: OnProofSubmitted):
|
|
Future[ProofsSubscription] {.async.} =
|
|
proc onEvent(event: ProofSubmitted) {.upraises: [].} =
|
|
callback(event.id, event.proof)
|
|
let subscription = await proofs.storage.subscribe(ProofSubmitted, onEvent)
|
|
return OnChainProofsSubscription(eventSubscription: subscription)
|
|
|
|
method unsubscribe*(subscription: OnChainProofsSubscription) {.async, upraises:[].} =
|
|
await subscription.eventSubscription.unsubscribe()
|