Skip to content

Commit 75f6304

Browse files
committed
Added RAB Pragma to Arbitration Standard Contracts
1 parent b4711ba commit 75f6304

File tree

3 files changed

+21
-12
lines changed

3 files changed

+21
-12
lines changed

contracts/standard/arbitration/Arbitrable.sol

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
/**
2-
* @title Arbitrable
3-
* @author Clément Lesaege - <clement@lesaege.com>
4-
* Bug Bounties: This code hasn't undertaken a bug bounty program yet.
1+
/**
2+
* @authors: [@clesaege]
3+
* @reviewers: [@remedcu]
4+
* @auditors: []
5+
* @bounties: []
6+
* @deployments: []
57
*/
68

79
pragma solidity ^0.4.15;
810

911
import "./IArbitrable.sol";
1012

1113
/** @title Arbitrable
14+
* @author Clément Lesaege - <clement@lesaege.com>
1215
* Arbitrable abstract contract.
1316
* When developing arbitrable contracts, we need to:
1417
* -Define the action taken when a ruling is received by the contract. We should do so in executeRuling.

contracts/standard/arbitration/Arbitrator.sol

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
/**
2-
* @title Arbitrator
3-
* @author Clément Lesaege - <clement@lesaege.com>
4-
* Bug Bounties: This code hasn't undertaken a bug bounty program yet.
1+
/**
2+
* @authors: [@clesaege]
3+
* @reviewers: [@remedcu]
4+
* @auditors: []
5+
* @bounties: []
6+
* @deployments: []
57
*/
68

79
pragma solidity ^0.4.15;
810

911
import "./Arbitrable.sol";
1012

1113
/** @title Arbitrator
14+
* @author Clément Lesaege - <clement@lesaege.com>
1215
* Arbitrator abstract contract.
1316
* When developing arbitrator contracts we need to:
1417
* -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).

contracts/standard/arbitration/IArbitrable.sol

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
/**
2-
* @title IArbitrable
3-
* @author Enrique Piqueras - <enrique@kleros.io>
4-
* Bug Bounties: This code hasn't undertaken a bug bounty program yet.
1+
/**
2+
* @authors: [@epiqueras]
3+
* @reviewers: [@remedcu]
4+
* @auditors: []
5+
* @bounties: []
6+
* @deployments: []
57
*/
68

79
pragma solidity ^0.4.15;
810

911
import "./Arbitrator.sol";
1012

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

0 commit comments

Comments
 (0)