✨Creating Tokens

Call createToken on the LiquidLaunch contract to deploy a new token with bonding curve trading:

function createToken(
    string memory name,
    string memory symbol,
    string memory image_uri,
    string memory description,
    string memory website,
    string memory twitter,
    string memory telegram,
    string memory discord,
    uint8 dexIndex
) external payable returns (address tokenAddress)

Parameters

Parameter
Required
Description

name

yes

Token name (e.g. "Awesome Coin")

symbol

yes

Trading symbol (e.g. "AWE")

image_uri

yes

URL for token logo (IPFS recommended)

description

yes

Brief description of the token

website

no

Project website URL

twitter

no

Twitter handle or URL

telegram

no

Telegram group/channel link

discord

no

Discord server link

dexIndex

yes

Reserved β€” use 0

Initial buy protection

Any HYPE sent with the createToken transaction automatically purchases tokens for the creator before anyone else can buy. This prevents front-running / sniping.

Creator restrictions

  • 1-hour sell lock β€” creators cannot sell their tokens for 1 hour after creation

Last updated