Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions contracts/standard/arbitration/Arbitrable.sol
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
/**
* @title Arbitrable
* @author Clément Lesaege - <clement@lesaege.com>
* Bug Bounties: This code hasn't undertaken a bug bounty program yet.
/**
* @authors: [@clesaege]
* @reviewers: [@remedcu]
* @auditors: []
* @bounties: []
* @deployments: []
*/

pragma solidity ^0.4.15;

import "./IArbitrable.sol";

/** @title Arbitrable
* @author Clément Lesaege - <clement@lesaege.com>
* Arbitrable abstract contract.
* When developing arbitrable contracts, we need to:
* -Define the action taken when a ruling is received by the contract. We should do so in executeRuling.
Expand Down
12 changes: 8 additions & 4 deletions contracts/standard/arbitration/Arbitrator.sol
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
/**
* @title Arbitrator
* @author Clément Lesaege - <clement@lesaege.com>
* Bug Bounties: This code hasn't undertaken a bug bounty program yet.
/**
* @authors: [@clesaege]
* @reviewers: [@remedcu]
* @auditors: []
* @bounties: []
* @deployments: []
*/

pragma solidity ^0.4.15;

import "./Arbitrable.sol";

/** @title Arbitrator
* @author Clément Lesaege - <clement@lesaege.com>
* 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, use nbDisputes).
Expand Down Expand Up @@ -36,6 +39,7 @@ contract Arbitrator {

/** @dev To be raised when a dispute can be appealed.
* @param _disputeID ID of the dispute.
* @param _arbitrable The contract which created the dispute.
*/
event AppealPossible(uint indexed _disputeID, Arbitrable indexed _arbitrable);

Expand Down
11 changes: 7 additions & 4 deletions contracts/standard/arbitration/IArbitrable.sol
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
/**
* @title IArbitrable
* @author Enrique Piqueras - <enrique@kleros.io>
* Bug Bounties: This code hasn't undertaken a bug bounty program yet.
/**
* @authors: [@epiqueras]
* @reviewers: [@remedcu]
* @auditors: []
* @bounties: []
* @deployments: []
*/

pragma solidity ^0.4.15;

import "./Arbitrator.sol";

/** @title IArbitrable
* @author Enrique Piqueras - <enrique@kleros.io>
* Arbitrable interface.
* When developing arbitrable contracts, we need to:
* -Define the action taken when a ruling is received by the contract. We should do so in executeRuling.
Expand Down