Step 1: Create token
Learn how to create your application token
Prerequisites
Solana CLI: https://docs.solana.com/cli/install-solana-cli-tools
RLY CLI: https://github.com/rally-dfs/rly-ts/tree/main/packages/cli
RLY TS: https://github.com/rally-dfs/rly-ts/tree/main/packages/ts
or
If you're experiencing permission issues installing the npm package globally on your local machine, please visit https://docs.npmjs.com/downloading-and-installing-node-js-and-npm
Additional resources
Example React app: https://rly-ts-eight.vercel.app/
Example TS tests: https://github.com/rally-dfs/dfs-ts/tree/main/ts/tests
Create your token
If you have already created an SPL token via Solana's Token Program, skip to Step 2: Initializing Token Bonding Curve (TBC).
Step 1: Create Token
Configure your token parameters, additional metadata, and the initial token supply to mint. A balance of at least 1 SOL is required.
The default configuration allows you to mint additional tokens after the initial mint.
The initial token supply will be minted to the associated token account for the keypair creating the token.
That's it!
In this section you should have:
Created your on-chain SPL app token
Minted an initial token supply to the associated token account
Verified your token and supply on chain
Verified your token name, symbol, and logo on an explorer/wallet
Additional Resources
Solana CLI guide: https://docs.solana.com/cli/install-solana-cli-tools
Solana wallet guide: https://docs.solana.com/wallet-guide/cli
Last updated