LFG.CLUB
  • Hello there
  • Bonding Curve
    • How it works
    • Displayed Token
    • Create Token
    • Metadata
    • Buy and Sell
    • Bonding Curve Math
    • Migration
    • Slightly Deflationary
    • Locks
  • Deposit Contract
    • Deposit, Claim, and Withdraw
  • LFG Token
    • Tokenomics
  • Deployments and liquidity lock
  • Locks
  • Deployment Addresses
    • Testnet
    • All Chains
  • Links
    • Links
Powered by GitBook
On this page
  1. Bonding Curve

Create Token

First of all, apart from gas fees, launching a token ("Create Meme Coin") is free if you don't want to buy anything. It is recommended that you buy it with at least 0.05 or 0.1 ETH, but it is up to you.

To launch a token you need to provide:

An image, a name, and a token symbol (ticker).

It is recommended to also provide a description, website link, x link, and and telegram link for the newly created "Meme Coin".

Behind the scenes on the smart contract level the Create Token function takes following inputs:

function createToken(string memory name, string memory symbol, string[5] memory metad) public payable returns (uint256 id)

The description is placed in the string array on position 0, the image url on position 1, website in 2, x in 3, and telegram in 4. If your RPC supports it you get the created tokenId of the newly created token returned.

From the input a metadata hash will be produced to forever associate the provided metadata with this token.

Deactivation

Create Token can be deactivated if any exploit / bug is detected, but the function that does the deactivation can also be renounced. 100% decentralization when renounced.

Please note that deactivation only effects the creation of new tokens. Tokens that have already been created (i.e. are on the bonding curve or have migrated) are not effected in any way.

PreviousDisplayed TokenNextMetadata

Last updated 23 days ago