2021-10-12 14:59:34 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
2022-02-22 08:25:42 +00:00
|
|
|
import "./Marketplace.sol";
|
2021-11-01 11:30:35 +00:00
|
|
|
import "./Proofs.sol";
|
2022-02-15 16:54:19 +00:00
|
|
|
import "./Collateral.sol";
|
2021-10-12 14:59:34 +00:00
|
|
|
|
2022-02-22 08:25:42 +00:00
|
|
|
contract Storage is Collateral, Marketplace, Proofs {
|
2022-02-15 16:54:19 +00:00
|
|
|
uint256 public collateralAmount;
|
2022-02-09 13:17:23 +00:00
|
|
|
uint256 public slashMisses;
|
|
|
|
uint256 public slashPercentage;
|
2021-11-02 10:19:52 +00:00
|
|
|
|
2022-02-09 13:17:23 +00:00
|
|
|
mapping(bytes32 => bool) private finished;
|
2021-11-04 10:18:05 +00:00
|
|
|
|
2021-11-04 13:19:58 +00:00
|
|
|
constructor(
|
|
|
|
IERC20 token,
|
2022-02-15 16:54:19 +00:00
|
|
|
uint256 _collateralAmount,
|
2022-02-09 13:17:23 +00:00
|
|
|
uint256 _slashMisses,
|
|
|
|
uint256 _slashPercentage
|
2022-02-22 08:25:42 +00:00
|
|
|
) Marketplace(token, _collateralAmount) {
|
2022-02-15 16:54:19 +00:00
|
|
|
collateralAmount = _collateralAmount;
|
2021-11-04 13:19:58 +00:00
|
|
|
slashMisses = _slashMisses;
|
|
|
|
slashPercentage = _slashPercentage;
|
2021-11-02 11:45:09 +00:00
|
|
|
}
|
2021-10-20 10:07:35 +00:00
|
|
|
|
2022-02-22 08:25:42 +00:00
|
|
|
function startContract(bytes32 id) public {
|
|
|
|
Offer storage offer = _offer(id);
|
|
|
|
require(msg.sender == offer.host, "Only host can call this function");
|
|
|
|
Request storage request = _request(offer.requestId);
|
|
|
|
_expectProofs(
|
|
|
|
id,
|
|
|
|
request.proofPeriod,
|
|
|
|
request.proofTimeout,
|
|
|
|
request.duration
|
2021-10-14 12:49:29 +00:00
|
|
|
);
|
2021-11-04 08:49:07 +00:00
|
|
|
}
|
|
|
|
|
2021-11-04 09:19:23 +00:00
|
|
|
function finishContract(bytes32 id) public {
|
|
|
|
require(block.number > proofEnd(id), "Contract has not ended yet");
|
2021-11-04 10:18:05 +00:00
|
|
|
require(!finished[id], "Contract already finished");
|
|
|
|
finished[id] = true;
|
2022-02-22 08:25:42 +00:00
|
|
|
Offer storage offer = _offer(id);
|
|
|
|
require(token.transfer(offer.host, offer.price), "Payment failed");
|
2021-11-04 08:49:07 +00:00
|
|
|
}
|
|
|
|
|
2022-02-09 13:17:23 +00:00
|
|
|
function proofEnd(bytes32 contractId) public view returns (uint256) {
|
2021-11-04 08:49:07 +00:00
|
|
|
return _end(contractId);
|
2021-11-01 15:17:42 +00:00
|
|
|
}
|
|
|
|
|
2022-02-09 13:17:23 +00:00
|
|
|
function missingProofs(bytes32 contractId) public view returns (uint256) {
|
2021-11-01 15:17:42 +00:00
|
|
|
return _missed(contractId);
|
2021-10-20 10:07:35 +00:00
|
|
|
}
|
|
|
|
|
2022-02-09 13:17:23 +00:00
|
|
|
function isProofRequired(bytes32 contractId, uint256 blocknumber)
|
|
|
|
public
|
|
|
|
view
|
2021-10-20 10:07:35 +00:00
|
|
|
returns (bool)
|
|
|
|
{
|
2021-11-01 11:30:35 +00:00
|
|
|
return _isProofRequired(contractId, blocknumber);
|
2021-10-14 10:37:14 +00:00
|
|
|
}
|
2021-10-18 12:55:59 +00:00
|
|
|
|
2022-02-09 13:17:23 +00:00
|
|
|
function isProofTimedOut(bytes32 contractId, uint256 blocknumber)
|
|
|
|
public
|
|
|
|
view
|
2021-10-20 10:07:35 +00:00
|
|
|
returns (bool)
|
|
|
|
{
|
2021-11-01 11:30:35 +00:00
|
|
|
return _isProofTimedOut(contractId, blocknumber);
|
2021-10-19 07:37:03 +00:00
|
|
|
}
|
|
|
|
|
2021-10-20 10:07:35 +00:00
|
|
|
function submitProof(
|
2021-10-20 12:28:05 +00:00
|
|
|
bytes32 contractId,
|
2022-02-09 13:17:23 +00:00
|
|
|
uint256 blocknumber,
|
2021-10-20 10:07:35 +00:00
|
|
|
bool proof
|
2022-02-09 13:17:23 +00:00
|
|
|
) public {
|
2021-11-01 11:30:35 +00:00
|
|
|
_submitProof(contractId, blocknumber, proof);
|
2021-10-18 12:55:59 +00:00
|
|
|
}
|
2021-10-19 07:37:03 +00:00
|
|
|
|
2022-02-09 13:17:23 +00:00
|
|
|
function markProofAsMissing(bytes32 contractId, uint256 blocknumber) public {
|
2021-11-01 11:30:35 +00:00
|
|
|
_markProofAsMissing(contractId, blocknumber);
|
2021-11-04 13:19:58 +00:00
|
|
|
if (_missed(contractId) % slashMisses == 0) {
|
2022-02-22 08:25:42 +00:00
|
|
|
Offer storage offer = _offer(contractId);
|
|
|
|
_slash(offer.host, slashPercentage);
|
2021-11-04 13:19:58 +00:00
|
|
|
}
|
2021-10-19 07:37:03 +00:00
|
|
|
}
|
2021-10-12 14:59:34 +00:00
|
|
|
}
|