This page explains the exact smart contract code of LIGONE (LIG1)
in plain language. Every rule shown here comes directly from the deployed Solidity contract.
/*
LIGONE (LIG1) – FINAL, IMMUTABLE
Ownerless by design.
No admin, no pause, no setters.
*/
DE:
Dieser Contract hat keinen Besitzer, keinen Admin und keine Sonderfunktionen.
Nach dem Deployment kann niemand Regeln ändern, pausieren oder eingreifen.
Es gibt keinen versteckten Notfall-Schalter.
EN:
This contract has no owner, no admin and no special control functions.
After deployment, nobody can change rules, pause trading or interfere.
There is no emergency switch.
2. Feste Token-Daten / Fixed token data
string public constant name = "LIGONE";
string public constant symbol = "LIG1";
uint8 public constant decimals = 18;
uint256 public constant TOTAL_SUPPLY = 1_000_000_000 * 1e18;
DE:
Name, Symbol, Dezimalstellen und Gesamtmenge sind fest im Code definiert.
Es existieren exakt 1 Milliarde LIG1 – nicht mehr, nicht weniger.
Neue Tokens können technisch nicht erzeugt werden.
EN:
Name, symbol, decimals and total supply are hard-coded.
Exactly 1 billion LIG1 exist. No additional tokens can ever be created.
3. Alle Tokens existieren von Anfang an / No minting
DE:
Der Contract fragt direkt die Uniswap-Factory ab,
um das offizielle Handelspaar zu erkennen.
Dadurch weiß er automatisch, ob ein Transfer ein Kauf,
ein Verkauf oder nur ein normaler Wallet-Transfer ist.
EN:
The contract queries the Uniswap factory directly
to detect the official trading pair.
This allows it to automatically distinguish buys, sells and normal transfers.