Overview

Fun.overdive.xyz is a service that allows you to create a basic A.i Agent launchpad without any coding knowledge. The launchpad runs as a bonding curve and is listed on the DEX upon graduation.
CPMM Formula with offsets
(x + dx + α)(y - dy + β) = (x + α)(y + β)
Where:
x = native token (ETH) reserve
y = project token reserve
α = native offset
β = token offset
dx = change in native token amount
dy = change in project token amount
SPOT PRICE
P = dx/dy = (x + α)/(y + β)
effectiveReserveIn = reserveIn + nativeOffset // (x + α)
effectiveReserveOut = reserveOut + tokenOffset // (y + β)
// Calculate output amount from input
amountOut = (amountIn * effectiveReserveOut) / (effectiveReserveIn + amountIn)
// Calculate input amount from desired output
amountIn = (effectiveReserveIn * amountOut) / (effectiveReserveOut - amountOut)
FEE Calculation
fee = amountIn * swapFee / BASIS_POINTS
actualInput = amountIn - fee
Where:
BASIS_POINTS = 10,000
swapFee = 3%

Normal Case
When a user creates a project through the A.I Agent Factory Contract, ERC20 tokens (total supply: 1M) are issued, with 80% allocated for bonding curve sales and 20% for DEX listing pool. Upon successful completion of the bonding curve, DEX listing proceeds.

NFT A.i Agent Case
The launch pool begins with the project creator staking their NFT, receiving tokens equivalent to the NFT's market value. The same token distribution applies (total supply: 1M, 80% for bonding curve, 20% for DEX listing). If the bonding curve value falls below the initial collateral value, a safety mechanism automatically sells the NFT in the market and redeposits the proceeds into the curve. Upon successful bonding curve completion, the NFT still in Contract Address and transforms into an A.i Agent,
providing an innovative diamond hand strategy that allows NFT holders to achieve 20x+ returns without harming the community.
Last updated