Back to Home

Lambo(LAMBO)

other
0xae3350fdec38...0ccfe0973a21
ByzantiumExact Bytecode MatchEdit this contract
Deployed April 12, 2018 (8 years ago)Block 5,428,754

April 2018 'Lambo' ERC-20 with permissionless mint() — one free token per address. mintMore() gives 10 LAMBO for 1 wei (effectively free).

Byzantium EraVerified Source

Historical Significance

A small joke / faucet-style ERC-20 from the spring-2018 era of casual experimental tokens. Notable not for trading volume but as a near-minimal example of a permissionless-mint ERC-20 with a paid 'mintMore' side door — and as a paired deployment: this is one of two near-identical Lambo contracts deployed within an hour of each other on April 12, 2018 by two unrelated addresses, differing only in the payment threshold and bonus size in mintMore.

Context

The pair. Two Lambo contracts were deployed on Ethereum on April 12, 2018, within roughly an hour of each other (blocks 5428442 and 5428754). They share the same source modulo two lines in mintMore: the payment threshold (1 finney vs 1 wei) and the per-call bonus (3 LAMBO vs 10 LAMBO). The selectors, ERC-20 surface, and storage layout are otherwise identical. The other deployment is at 0xd0b0f77c2454b28b925b7430a71df0ebf8a150ac.

This deployment. Compiled with solc v0.4.21+commit.dfe3193c, optimizer OFF. Deployer 0x183febd8828a9ac6c70c0e27fbf441b93004fc05 is an EOA with no ENS and no public tags; it has deployed other small contracts in the same era but none are clearly linked to a public project. mintMore collects 1 wei per call and pays it through to the contract owner with owner.transfer(msg.value).

Token Information
Token Name
Lambo
Symbol
LAMBO
Decimals
18
Key Facts
Deployment Block
5,428,754
Deployment Date
Apr 12, 2018, 06:36 PM
Code Size
4.1 KB
Gas at Deploy
1,353,128
Transactions by Year
201812
20211
20261

Description

Lambo is a tiny ERC-20 token contract deployed on Ethereum on April 12, 2018. Anyone can call mint(address) and receive 1 LAMBO (18 decimals), with a hard constraint of one free mint per address — require(balanceOf[who] == 0) blocks a second free mint to the same address. A separate mintMore(address) function is payable and lets the caller buy more: this deployment requires 1 wei per call and credits 10 LAMBO per call to the recipient, forwarding the payment to the contract owner. A burn(uint256) function lets any holder send tokens to the zero address.

The rest of the surface is a standard ERC-20: transfer, transferFrom, approve, allowance, balanceOf, plus the name/symbol/decimals metadata (Lambo / LAMBO / 18).

On-chain activity. As of the most recent block read, this deployment has recorded 73 mint events (from-address 0x0 Transfers) distributed across 70 unique recipients, with a total minted supply of 127 LAMBO. Active period: April 12, 2018 → 2026-05-16.

Source Verified

SolidityExact bytecode match(4,197 bytes)
Compiler: 0.4.21+

Source byte-for-byte verified against on-chain bytecode (only the swarm metadata hash differs). solc v0.4.21+commit.dfe3193c, optimizer OFF. Already verified on Etherscan and Sourcify; matches independently.. Optimizer: OFF

Heuristic Analysis

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

Detected Type: other

Bytecode Overview

Opcodes4,197
Unique Opcodes174
Jump Instructions135
Storage Operations51

External Links