Home
Learn

How It Works

Tokenomics

Roadmap

Humanitarian Impact Fund

FAQ

Products

Wallet

DEX

LaunchPad

Token Factory

Vaults

Company

About

Contact

Buy JIL
JIL Token LBP

JIL Token LBP -
Fair Price Discovery on JIL L1

The JIL Liquidity Bootstrapping Pool uses dynamic weight-shifting to ensure fair price discovery. No front-running, no bots, no whales - just transparent, market-driven pricing on our native L1.

Coming Soon
--
Days
--
Hours
--
Minutes
--
Seconds
100M
JIL Tokens
72h
Duration
$10M
Hard Cap
$0.09
Starting Price

01Executive Summary

The JIL Liquidity Bootstrapping Pool (LBP) is the primary distribution mechanism for the JIL token on the native JIL settlement protocol. Through a weighted constant-product automated market maker, the LBP enables transparent, market-driven price discovery for 100,000,000 JIL tokens (20% of the 500M total supply) over a 72-hour window.

Unlike traditional token sales with fixed prices or Dutch auctions with predetermined floors, the LBP uses dynamic weight shifting to create natural downward price pressure. The token weight begins at 96% and linearly decreases to 50% over the sale duration. This mechanism inherently discourages front-running, bot activity, and whale accumulation, producing a final price that genuinely reflects market demand.

Key Parameters: 100M JIL tokens | $500K USDC initial reserve | 96% → 50% weight shift | 72-hour duration | $10M hard cap | $500K per-wallet limit | 2% swap fee | KYC required | Anti-bot protection (10 blocks)

Fair Price Discovery

Weight shifting creates natural price decline, ensuring early premium diminishes over time and final price reflects true demand.

Anti-Whale Protection

$500K per-wallet cap and KYC verification ensure broad distribution across verified participants.

Native L1 Execution

Runs natively on JIL L1 with 1.5-second finality, eliminating Ethereum gas wars and MEV extraction.

02LBP Mechanics & Mathematics

The JIL LBP employs a weighted constant-product automated market maker. Unlike standard AMMs (where both assets have equal 50/50 weight), the LBP dynamically adjusts the weights of the token and reserve asset over time. This weight adjustment is the core mechanism that drives fair price discovery.

Weighted Constant Product Formula

The invariant maintained by the pool is:

R_token^W_token * R_reserve^W_reserve = k (constant)

Where R_token and R_reserve are the pool balances, and W_token and W_reserve are the respective weights that sum to 1.0.

Spot Price Calculation

The instantaneous price of JIL in USDC at any given moment is derived from:

price = (R_reserve / W_reserve) / (R_token / W_token)
      = (R_reserve * W_token) / (R_token * W_reserve)

Starting Price Example

R_reserve = $500,000 USDC    W_token  = 0.96 (96%)
R_token   = 100,000,000 JIL  W_reserve = 0.04 (4%)

price = ($500,000 * 0.96) / (100,000,000 * 0.04)
      = $480,000 / $4,000,000
      = $0.12 per JIL
Weight Shifting Effect: As W_token decreases from 0.96 to 0.50 (and W_reserve increases from 0.04 to 0.50), the denominator grows relative to the numerator, creating natural downward price pressure even without any selling. This is what makes LBPs fundamentally different from standard AMM pools.

Swap Output Calculation

When a buyer contributes amount_in USDC (after the 2% fee), the JIL tokens received are:

fee = amount_in * 0.02
amount_after_fee = amount_in - fee
tokens_out = R_token * amount_after_fee * W_token
           / (R_reserve * W_reserve + amount_after_fee * W_token)

After each swap, the pool reserves update: R_reserve increases by amount_after_fee and R_token decreases by tokens_out.

Weight Progression (Linear Curve)

The JIL LBP uses a linear weight curve. At any point during the 72-hour period:

progress = elapsed_time / total_duration   (0.0 to 1.0)
W_token  = start_weight - (start_weight - end_weight) * progress
         = 0.96 - (0.96 - 0.50) * progress
         = 0.96 - 0.46 * progress
W_reserve = 1.0 - W_token
TimeProgressToken WeightReserve WeightPrice (no trades)
0h (Start)0%96.0%4.0%$0.1200
12h16.7%88.3%11.7%$0.0378
24h33.3%80.7%19.3%$0.0209
36h50.0%73.0%27.0%$0.0135
48h66.7%65.3%34.7%$0.0094
60h83.3%57.7%42.3%$0.0068
72h (End)100%50.0%50.0%$0.0050

Note: These prices assume zero purchases. Actual buying pressure will counteract the weight-driven price decline, establishing a market equilibrium.

03Supported Curve Types

The JIL AMM v5 engine supports four weight curve types. Each produces a different price trajectory over the sale period. The JIL token LBP uses the Linear curve for predictable, steady price decline.

Linear (Selected)

progress = t - Weight decreases at a constant rate. Most predictable and intuitive for participants. Used by the JIL LBP.

Exponential

progress = t² - Weight decreases slowly at first, then accelerates. Favors early buyers with a longer premium window.

Logarithmic

progress = log(1 + 9t) / log(10) - Fast initial decline that slows over time. Quickly reaches fair value then stabilizes.

Step

progress = floor(t × 4) / 4 - Weight changes in discrete 25% steps. Creates four distinct pricing tiers during the sale.

Try the Simulator: Experiment with all four curve types, different weight ranges, and custom parameters using the JIL LBP Simulator. Pre-configured templates for $5M, $7.5M, and $10M raises are available.

04Anti-Manipulation Protections

The JIL LBP incorporates multiple layers of protection against common token sale attack vectors. These protections are enforced at the smart contract level and cannot be circumvented.

ProtectionMechanismParameter
Anti-Bot BlocksPurchases are rejected during the first N blocks after LBP start, preventing automated sniping bots from front-running human participants.10 blocks (~15 seconds)
Per-Wallet CapEach verified wallet address has a maximum cumulative purchase limit, preventing whale accumulation.$500,000 USDC
Total Raise Hard CapThe LBP automatically closes when total raised reaches the cap, protecting against over-subscription.$10,000,000 USDC
KYC VerificationAll participants must complete Know Your Customer verification before purchasing, ensuring regulatory compliance and preventing Sybil attacks.Required
Weight BoundsPool weights are clamped to [0.01, 0.99] to prevent mathematical edge cases and price manipulation at extremes.1% - 99%
Native L1 ExecutionRunning on JIL L1 eliminates Ethereum MEV extraction, sandwich attacks, and gas auction manipulation.1.5s finality

05Technical Architecture

The JIL LBP runs as a native application on the JIL settlement protocol, with the core pricing engine implemented in Rust and the API layer in TypeScript.

System Components

AMM v5 Weighted Pool (Rust)

Core pricing engine implementing weighted constant-product math, curve calculations, swap execution, and anti-manipulation enforcement. Located in crates/ammv5-core/src/weighted_pool.rs.

Launchpad API (TypeScript)

REST API serving real-time price quotes, pool statistics, purchase execution, and 200-point price history charts. Endpoints at /v1/lbp/auctions/:id/*.

Kafka Event Stream

All LBP events (purchases, price updates, pool creation/completion) are published to the jil.events Kafka topic for downstream analytics and auditing.

PostgreSQL Storage

Pool configuration and purchase history persisted in lbp_weighted_pools and lbp_purchases tables with full audit trail.

API Endpoints

MethodEndpointDescription
GET/v1/lbp/auctions/:id/priceCurrent price, token/reserve weights, pool progress
GET/v1/lbp/auctions/:id/statsTotal raised, tokens sold, participants, average price
GET/v1/lbp/auctions/:id/chart200-point price history time series
POST/v1/lbp/auctions/:id/participateExecute purchase at current LBP price

06Risk Considerations

Participation in the JIL LBP involves risk. Prospective participants should carefully consider the following factors before purchasing.

Price Volatility

The LBP price fluctuates continuously based on weight changes and participant activity. The price you see at quote time may differ from the executed price if other transactions are processed first.

No Guaranteed Floor

Unlike fixed-price sales, there is no predetermined minimum price. If demand is insufficient, the price will continue to decline as weights shift.

Timing Risk

Buying too early means paying a higher premium. Buying too late risks the hard cap being reached or the sale ending. There is no universally optimal entry point.

Regulatory Risk

Cryptocurrency tokens are subject to evolving regulatory frameworks. JIL tokens may be classified differently across jurisdictions. KYC verification is required for all participants.

Important: This is not financial advice. JIL tokens should only be purchased by individuals who understand the risks of cryptocurrency and weighted AMM price dynamics. Do not invest more than you can afford to lose.

JIL / USDC

Waiting
$0.0900
Current LBP Price
Token
96%
Reserve
4%
Time Remaining --:--:--
Progress 0%

Price History

200 data points
Price (USDC)
Volume

Participate in LBP

Connect your JIL L1 wallet to begin

07 - How It Works

Three Simple Steps

The JIL LBP uses dynamic weight-shifting: the token weight starts high and decreases over 72 hours, creating natural downward price pressure that rewards patient buyers and prevents front-running.

Step 1
💳

Connect Wallet

Connect your JIL L1 wallet. If you don't have one yet, create one instantly through the JIL Wallet app with MPC 2-of-3 self-custody.

Step 2
💰

Enter Amount

Specify how much USDC you want to contribute. You'll see a live quote of JIL tokens you'll receive at the current price. Max $50K per wallet.

Step 3

Receive JIL

Confirm your transaction. JIL tokens are transferred to your wallet instantly on JIL L1 with 1.5-second finality. No vesting, no lockups.

08 - Pool Statistics

Live Pool Stats

Real-time metrics from the JIL LBP smart contract on JIL L1.

Total Raised
$0
of $10,000,000 cap
Tokens Sold
0
of 100,000,000 JIL
Unique Participants
0
verified wallets
Average Price
$0.0000
weighted average
Current Token Weight
96%
shifting to 50% over 72h
Reserve Balance
$0
USDC in pool
09 - Tokenomics

500M JIL Token Distribution

100M JIL (20% of total supply) allocated to the LBP for fair, transparent distribution.

Total Supply: 500,000,000 JIL

LBP allocation highlighted below

LBP (20%)
Community (10%)
Validators (20%)
Team (15%)
Treasury (15%)
Liquidity (10%)
Humanitarian (10%)
20%
LBP Fair Launch
100,000,000 JIL
10%
Community & Ecosystem
50,000,000 JIL
20%
Validator Operations
100,000,000 JIL
15%
Team & Advisors
75,000,000 JIL
15%
Treasury & Operations
75,000,000 JIL
10%
Liquidity Provision
50,000,000 JIL
10%
Humanitarian Fund
50,000,000 JIL
13
Jurisdictions
$250K+
Protection
1.5s
Finality
14/20
BFT Quorum
2%
Fee
10 - FAQ

Frequently Asked Questions

Everything you need to know about the JIL Token LBP.

What is a Liquidity Bootstrapping Pool (LBP)?

An LBP is a token distribution mechanism that uses dynamic weight-shifting to create fair price discovery. Unlike fixed-price sales, the token weight starts high (96%) and decreases over time to a target weight (50%), creating natural downward price pressure. This means early buyers pay a premium that decreases over time, discouraging front-running and rewarding patient participants who wait for a price they consider fair.

How does fair price discovery work?

The LBP uses a bonding curve formula where the price is determined by the ratio of token weight to reserve weight, combined with actual supply and demand. As the token weight decreases from 96% to 50% over 72 hours, the price naturally trends downward unless buying pressure counteracts it. This creates a market-driven equilibrium where the final price reflects genuine demand rather than artificial scarcity or FOMO-driven spikes.

What happens if I buy early vs. late?

Early buyers pay a higher price because the token weight is high, making each token relatively more expensive. As the weight shifts downward, the price decreases. However, if strong demand pushes the price up faster than the weight shift pulls it down, waiting too long may result in a higher price. The optimal strategy is to buy when you believe the price fairly reflects the token's value, rather than trying to time the absolute bottom.

What is the maximum I can purchase?

Each wallet has a maximum purchase limit of $50,000 USDC. This whale protection mechanism ensures broad distribution and prevents any single participant from accumulating an outsized position. The total hard cap for the LBP is $10,000,000 USDC across all participants.

Where do my tokens go?

JIL tokens are transferred directly to your JIL L1 wallet with 1.5-second finality. There is no vesting period and no lockup. Once you purchase, the tokens are immediately available in your wallet for trading on the JIL DEX, staking, governance participation, or any other on-chain activity. Your wallet uses MPC 2-of-3 self-custody, meaning you always hold your own keys.

What are the fees?

The LBP charges a 2% swap fee (200 basis points) on each transaction, consistent with the standard JIL DEX fee structure. This fee is deducted from your USDC input before calculating JIL output. Fees are split 50% to liquidity providers, 40% to JIL operations, and 10% to the humanitarian fund. There are no hidden fees, no gas wars (JIL L1 has predictable gas costs of 60/30/10 gwei for urgent/standard/economy), and no additional platform charges.

Is KYC required to participate?

Yes. All participants must complete KYC (Know Your Customer) verification before purchasing JIL tokens through the LBP. This requirement serves dual purposes: regulatory compliance across multiple jurisdictions, and Sybil resistance to prevent one entity from creating multiple wallets to circumvent per-wallet caps. KYC is processed through the JIL Wallet onboarding flow.

What currencies are accepted?

The LBP accepts USDC as the reserve currency. USDC is a fully-backed, regulated stablecoin that provides a stable unit of account for price discovery. Participants must fund their JIL L1 wallet with USDC before participating. Future LBPs may support additional reserve currencies.

What happens if the hard cap is reached early?

When total raised reaches the $10,000,000 USDC hard cap, the LBP automatically closes regardless of remaining time. No additional purchases will be accepted. This protects participants from over-dilution and ensures the token launch stays within its planned parameters. Any pending transactions at the moment of cap closure will be rejected and funds returned.

Can I sell JIL during the LBP?

The LBP is a one-directional sale - you can only purchase JIL with USDC during the LBP period. However, once you receive your JIL tokens, they are immediately available for trading on the JIL DEX (AMM v5). There is no vesting period or lockup. You can trade, stake, or transfer your tokens as soon as they hit your wallet.

What happens after the LBP ends?

After the 72-hour LBP concludes (or upon reaching the hard cap), the remaining USDC reserve and any unsold JIL tokens are used to seed a permanent 50/50 JIL/USDC liquidity pool on the JIL DEX. This provides ongoing trading liquidity for all JIL holders. The LBP effectively bootstraps both token distribution and DEX liquidity in a single event.

Connected Services

Your LBP launches into the full JIL ecosystem. Tokens instantly tradable on the DEX.

💳

Wallet

MPC 2-of-3 self-custody with $250K+ protection coverage. Participate in LBP launches.

📈

DEX & AMM v5

Post-LBP trading on the dual-lane DEX. Batch auctions + RFQ for institutions.

🚀

Launch Configurator

Full launch setup tool. IDO, Dutch auction, fixed price - all compliant.

Build & Launch MemeCoins

Create your token before launching the LBP. Zero code, fully compliant.

12Complete LBP Parameters

The following table contains every configurable parameter for the JIL token LBP. All parameters are enforced at the smart contract level.

ParameterValueNotes
Pool IDjil_usdc_lbp_100mUnique identifier
Trading PairJIL / USDCNative L1 assets
Token Supply100,000,000 JIL20% of 500M total
Initial Reserve$500,000 USDCSeed liquidity
Start Weight (Token)96%High initial token weight
End Weight (Token)50%Equal weights at conclusion
Duration72 hours3 calendar days
Curve TypeLinearConstant rate of weight change
Swap Fee200 bps (2%)Standard JIL DEX fee
Per-Wallet Cap$500,000 USDCAnti-whale protection
Total Raise Cap$10,000,000 USDCHard cap, auto-closes
Anti-Bot Blocks10 blocks~15 seconds grace period
KYC RequiredYesRegulatory compliance
Block Time1.5 secondsJIL L1 native
FinalityInstant (single-slot)No confirmation wait