Back to Home

Lambo(LAMBO)

other
0xd0b0f77c2454...f0ebf8a150ac
ByzantiumExact Bytecode MatchEdit this contract
Deployed April 12, 2018 (8 years ago)Block 5,428,442

April 2018 'Lambo' ERC-20 with permissionless mint() — one free token per address. mintMore() gives 3 more LAMBO for a 1 finney payment.

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 0xae3350fdec3819e4d2a30b97835f0ccfe0973a21.

This deployment. Compiled with solc v0.4.21+commit.dfe3193c, optimizer ON (200 runs). Deployer 0x690f34053ddc11bdff95d44bdfeb6b0b83cbab58 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 finney (0.001 ETH) 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,442
Deployment Date
Apr 12, 2018, 05:18 PM
Code Size
2.1 KB
Gas at Deploy
786,147
Transactions by Year
201830

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 finney (0.001 ETH) per call and credits 3 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 488 mint events (from-address 0x0 Transfers) distributed across 277 unique recipients, with a total minted supply of 516 LAMBO. Active period: April 12, 2018 → 2018-06-05.

Source Verified

SolidityExact bytecode match(2,139 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 ON (200 runs). Already verified on Etherscan and Sourcify; matches independently.. Optimizer: ON (200 runs)

Heuristic Analysis

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

Detected Type: other

Bytecode Overview

Opcodes2,139
Unique Opcodes177
Jump Instructions122
Storage Operations50

External Links