Welcome to the Solana Jito Token Creator! This guide will help you with the initial setup, configuration, and running of the project.
- Download Node.js from Node.js
- Install it.
- Open Command Prompt and navigate to the project folder.
- Run the command
npm iand press enter.
- Place your token image in the project directory and name it
image.png. - Open
config.jsand set the following variables:- PRIVATE_KEY: Put your deployer private key between "" where it wrote
// Private Key of Deployer - endpoint: Put your rpc endpoint between "" where it wrote
// RPC ENDPOINT - revokeMintBool: Set to
falseif you don't want to revoke minting. Default istrue. - revokeFreezeBool: Set to
falseif you don't want to revoke freeze auth. Default istrue. - tokenInfo: Configure as follows in
config.js:- amount: Set the amount of tokens you want to create.
- decimals: Set the number of decimals for the token.
- metadata: Leave it empty.
- symbol: Set the token symbol (max 10 characters).
- tokenName: Set the token name.
- metaDataforToken: Configure as follows in
config.js(optional sections):- image: Leave it empty.
- description: Add a description for your token.
- extensions: Add your social links (e.g., website, twitter, telegram, discord).
- tags: Enter your tags as defined in the example.
- PRIVATE_KEY: Put your deployer private key between "" where it wrote
Run the following command in your terminal:
node main.jsIf everything is configured correctly, this command will create the token for you.