Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 67c21d7

Browse files
committed
escrow
1 parent af9725c commit 67c21d7

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

escrow/escrow.sol

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// SPDX-License-Identifier: MIT
2+
pragma solidity 0.8.4;
3+
4+
contract Escrow {
5+
address public depositor;
6+
address public beneficiary;
7+
address public arbiter;
8+
9+
constructor(address _arbiter, address _beneficiary) {
10+
arbiter=_arbiter;
11+
beneficiary=_beneficiary;
12+
depositor = msg.sender;
13+
}
14+
}

0 commit comments

Comments
 (0)