2021-11-01 16:34:01 +01:00

110 lines
2.5 KiB
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./Contracts.sol";
import "./Proofs.sol";
contract Storage is Contracts, Proofs {
function newContract(
uint _duration,
uint _size,
bytes32 _contentHash,
uint _proofPeriod,
uint _proofTimeout,
bytes32 _nonce,
uint _price,
address _host,
uint _bidExpiry,
bytes memory requestSignature,
bytes memory bidSignature
)
public
{
bytes32 id = _newContract(
_duration,
_size,
_contentHash,
_proofPeriod,
_proofTimeout,
_nonce,
_price,
_host,
_bidExpiry,
requestSignature,
bidSignature
);
_expectProofs(id, _proofPeriod, _proofTimeout);
}
function duration(bytes32 contractId) public view returns (uint) {
return _duration(contractId);
}
function size(bytes32 contractId) public view returns (uint) {
return _size(contractId);
}
function contentHash(bytes32 contractId) public view returns (bytes32) {
return _contentHash(contractId);
}
function price(bytes32 contractId) public view returns (uint) {
return _price(contractId);
}
function host(bytes32 contractId) public view returns (address) {
return _host(contractId);
}
function proofPeriod(bytes32 contractId) public view returns (uint) {
return _period(contractId);
}
function proofTimeout(bytes32 contractId) public view returns (uint) {
return _timeout(contractId);
}
function missingProofs(bytes32 contractId) public view returns (uint) {
return _missed(contractId);
}
// Check whether a proof is required at the time of the block with the
// specified block number. A proof has to be submitted within the proof
// timeout for it to be valid. Whether a proof is required is determined
// randomly, but on average it is once every proof period.
function isProofRequired(
bytes32 contractId,
uint blocknumber
)
public view
returns (bool)
{
return _isProofRequired(contractId, blocknumber);
}
function isProofTimedOut(
bytes32 contractId,
uint blocknumber
)
public view
returns (bool)
{
return _isProofTimedOut(contractId, blocknumber);
}
function submitProof(
bytes32 contractId,
uint blocknumber,
bool proof
)
public
{
_submitProof(contractId, blocknumber, proof);
}
function markProofAsMissing(bytes32 contractId, uint blocknumber) public {
_markProofAsMissing(contractId, blocknumber);
}
}