Skip to main content
Deploy fungible tokens on Sui with customizable parameters, including name, symbol, decimals, image URL, description, and initial supply. This guide covers the entire deployment process.

Usage

Parameters

Example Prompts

Natural Language Prompts

LangChain Tool Prompts

The LangChain tool expects a JSON string as input with the required parameters. It will handle parsing and execute the deployment seamlessly.

Example Implementation

Implementation Details

  • Supports the fungible token standard
  • Creates a token with zero seller fee basis points
  • Optionally mints the initial supply to the deployer’s wallet

Error Handling

Best Practices

  1. Name Selection
  • Choose a unique and descriptive name.
  1. Initial Supply
  • Consider token economics when determining supply.
  • Ensure that supply * decimals remains below 1E28, the maximum value convertible to BigInt.
  1. Symbol Selection
  • Use 2-5 characters.
  • Uppercase letters are recommended.
  1. Security Considerations
  • Secure private keys.
  • Validate all input parameters.
  • Use trusted RPC endpoints.