Saseul Gold Docs
  • Saseul Gold Docs
  • Network CLI
    • Using Saseulgold Network CLI
    • Wallet Interface
      • Representative Wallet Settings
      • Check your wallet balance
      • Remittance
    • Dex Interface
      • Get Token Detail
      • Mint Token
      • Transfer Token
      • Swap
      • ProvideLiquidity
    • Swap Process
      • Example
  • Dex API
    • Using Dex API
    • Token Info API
    • Token Mint API
    • Token Pair Info API
    • Provide Liquidity API
    • Faucet API
    • Swap
    • Liquidity Withdraw
    • Balance Of
    • Transfer
  • Backend API
    • Using Backend API
    • Token Detail API
    • Token List API
    • Pair List API
    • Pair Detail API
    • Pair Transaction Candle API
    • Block List API
Powered by GitBook
On this page
  1. Dex API

Token Mint API

Tokens are given unique (token_address) based on the value of owner address, symbol.

Tokens can only be issued once.

  • Raw Transaction Payload

{
    "type": "Mint",
    "name": "mysolana",
    "symbol": "SOL",
    "supply": "10000",
    "icon_url": "https://image.samsungsds.com/kr/insights/20240726_1.png",
}
  • Signed Transaction Payload

{
    "transaction": {
        "type": "Mint",
        "name": "mysolana",
        "symbol": "SOL",
        "supply": "10000",
        "icon_url": "https://image.samsungsds.com/kr/insights/20240726_1.png",
    },
    "public_key": "391e87c9ceedb34ecd7f74d4536a33851ce54dbb0c2dfbf1a529816f8ed7",
    "signature": "bac2ef6a8e92c644abd38f0590ec51643920d810a825c209a5a2b76dfa7b"
}
  • Response

token_address: b8a5a760dda3a234e33f652701789a3cb879052eb783e9735dc6315243e
{
    "msg": "successfully broadcast transaction",
    "ok": "true"
}
PreviousToken Info APINextToken Pair Info API

Last updated 3 months ago