Bytecode verified via sibling
This contract shares identical runtime bytecode with Exchange (0x1c523996...) which has been verified through compiler archaeology.
Owner-controlled custody contract with Deposit/Transfer/IcapTransfer events.
Key Facts
Description
Owner-controlled custody contract with Deposit/Transfer/IcapTransfer events. Functions include fallback (AnonymousDeposit), deposit(bytes32), transfer(bytes32,address,uint256), icapTransfer(...). Verified with soljson-v0.1.1+commit.6ff4cd6 and optimizer OFF.
Source Verified
Backfilled from awesome-ethereum-proofs PR #32.
Heuristic Analysis
The following characteristics were detected through bytecode analysis and may not be accurate.
Frontier Era
The initial release of Ethereum. A bare-bones implementation for technical users.
Bytecode Overview
Verified Source Available
Source verified through compiler archaeology and exact bytecode matching.
View Verification ProofShow source code (Solidity)
contract token { function deposit(bytes32 _id) {} }
contract Exchange {
address owner;
event AnonymousDeposit(address indexed _from, uint256 _value);
event Deposit(address indexed _from, bytes32 indexed _id, uint256 _value);
event Transfer(bytes32 indexed _from, address indexed _to, uint256 _value);
event IcapTransfer(bytes32 indexed _from, address indexed _to, bytes32 _id, uint256 _value);
function Exchange() {
owner = msg.sender;
}
function () {
AnonymousDeposit(msg.sender, msg.value);
}
function deposit(bytes32 _id) {
Deposit(msg.sender, _id, msg.value);
}
function transfer(bytes32 _from, address _to, uint256 _value) {
if (msg.sender == owner) {
_to.send(_value);
Transfer(_from, _to, _value);
}
}
function icapTransfer(bytes32 _from, address _to, bytes32 _id, uint256 _value) {
if (msg.sender == owner) {
token(_to).deposit.value(_value)(_id);
IcapTransfer(_from, _to, _id, _value);
}
}
}External Links
Related contracts
token
Same eraAn early ERC-20-like token deployed in Ethereum's first week, built directly from the example in the official Ethereum Frontier Guide documentation.
0x8374f5...46609aAugust 7, 2015token
Same eraA second deployment of the FirstCoin tutorial token by the same creator, 11 blocks after the original — both derived from the official Ethereum Frontier Guide e
0x3b4446...295f52August 7, 2015Contract 0xd958b5...ec4c9f
Same eraEthereum.org tutorial Coin contract deployed on Frontier day 1. Contains a bug: balance(address) ignores its argument and returns msg.sender balance.
0xd958b5...ec4c9fAugust 7, 2015NameRegistry
Same eraFixed-fee name registry from Day 9 of Ethereum (Aug 8, 2015). Reserve names for 69 ETH, resolve addresses. A precursor to ENS.
0xa1a111...b8af00August 8, 2015token
Same eraEarly tutorial-derived coin contract compiled with Solidity v0.1.1, deployed 9 days after Ethereum Frontier launch.
0x3c401b...da1634August 8, 2015token
Same eraTutorial-derived coin contract (Solidity v0.1.1), one of multiple token instances deployed by the same address on Aug 8, 2015.
0x33e986...395d13August 8, 2015