Back to HomeDeployer Vitalik Buterin(0x1db343...fa6ee6) Deployment Block 3,046,612 Deployment Date Jan 23, 2017, 03:00 AM Code Size 731.0 B
Deployed January 23, 2017 (9 years ago)Block 3,046,612
This contract is not yet documented
Know something about this contract? Switch to the History tab and suggest an edit to help preserve Ethereum history.
Spurious Dragon EraVerified Source
Key Facts
Transactions by Year
20173
20233
Spurious Dragon Era
Continued DoS protection. State trie clearing.
Block span: 2,675,000 — 4,369,999
November 22, 2016 — October 16, 2017
Bytecode Overview
Opcodes731
Unique Opcodes88
Jump Instructions19
Storage Operations7
Verified Source Available
This contract has verified source code on Etherscan.
Show source code (Solidity)
{
"language": "Solidity",
"sources": {
"Escrow.sol": {
"content": "contract Escrow {\r\n address buyer;\r\n address seller;\r\n address arbitrator;\r\n\r\n function Escrow() payable {\r\n seller = 0x5ed8cee6b63b1c6afce3ad7c92f4fd7e1b8fad9f;\r\n buyer = msg.sender;\r\n arbitrator = 0xabad6ec946eff02b22e4050b3209da87380b3cbd;\r\n }\r\n \r\n function finalize() {\r\n if (msg.sender == buyer || msg.sender == arbitrator)\r\n seller.send(this.balance);\r\n }\r\n \r\n function refund() {\r\n if (msg.sender == seller || msg.sender == arbitrator)\r\n buyer.send(this.balance);\r\n }\r\n}"
}
},
"settings": {
"compilationTarget": {
"Escrow.sol": "Escrow"
},
"libraries": {},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
}
}