Arbitrator Interface¶
/**
* @authors: [@ferittuncer, @hbarcelos]
* @reviewers: [@remedcu]
* @auditors: []
* @bounties: []
* @deployments: []
* SPDX-License-Identifier: MIT
*/
pragma solidity ^0.8.0;
import "./IArbitrable.sol";
/**
* @title Arbitrator
* Arbitrator abstract contract.
* When developing arbitrator contracts we need to:
* - Define the functions for dispute creation (createDispute) and appeal (appeal). Don't forget to store the arbitrated contract and the disputeID (which should be unique, may nbDisputes).
* - Define the functions for cost display (arbitrationCost and appealCost).
* - Allow giving rulings. For this a function must call arbitrable.rule(disputeID, ruling).
*/
interface IArbitrator {
enum DisputeStatus {
Waiting,
Appealable,
Solved
}
/**
* @dev To be emitted when a dispute is created.
* @param _disputeID ID of the dispute.
* @param _arbitrable The contract which created the dispute.
*/
event DisputeCreation(uint256 indexed _disputeID, IArbitrable indexed _arbitrable);
/**
* @dev To be emitted when a dispute can be appealed.
* @param _disputeID ID of the dispute.
* @param _arbitrable The contract which created the dispute.
*/
event AppealPossible(uint256 indexed _disputeID, IArbitrable indexed _arbitrable);
/**
* @dev To be emitted when the current ruling is appealed.
* @param _disputeID ID of the dispute.
* @param _arbitrable The contract which created the dispute.
*/
event AppealDecision(uint256 indexed _disputeID, IArbitrable indexed _arbitrable);
/**
* @dev Create a dispute. Must be called by the arbitrable contract.
* Must be paid at least arbitrationCost(_extraData).
* @param _choices Amount of choices the arbitrator can make in this dispute.
* @param _extraData Can be used to give additional info on the dispute to be created.
* @return disputeID ID of the dispute created.
*/
function createDispute(uint256 _choices, bytes calldata _extraData) external payable returns (uint256 disputeID);
/**
* @dev Compute the cost of arbitration. It is recommended not to increase it often, as it can be highly time and gas consuming for the arbitrated contracts to cope with fee augmentation.
* @param _extraData Can be used to give additional info on the dispute to be created.
* @return cost Amount to be paid.
*/
function arbitrationCost(bytes calldata _extraData) external view returns (uint256 cost);
/**
* @dev Appeal a ruling. Note that it has to be called before the arbitrator contract calls rule.
* @param _disputeID ID of the dispute to be appealed.
* @param _extraData Can be used to give extra info on the appeal.
*/
function appeal(uint256 _disputeID, bytes calldata _extraData) external payable;
/**
* @dev Compute the cost of appeal. It is recommended not to increase it often, as it can be higly time and gas consuming for the arbitrated contracts to cope with fee augmentation.
* @param _disputeID ID of the dispute to be appealed.
* @param _extraData Can be used to give additional info on the dispute to be created.
* @return cost Amount to be paid.
*/
function appealCost(uint256 _disputeID, bytes calldata _extraData) external view returns (uint256 cost);
/**
* @dev Compute the start and end of the dispute's current or next appeal period, if possible. If not known or appeal is impossible: should return (0, 0).
* @param _disputeID ID of the dispute.
* @return start The start of the period.
* @return end The end of the period.
*/
function appealPeriod(uint256 _disputeID) external view returns (uint256 start, uint256 end);
/**
* @dev Return the status of a dispute.
* @param _disputeID ID of the dispute to rule.
* @return status The status of the dispute.
*/
function disputeStatus(uint256 _disputeID) external view returns (DisputeStatus status);
/**
* @dev Return the current ruling of a dispute. This is useful for parties to know if they should appeal.
* @param _disputeID ID of the dispute.
* @return ruling The ruling which has been given or the one which will be given if there is no appeal.
*/
function currentRuling(uint256 _disputeID) external view returns (uint256 ruling);
}
Dispute Status¶
There are three statuses that the function disputeStatus
can return; Waiting
, Appealable
and Solved
:
- A dispute is in
Waiting
state when it arises (gets created, bycreateDispute
function). - Is in
Appealable
state when it got a ruling and theArbitrator
allows to appeal it. When theArbitrator
allows to appeal, it often gives a time period to do so. If a dispute is not appealed within that time,disputeStatus
should returnSolved
. - Is in
Solved
state when it got a ruling and the ruling is final. Note that this doesn’t implyrule
function on theArbitrable
has been called to enforce (execute) the ruling. It means that the decision on the dispute is final and to be executed.
Events¶
There are three events to be emitted:
DisputeCreation
when a dispute gets created bycreateDispute
function.AppealPossible
when appealing a dispute becomes possible.AppealDecision
when current ruling is appealed.
Functions¶
And seven functions:
createDispute
should create a dispute with given number of possible_choices
for decisions._extraData
is for passing any extra information for any kind of custom handling. While callingcreateDispute
, caller has to pass required arbitration fee, otherwisecreateDispute
should revert.createDispute
should be called by anArbitrable
. Lastly, it should emitDisputeCreation
event.arbitrationCost
should return the arbitration cost that is required to create a dispute, in weis.appeal
should appeal a dispute and should require the caller to pass the required appeal fee.appeal
should be called by anArbitrable
and should emit theAppealDecision
event.appealCost
should return the appeal fee that is required to appeal, in weis.appealPeriod
should return the time window, in(start, end)
format, for appealing a ruling, if known in advance. If not known or appeal is impossible: should return(0, 0)
.disputeStatus
should return the status of dispute;Waiting
,Appealable
orSolved
.currentRuling
should return the current ruling of a dispute.