Back to Home

Contract 0xdae5047277a2...2817b9b85c33

Unknown
0xdae5047277a2...2817b9b85c33
FrontierExact Bytecode Match
Deployed August 7, 2015 (10 years ago)Block 48,827

PrimeChecker contract. Identical bytecode to 0x66d796e7 -- smallestfactor(uint256) returns the smallest prime factor, or n if prime. Deployed Aug 7, 2015 by the...

Key Facts

Deployment Block
48,827
Deployment Date
Aug 7, 2015, 04:06 PM
Code Size
171.0 B
Gas at Deploy
61,181
Transactions by Year
20261

Source Verified

SolidityExact bytecode match(171 bytes)
Compiler: v0.1.1+

154 bytes. Identical bytecode to PrimeChecker 0x66d796e7. soljson v0.1.1, optimizer OFF. smallestfactor(uint256) returns first factor or n if prime. Same deployer (0x6B4971F5) also deployed PrimeChecker on Aug 7 2015.

Heuristic Analysis

The following characteristics were detected through bytecode analysis and may not be accurate.

Detected Type: Unknown

Frontier Era

The initial release of Ethereum. A bare-bones implementation for technical users.

Block span: 01,149,999
July 30, 2015March 14, 2016

Bytecode Overview

Opcodes171
Unique Opcodes40
Jump Instructions12
Storage Operations2

Verified Source Available

Source verified through compiler archaeology and exact bytecode matching.

View Verification Proof
Show source code (Solidity)
contract PrimeChecker {
    function smallestfactor(uint256 n) returns (uint256) {
        for (uint256 i = 2; i * i <= n; i++) {
            if (n % i == 0) return i;
        }
        return n;
    }
}

External Links