Back to Home
Deployed October 30, 2016 (9 years ago)Block 2,533,339
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.
Tangerine Whistle EraVerified Source
Key Facts
Transactions by Year
20232
Tangerine Whistle Era
Emergency fork to address DoS attacks. Repriced IO-heavy opcodes.
Block span: 2,463,000 — 2,674,999
October 18, 2016 — November 22, 2016
Bytecode Overview
Opcodes695
Unique Opcodes53
Jump Instructions17
Storage Operations6
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 seller;\r\n address buyer;\r\n address arbitrator;\r\n \r\n function Escrow(address _seller, address _arbitrator) {\r\n seller = _seller;\r\n arbitrator = _arbitrator;\r\n buyer = msg.sender;\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": {
"libraries": {},
"optimizer": {
"runs": 200,
"enabled": false
},
"compilationTarget": {
"Escrow.sol": "Escrow"
}
}
}