mirror of
https://github.com/status-im/nim-dagger.git
synced 2025-01-13 08:04:28 +00:00
6df5a7cf54
- rename `ContractId` to `SlotId` - add `RequestId`, `PurchaseId`, `Nonce` types as aliases of `array[32, byte]` - rename `Proving.contracts` to `Proving.slots` - change signatures of `isSlotCancelled` and `isCancelled` to use `SlotId` and `RequestId` types, respectively. - change all references to `RequestId`, `SlotId`, and `PurchaseId`
45 lines
1.4 KiB
Nim
45 lines
1.4 KiB
Nim
import pkg/chronos
|
|
import pkg/stint
|
|
import pkg/upraises
|
|
import ./periods
|
|
from ../../contracts/requests import SlotId, RequestId
|
|
|
|
export chronos
|
|
export stint
|
|
export periods
|
|
export SlotId, RequestId
|
|
|
|
type
|
|
Proofs* = ref object of RootObj
|
|
Subscription* = ref object of RootObj
|
|
OnProofSubmitted* = proc(id: SlotId, proof: seq[byte]) {.gcsafe, upraises:[].}
|
|
|
|
method periodicity*(proofs: Proofs):
|
|
Future[Periodicity] {.base, async.} =
|
|
raiseAssert("not implemented")
|
|
|
|
method isProofRequired*(proofs: Proofs,
|
|
id: SlotId): Future[bool] {.base, async.} =
|
|
raiseAssert("not implemented")
|
|
|
|
method willProofBeRequired*(proofs: Proofs,
|
|
id: SlotId): Future[bool] {.base, async.} =
|
|
raiseAssert("not implemented")
|
|
|
|
method getProofEnd*(proofs: Proofs,
|
|
id: SlotId): Future[UInt256] {.base, async.} =
|
|
raiseAssert("not implemented")
|
|
|
|
method submitProof*(proofs: Proofs,
|
|
id: SlotId,
|
|
proof: seq[byte]) {.base, async.} =
|
|
raiseAssert("not implemented")
|
|
|
|
method subscribeProofSubmission*(proofs: Proofs,
|
|
callback: OnProofSubmitted):
|
|
Future[Subscription] {.base, async.} =
|
|
raiseAssert("not implemented")
|
|
|
|
method unsubscribe*(subscription: Subscription) {.base, async, upraises:[].} =
|
|
raiseAssert("not implemented")
|