Bytecode verified via sibling
This contract shares identical runtime bytecode with Private Lottery (0xd53096b3...) which has been verified through compiler archaeology.
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.
Key Facts
Source Verified
Serpent get(string) oracle fetcher, sibling of 0x7e7f6373. Compiled with ethereum/serpent @ f0b4128; exact creation+runtime match (404 bytes). Beneficiary 0xb3cd4c25; source orders the send before the return (vs return-then-send in the other two instances).
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 (Serpent)
# Submitted by EthereumHistory (ethereumhistory.com)
event GetRequest(url:string, sender:address, id:uint256, value:uint256)
def get(url:string):
if msg.value >= 7000000000000000:
self.storage[0] = sha3(block.prevhash + sha3(url:str) + msg.sender + msg.value * 2^160)
log(type=GetRequest, url, msg.sender, self.storage[0], msg.value)
send(0xb3cd4c2512402047ef4ddeb1ab9f8df400ce2d3f, self.balance)
return(self.storage[0])