Skip to content

Commit

Permalink
feat: repair is rewarded (#1022)
Browse files Browse the repository at this point in the history
* feat: repair is rewarded

* chore: update contracts repo

* feat: proving loop handles repair case

* test: assert repair state

* chore: update contracts repo

* fix: upon unknown state of repair go to error
  • Loading branch information
AuHau authored Dec 12, 2024
1 parent d10072b commit 19af797
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 5 deletions.
5 changes: 5 additions & 0 deletions codex/contracts/market.nim
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ method proofTimeout*(market: OnChainMarket): Future[UInt256] {.async.} =
let config = await market.config()
return config.proofs.timeout

method repairRewardPercentage*(market: OnChainMarket): Future[uint8] {.async.} =
convertEthersError:
let config = await market.contract.configuration()
return config.collateral.repairRewardPercentage

method proofDowntime*(market: OnChainMarket): Future[uint8] {.async.} =
convertEthersError:
let config = await market.config()
Expand Down
1 change: 1 addition & 0 deletions codex/contracts/requests.nim
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ type
Failed
Paid
Cancelled
Repair

proc `==`*(x, y: Nonce): bool {.borrow.}
proc `==`*(x, y: RequestId): bool {.borrow.}
Expand Down
3 changes: 3 additions & 0 deletions codex/market.nim
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ method periodicity*(market: Market): Future[Periodicity] {.base, async.} =
method proofTimeout*(market: Market): Future[UInt256] {.base, async.} =
raiseAssert("not implemented")

method repairRewardPercentage*(market: Market): Future[uint8] {.base, async.} =
raiseAssert("not implemented")

method proofDowntime*(market: Market): Future[uint8] {.base, async.} =
raiseAssert("not implemented")

Expand Down
13 changes: 12 additions & 1 deletion codex/sales/states/filling.nim
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import pkg/stint
import ../../logutils
import ../../market
import ../statemachine
Expand Down Expand Up @@ -27,13 +28,23 @@ method onFailed*(state: SaleFilling, request: StorageRequest): ?State =
method run(state: SaleFilling, machine: Machine): Future[?State] {.async.} =
let data = SalesAgent(machine).data
let market = SalesAgent(machine).context.market
without (collateral =? data.request.?ask.?collateral):
without (fullCollateral =? data.request.?ask.?collateral):
raiseAssert "Request not set"

logScope:
requestId = data.requestId
slotIndex = data.slotIndex

let slotState = await market.slotState(slotId(data.requestId, data.slotIndex))
var collateral: Uint256

if slotState == SlotState.Repair:
# When repairing the node gets "discount" on the collateral that it needs to
let repairRewardPercentage = (await market.repairRewardPercentage).u256
collateral = fullCollateral - ((fullCollateral * repairRewardPercentage)).div(100.u256)
else:
collateral = fullCollateral

debug "Filling slot"
try:
await market.fillSlot(data.requestId, data.slotIndex, state.proof, collateral)
Expand Down
2 changes: 1 addition & 1 deletion codex/sales/states/preparing.nim
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ method run*(state: SalePreparing, machine: Machine): Future[?State] {.async.} =

let slotId = slotId(data.requestId, data.slotIndex)
let state = await market.slotState(slotId)
if state != SlotState.Free:
if state != SlotState.Free and state != SlotState.Repair:
return some State(SaleIgnored(reprocessSlot: false, returnBytes: false))

# TODO: Once implemented, check to ensure the host is allowed to fill the slot,
Expand Down
5 changes: 5 additions & 0 deletions codex/sales/states/proving.nim
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ logScope:
topics = "marketplace sales proving"

type
SlotFreedError* = object of CatchableError
SlotNotFilledError* = object of CatchableError
SaleProving* = ref object of ErrorHandlingState
loop: Future[void]
Expand Down Expand Up @@ -82,6 +83,10 @@ proc proveLoop(
of SlotState.Cancelled:
debug "Slot reached cancelled state"
# do nothing, let onCancelled callback take care of it
of SlotState.Repair:
warn "Slot was forcible freed"
let message = "Slot was forcible freed and host was removed from its hosting"
raise newException(SlotFreedError, message)
of SlotState.Failed:
debug "Slot reached failed state"
# do nothing, let onFailed callback take care of it
Expand Down
7 changes: 6 additions & 1 deletion codex/sales/states/unknown.nim
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import ./filled
import ./finished
import ./failed
import ./errored
import ./proving
import ./cancelled
import ./payout

Expand Down Expand Up @@ -38,7 +39,7 @@ method run*(state: SaleUnknown, machine: Machine): Future[?State] {.async.} =
case slotState
of SlotState.Free:
let error = newException(UnexpectedSlotError,
"slot state on chain should not be 'free'")
"Slot state on chain should not be 'free'")
return some State(SaleErrored(error: error))
of SlotState.Filled:
return some State(SaleFilled())
Expand All @@ -50,3 +51,7 @@ method run*(state: SaleUnknown, machine: Machine): Future[?State] {.async.} =
return some State(SaleFailed())
of SlotState.Cancelled:
return some State(SaleCancelled())
of SlotState.Repair:
let error = newException(SlotFreedError,
"Slot was forcible freed and host was removed from its hosting")
return some State(SaleErrored(error: error))
3 changes: 3 additions & 0 deletions tests/codex/helpers/mockmarket.nim
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ method proofTimeout*(market: MockMarket): Future[UInt256] {.async.} =
method proofDowntime*(market: MockMarket): Future[uint8] {.async.} =
return market.config.proofs.downtime

method repairRewardPercentage*(market: MockMarket): Future[uint8] {.async.} =
return market.config.collateral.repairRewardPercentage

method getPointer*(market: MockMarket, slotId: SlotId): Future[uint8] {.async.} =
return market.proofPointer

Expand Down
2 changes: 1 addition & 1 deletion tests/contracts/testMarket.nim
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ ethersuite "On-Chain Market":
let slotId = request.slotId(slotIndex.u256)
while true:
let slotState = await marketplace.slotState(slotId)
if slotState == SlotState.Free:
if slotState == SlotState.Repair or slotState == SlotState.Failed:
break
await waitUntilProofRequired(slotId)
let missingPeriod = periodicity.periodOf(await ethProvider.currentTime())
Expand Down
2 changes: 1 addition & 1 deletion vendor/codex-contracts-eth

0 comments on commit 19af797

Please sign in to comment.