-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3fb348a
commit 787102e
Showing
2 changed files
with
71 additions
and
7 deletions.
There are no files selected for viewing
67 changes: 67 additions & 0 deletions
67
contracts/standard/arbitration/TwoPartyArbitrableEscrowPayment.sol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
pragma solidity ^0.4.24; | ||
|
||
import "./Arbitrable.sol"; | ||
|
||
contract TwoPartyArbitrableEscrowPayment is Arbitrable { | ||
address public sender; | ||
address public receiver; | ||
uint public value; | ||
bytes public extraData; | ||
Arbitrator public arbitrator; | ||
uint public disputeID; | ||
bool public disputed; | ||
bool public appealed; | ||
bool public executed; | ||
uint public createdAt; | ||
uint public timeOut; | ||
|
||
modifier onlySenderOrReceiver{ | ||
require(msg.sender == sender || msg.sender == receiver, "Can only be called by the sender or the receiver."); | ||
_; | ||
} | ||
|
||
constructor(address _receiver, bytes _extraData, Arbitrator _arbitrator, uint _timeOut, string _metaEvidence) public payable { | ||
sender = msg.sender; | ||
receiver = _receiver; | ||
value = msg.value; | ||
extraData = _extraData; | ||
arbitrator = _arbitrator; | ||
createdAt = now; | ||
timeOut = _timeOut; | ||
emit MetaEvidence(0, _metaEvidence); | ||
} | ||
|
||
function raiseDispute() public payable onlySenderOrReceiver { | ||
disputeID = arbitrator.createDispute.value(msg.value)(2, extraData); | ||
emit Dispute(arbitrator, disputeID, 0); | ||
} | ||
|
||
function submitEvidence(string _evidence) public onlySenderOrReceiver { | ||
require(disputed, "The payment has to be disputed."); | ||
require(!appealed, "The payment can not be appealed."); | ||
emit Evidence(arbitrator, disputeID, msg.sender, _evidence); | ||
} | ||
|
||
function appeal() public payable onlySenderOrReceiver { | ||
arbitrator.appeal.value(msg.value)(disputeID, extraData); | ||
if (!appealed) appealed = true; | ||
} | ||
|
||
function executePayment() public onlySenderOrReceiver { | ||
require(now - createdAt > timeOut, "The timeout time has not passed yet."); | ||
require(!disputed, "The payment is disputed."); | ||
require(!executed, "The payment was already executed."); | ||
executed = true; | ||
receiver.send(value); | ||
} | ||
|
||
function executeRuling(uint _disputeID, uint _ruling) internal { | ||
require(disputed, "The payment is not disputed."); | ||
require(_disputeID == disputeID, "Wrong dispute ID."); | ||
require(!executed, "The payment was already executed."); | ||
executed = true; | ||
if (_ruling == 2) receiver.send(value); | ||
else sender.send(value); | ||
emit Ruling(arbitrator, disputeID, _ruling); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters