Simplified Airdrop Distribution for Linea Tokens
Distribution Overview:
The total supply of 1 billion Linea tokens is split into:
- 60% (600M) for LXP holders.
- 40% (400M) for LXP-L holders.
The tokens are distributed in two ways:
- Linear Distribution: Proportional to the points (LXP/LXP-L).
- Tiered Distribution: Based on percentile rankings.
Multipliers are added based on eligibility:
- Token Age Multiplier: Older wallets get bigger bonuses.
- Other Multipliers:
- 0.1 ETH TVL or more: x1.2
- Liquidity ≥ 0.05 ETH: x1.5
- Special NFTs (Froglet, eFrog, etc.): Additional bonuses.
Example Calculation
Wallet Information:
- LXP: 3,750 points (Top 40%, Tier 6).
- LXP-L: 120,000 points (Top 20%).
- Token Age: Received LXP on first distribution → Multiplier x3.
- NFT: None.
- TVL ≥ 0.1 ETH → Multiplier = x1.2.
- Liquidity ≥ 0.05 ETH → Multiplier = x1.5.
Step 1: Linear Allocation
For LXP:
The linear share of 600M tokens:
java
Copier le code
LXP Linear = Wallet Points × (600,000,000 ÷ Total LXP Points)
LXP Linear = 3,750 × (600,000,000 ÷ 2,483,437,268) ≈ 905 tokens
For LXP-L:
The linear share of 400M tokens:
java
Copier le code
LXP-L Linear = Wallet Points × (400,000,000 ÷ Total LXP-L Points)
LXP-L Linear = 120,000 × (400,000,000 ÷ 121,630,000,000) ≈ 395 tokens
Step 2: Tiered Allocation
For LXP (Tier 6 – Top 40%):
Tier 6 receives 5% of 600M tokens:
java
Copier le code
Tier 6 Tokens = 600,000,000 × 0.05 = 30,000,000 tokens
Number of Wallets in Tier 6 ≈ 251,550
Base Allocation per Wallet = 30,000,000 ÷ 251,550 ≈ 119 tokens
For LXP-L (Top 20%):
Top 20% receives 7% of 400M tokens:
java
Copier le code
Tier Tokens = 400,000,000 × 0.07 = 28,000,000 tokens
Number of Wallets in Top 20% ≈ 407,224
Base Allocation per Wallet = 28,000,000 ÷ 407,224 ≈ 68.8 tokens
Step 3: Apply Multipliers
Multipliers:
- Token Age Multiplier: x3
- TVL Multiplier: x1.2
- Liquidity Multiplier: x1.5
Combined Multiplier:
java
Copier le code
Total Multiplier = 3 × 1.2 × 1.5 = 5.4
Step 4: Final Allocation
LXP Total:
java
Copier le code
LXP Final Tokens = (LXP Linear + Tier 6 Base) × Total Multiplier
LXP Final Tokens = (905 + 119) × 5.4 ≈ 5,519 tokens
LXP-L Total:
java
Copier le code
LXP-L Final Tokens = (LXP-L Linear + Tier Base) × Total Multiplier
LXP-L Final Tokens = (395 + 68.8) × 5.4 ≈ 2,497 tokens
Final Total Allocation:
java
Copier le code
Total Tokens = LXP Final Tokens + LXP-L Final Tokens
Total Tokens = 5,519 + 2,497 ≈ 8,016 tokens
Final Result for This Wallet
For a wallet with 3,750 LXP, 120,000 LXP-L, received early tokens, no NFT, and eligible liquidity:
Total Reward = ~8,016 Linea Tokens.
Conclusion
Using this linear distribution + tiered system + multipliers, the airdrop ensures:
- Proportional fairness based on LXP/LXP-L points.
- Increased rewards for the most active wallets meeting secondary criteria.
- Precise control of the total supply (1 billion tokens).