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
2 changes: 1 addition & 1 deletion contracts/standard/arbitration/Linguo.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @authors: [@unknownunknown1]
* @reviewers: [@ferittuncer*, @clesaege*, @satello*, @hbarcelos, @mtsalenc]
* @reviewers: [@ferittuncer*, @clesaege*, @satello*, @hbarcelos, @mtsalenc, @remedcu]
* @auditors: []
* @bounties: []
* @deployments: []
Expand Down
2 changes: 1 addition & 1 deletion contracts/standard/arbitration/LinguoToken.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @authors: [@unknownunknown1]
* @reviewers: []
* @reviewers: [@remedcu]
* @auditors: []
* @bounties: []
* @deployments: []
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/**
* @authors: [@n1c01a5, @hellwolf, @satello]
* @reviewers: [@ferittuncer, @unknownunknown1, @mtsalenc, @clesaege]
* @reviewers: [@ferittuncer, @unknownunknown1, @mtsalenc, @clesaege, @remedcu]
* @auditors: []
* @bounties: []
* @deployments: []
* @deployments: [ https://etherscan.io/address/0xc25a0b9681abf6f090aed71a8c08fb564b41dab6 ]
* @tools: [MythX]
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ contract MultipleArbitrableTokenTransactionWithFee is IArbitrable {
Status status;
}

address public feeRecipient; // Address which receives a % of receiver payment.
uint public feeRecipientBasisPoint; // The % of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
address public feeRecipient; // Address which receives a share of receiver payment.
uint public feeRecipientBasisPoint; // The share of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
Transaction[] public transactions;
Arbitrator public arbitrator; // Address of the arbitrator contract.
bytes public arbitratorExtraData; // Extra data to set up the arbitration.
Expand Down Expand Up @@ -109,8 +109,8 @@ contract MultipleArbitrableTokenTransactionWithFee is IArbitrable {
/** @dev Constructor.
* @param _arbitrator The arbitrator of the contract.
* @param _arbitratorExtraData Extra data for the arbitrator.
* @param _feeRecipient Address which receives a % of receiver payment.
* @param _feeRecipientBasisPoint The % of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
* @param _feeRecipient Address which receives a share of receiver payment.
* @param _feeRecipientBasisPoint The share of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
* @param _feeTimeout Arbitration fee timeout for the parties.
*/
constructor (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/**
* @authors: [@eburgos, @n1c01a5]
* @reviewers: [@unknownunknown1, @clesaege*, @ferittuncer]
* @reviewers: [@unknownunknown1, @clesaege*, @ferittuncer, @remedcu]
* @auditors: []
* @bounties: []
* @deployments: []
* @deployments: [ https://etherscan.io/address/0x0d67440946949FE293B45c52eFD8A9b3d51e2522 ]
* @tools: [MythX]
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ contract MultipleArbitrableTransactionWithFee is IArbitrable {
Status status;
}

address public feeRecipient; // Address which receives a % of receiver payment.
uint public feeRecipientBasisPoint; // The % of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
address public feeRecipient; // Address which receives a share of receiver payment.
uint public feeRecipientBasisPoint; // The share of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
Transaction[] public transactions;
bytes public arbitratorExtraData; // Extra data to set up the arbitration.
Arbitrator public arbitrator; // Address of the arbitrator contract.
Expand Down Expand Up @@ -99,8 +99,8 @@ contract MultipleArbitrableTransactionWithFee is IArbitrable {
/** @dev Constructor.
* @param _arbitrator The arbitrator of the contract.
* @param _arbitratorExtraData Extra data for the arbitrator.
* @param _feeRecipient Address which receives a % of receiver payment.
* @param _feeRecipientBasisPoint The % of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
* @param _feeRecipient Address which receives a share of receiver payment.
* @param _feeRecipientBasisPoint The share of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
* @param _feeTimeout Arbitration fee timeout for the parties.
*/
constructor (
Expand Down
4 changes: 2 additions & 2 deletions contracts/standard/proxy/RealitioArbitratorProxy.sol
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/**
* https://contributing.kleros.io/smart-contract-workflow
* @reviewers: [@clesaege, @unknownunknown1]
* @auditors: []
* @auditors: [@remedcu]
* @bounties: []
* @deployments: []
* @deployments: [ https://etherscan.io/address/0xd47f72a2d1d0e91b0ec5e5f5d02b2dc26d00a14d ]
* @tools: [MythX]
*/

Expand Down