Back to Home

Godlcoin(GOD)

Token
0x7a3140be7864...b3023a7d2449
FrontierContract #11KExact Bytecode MatchEdit this contract
Deployed February 28, 2016 (10 years ago)Block 1,074,263

An ERC20-like token with mint, freeze, and transfer functionality based on the ethereum.org advanced token tutorial. 1,000,000 GOD tokens with 0 decimals.

Frontier EraVerified Source

Historical Significance

One of many tokens deployed from the ethereum.org token tutorial during the Frontier era. Demonstrates how the official Ethereum documentation served as a template for early token creation, months before the ERC20 standard was formalized. The deployer went on to create Etheroll, showing an early developer's progression from tutorial experiments to production dApps.

Context

Deployed in February 2016 during the Frontier era, compiled with Solidity v0.1.7 with optimizer enabled. The ethereum.org token tutorial was the primary resource for creating tokens at this time, and many early tokens share its exact code patterns including the centralized minter, freeze functionality, and overflow checks.

Token Information
Token Name
Godlcoin
Symbol
GOD
Decimals
0
Key Facts
Deployment Block
1,074,263
Deployment Date
Feb 28, 2016, 05:51 PM
Code Size
1.8 KB
Gas at Deploy
431,791

Description

A token contract deployed on Feb 28, 2016, based on the ethereum.org advanced token tutorial's 'Improved Coin' section. Implements the tutorial's centralized administrator pattern with an issuer address that can mint new tokens and freeze accounts.

The contract supports standard token transfers with balance and overflow checks, plus a frozen account check to prevent transfers from frozen addresses. The issuer can create new tokens via mintToken() and freeze or unfreeze any account via freezeAccount(). Unlike the full tutorial version, this contract omits the 'owned' base contract, allowance/approval system, and buy/sell functions, keeping only the core token with admin controls.

Deployed with constructor args: 1,000,000 initial supply, 'Godlcoin' name, 'GOD' symbol, 0 decimals, and no central minter (defaults to deployer as issuer). The transfer function uses a compound condition with short-circuit evaluation for its three safety checks, matching the tutorial's inline style.

The deployer (0xFA5C91c9b4D0BebF79C1963BA13c760fF83Fde09) was highly active during the Frontier era, deploying over 150 contracts between blocks 947,520 and 1,074,263 (late January to February 2016). Many of these appear to be iterative experiments across multiple contract types. The same deployer later deployed Etheroll, one of Ethereum's first on-chain dice games.

Source Verified

SolidityExact bytecode match(1,870 bytes)
Compiler: soljson

Exact bytecode match (init + runtime). 489 bytes init, 1093 bytes runtime, 288 bytes constructor args. Based on ethereum.org advanced token tutorial.

Heuristic Analysis

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

Detected Type: Token
Has ERC-20-like patterns

Bytecode Overview

Opcodes1,870
Unique Opcodes158
Jump Instructions76
Storage Operations45

External Links