Bytecode verified via sibling
This contract shares identical runtime bytecode with Sha3 (0xb179a893...) which has been verified through compiler archaeology.
A tiny utility contract that returns the SHA3 hash of a uint256 input.
Key Facts
Description
A minimal hashing utility contract with one function that returns sha3(index). It is a byte-for-byte sibling of another same-deployer Sha3 deployment from the same day, reflecting iterative early Solidity testing.
Source Verified
Merged into awesome-ethereum-proofs and backfilled from proof repo.
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 Sha3 {
function s(uint256 index) returns (bytes32) {
return sha3(index);
}
}