dagger-contracts/contracts/Marketplace.sol

168 lines
4.7 KiB
Solidity
Raw Normal View History

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./Collateral.sol";
import "./Proofs.sol";
contract Marketplace is Collateral, Proofs {
uint256 public immutable collateral;
MarketplaceFunds private funds;
mapping(bytes32 => Request) private requests;
2022-07-19 09:33:54 +00:00
mapping(bytes32 => Slot) private slots;
constructor(
IERC20 _token,
uint256 _collateral,
uint256 _proofPeriod,
uint256 _proofTimeout,
uint8 _proofDowntime
)
Collateral(_token)
Proofs(_proofPeriod, _proofTimeout, _proofDowntime)
marketplaceInvariant
{
collateral = _collateral;
}
function requestStorage(Request calldata request)
public
marketplaceInvariant
{
2022-02-17 10:00:18 +00:00
require(request.client == msg.sender, "Invalid client address");
2022-02-21 11:55:00 +00:00
bytes32 id = keccak256(abi.encode(request));
require(requests[id].client == address(0), "Request already exists");
2022-02-21 11:55:00 +00:00
requests[id] = request;
2022-02-21 11:55:00 +00:00
_createLock(id, request.expiry);
2022-02-21 11:55:00 +00:00
funds.received += request.ask.reward;
funds.balance += request.ask.reward;
transferFrom(msg.sender, request.ask.reward);
2022-02-21 11:55:00 +00:00
emit StorageRequested(id, request.ask);
}
2022-07-19 09:33:54 +00:00
function fillSlot(
bytes32 requestId,
uint256 slotIndex,
bytes calldata proof
) public marketplaceInvariant {
Request storage request = requests[requestId];
require(request.client != address(0), "Unknown request");
require(request.expiry > block.timestamp, "Request expired");
require(slotIndex < request.content.erasure.totalNodes, "Invalid slot");
bytes32 slotId = keccak256(abi.encode(requestId, slotIndex));
Slot storage slot = slots[slotId];
require(slot.host == address(0), "Slot already filled");
require(balanceOf(msg.sender) >= collateral, "Insufficient collateral");
_lock(msg.sender, requestId);
_expectProofs(slotId, request.ask.proofProbability, request.ask.duration);
_submitProof(slotId, proof);
slot.host = msg.sender;
emit SlotFilled(requestId, slotIndex, slotId);
}
2022-07-19 15:09:35 +00:00
function payoutSlot(bytes32 requestId, uint256 slotIndex)
public
marketplaceInvariant
{
bytes32 slotId = keccak256(abi.encode(requestId, slotIndex));
require(block.timestamp > proofEnd(slotId), "Contract not ended");
Slot storage slot = slots[slotId];
require(slot.host != address(0), "Slot empty");
require(!slot.hostPaid, "Already paid");
uint256 amount = requests[requestId].ask.reward;
funds.sent += amount;
funds.balance -= amount;
slot.hostPaid = true;
require(token.transfer(slot.host, amount), "Payment failed");
}
2022-07-20 08:10:22 +00:00
function _host(bytes32 slotId) internal view returns (address) {
return slots[slotId].host;
2022-02-21 10:31:37 +00:00
}
function _request(bytes32 id) internal view returns (Request storage) {
return requests[id];
}
function proofPeriod() public view returns (uint256) {
return _period();
}
function proofTimeout() public view returns (uint256) {
return _timeout();
}
function proofEnd(bytes32 contractId) public view returns (uint256) {
return _end(contractId);
}
struct Request {
2022-02-17 10:00:18 +00:00
address client;
Ask ask;
Content content;
uint256 expiry; // time at which this request expires
bytes32 nonce; // random nonce to differentiate between similar requests
}
struct Ask {
uint256 size; // size of requested storage in number of bytes
uint256 duration; // how long content should be stored (in seconds)
uint256 proofProbability; // how often storage proofs are required
uint256 reward; // reward that the client will pay (in number of tokens)
}
struct Content {
string cid; // content id (if part of a larger set, the chunk cid)
Erasure erasure; // Erasure coding attributes
PoR por; // Proof of Retrievability parameters
}
struct Erasure {
uint64 totalChunks; // the total number of chunks in the larger data set
uint64 totalNodes; // the total number of nodes that store the data set
uint64 nodeId; // index of this node in the list of total nodes
}
struct PoR {
bytes u; // parameters u_1..u_s
bytes publicKey; // public key
bytes name; // random name
}
2022-07-19 09:33:54 +00:00
struct Slot {
address host;
2022-07-19 15:09:35 +00:00
bool hostPaid;
2022-07-19 09:33:54 +00:00
}
event StorageRequested(bytes32 requestId, Ask ask);
event RequestFulfilled(bytes32 indexed requestId);
2022-07-19 09:33:54 +00:00
event SlotFilled(
bytes32 indexed requestId,
uint256 indexed slotIndex,
bytes32 indexed slotId
);
modifier marketplaceInvariant() {
MarketplaceFunds memory oldFunds = funds;
_;
assert(funds.received >= oldFunds.received);
assert(funds.sent >= oldFunds.sent);
assert(funds.received == funds.balance + funds.sent);
}
struct MarketplaceFunds {
uint256 balance;
uint256 received;
uint256 sent;
}
}