Fair Mode

BNBN adheres to a fair launch mechanism based on "average distribution," ensuring no pre-mining or reservations to maintain the integrity of the issuance process. To significantly reduce the impact of scripted inscriptions and reward deployers for their contributions to community development, BNBN allows deployers to autonomously set mint fees. If a deployer opts to set a fee for inscription minting, Deployers only need to pay for deployment services to the BNBN Foundation, and the deployed services are billed with tBNBN and then destroyed by the Foundation.

The total supply of inscriptions will be uniformly distributed across each settlement interval within the Mint Duration, based on the number of interacting addresses within each interval. This configuration ensures that every user has an equal opportunity to participate.

Name
Required
Descrption

p

yes

protocol name,bsc20

op

yes

operation, deploy

tick

yes

tick name

max

yes

total supply for the tick

mspan

yes

Mint duration, a positive integer, supports 0 hours.

sm

yes

Settlement minute

mcount

yes

Maximum minting times per address

cost

yes

cost for per mint pay BNB, supports free

// Deploy
{
    "p":"bsc20",
    "op":"deploy",
    "tick":"tick name",
    "max":"210000000000",
    "mspan":"48",
    "sm":"5",
    "mcount":"100",
    "cost":"5000000000000000"
}

Mint

Name
Required
Descrption

p

yes

protocol name, bsc20

op

yes

operation, mint

tick

yes

tick name

//Mint
{
    "p":"bsc20",
    "op":"mint",
    "tick":"tick name"
}

Last updated