Token Issuance and Deflation Design

5.1 Initial Distribution#

LAMA tokens are minted with a finite supply S\mathcal{S} and allocated among stakeholders as follows:

AllocationPercentagePurpose
Public sale40%Provide liquidity and allow broad participation
Trader incentives20%Reward early agent publishers and seed the staking pool
Ecosystem & grants15%Fund oracle providers, audits and development
Team & advisors15%Vest over multiple years to align long-term incentives
Reserve & treasury10%Provide liquidity for buybacks and emergency measures

5.2 Emission and Inflation Control#

No further tokens are minted beyond the initial supply. Instead, a portion of performance penalties (slashed LAMA) is permanently burned, reducing the circulating supply.

Additionally, the protocol may allocate part of its revenue to buy LAMA on the open market and burn it, exerting deflationary pressure.

A small emission rate for oracle rewards may be introduced, but this must be offset by burns to maintain a net deflationary stance.

5.3 Buy-Back and Burn Mechanism#

To create long-term scarcity, the protocol dedicates a fraction γ\gamma of its fee income to repurchase LAMA from secondary markets and burn it.

Assuming annual fee revenue FF and market price pp, the annual burn amount is:

Burnannual=γFp\text{Burn}_{\text{annual}} = \frac{\gamma \cdot F}{p}

Combined with slashed tokens, this buy-back accelerates deflation as the platform grows.

Deflation Flywheel#

More Agents → More Settlements → More Fees
                                      │
                                      ↓
                    Buy-Back & Burn ← Protocol Revenue
                         │
                         ↓
                  Reduced Supply → Increased Scarcity
                         │
                         ↓
                  Higher Token Value → More Traders Attracted

5.4 LAMA Token Utility#

Use CaseDescription
StakingTraders stake LAMA to register agents and back their performance
InvestingInvestors deposit LAMA to enter Long/Short positions
GovernanceToken holders vote on protocol parameters (Phase 3)
Fee paymentSettlement fees are denominated in LAMA

5.5 Agent Token (ERC-1155)#

Each registered agent has a pair of ERC-1155 tokens representing Long and Short positions:

Long Token ID=agentId×2,Short Token ID=agentId×2+1\text{Long Token ID} = \text{agentId} \times 2, \quad \text{Short Token ID} = \text{agentId} \times 2 + 1
PropertyDescription
Non-transferable (initially)Positions are locked until settlement
Fungible per agent/directionAll Long tokens for the same agent are identical
Burned on claimAfter claiming returns, Agent Tokens are burned

In a future release, Agent Tokens may become transferable, enabling pre-settlement position trading and secondary market price discovery.

5.6 Entry Fee Structure#

LAMA employs a 1% entry fee on all investments into Long/Short pools. This fee serves multiple purposes:

Mechanism#

When an investor deposits DD LAMA into a pool:

fee=D×0.01,netInvestment=Dfee=D×0.99\text{fee} = D \times 0.01, \quad \text{netInvestment} = D - \text{fee} = D \times 0.99

The full deposit DD (including fee) is added to the pool's totalAssets, but the investor receives shares based only on netInvestment:

newShares=netInvestmentsharePrice,sharePrice=totalAssetstotalShares\text{newShares} = \frac{\text{netInvestment}}{\text{sharePrice}}, \quad \text{sharePrice} = \frac{\text{totalAssets}}{\text{totalShares}}

ERC-4626 Style Share-Based Accounting#

The pool uses a share-based accounting model inspired by ERC-4626 vaults:

VariableDescription
totalAssetsTotal LAMA in the pool (including all fees)
totalSharesTotal shares outstanding
sharePricetotalAssets / totalShares — increases with each deposit

Fee Distribution#

The 1% fee is not extracted from the pool. Instead, it remains in totalAssets while no new shares are minted for it. This causes the share price to increase, effectively distributing the fee to all existing shareholders proportionally.

Anti-Churn Property#

If an investor deposits and immediately withdraws:

  1. Deposits 1,000 LAMA → receives shares for 990 LAMA
  2. Share price increases slightly due to fee
  3. Withdraws all shares → receives ~990 LAMA
  4. Net loss: ~10 LAMA (the 1% entry fee)

This mechanism discourages high-frequency churning while rewarding long-term participants.