Skip to the content.

SPL token ALL-IN-ONE Command line tool πŸš€

πŸ”—doc

Project Structure

.solana-memecoin-cli
β”œβ”€β”€ data
|   β”œβ”€β”€ Image_file                     # store image file (jpeg, jpg,...)
|   β”œβ”€β”€ metadata_file                  # store .json file about the token metadata
|   β”œβ”€β”€ payer_keypair                  # store wallet keypair .json
|   └── token_keypair                  # store token keypair .json
β”œβ”€β”€ examples (Screenshots of Commands) # all screenshot to show how we use the command line tool
|   β”œβ”€β”€ add_liquidity                  # see how to add liquidity to a pool on Raydium
|   β”œβ”€β”€ burn_token                     # see how to burn a token with WSOL using Raydium swap
|   β”œβ”€β”€ create_token                   # see how to create a SPL token on mainnet or devnet
|   β”œβ”€β”€ buy_token                      # buy a token using raydium with both jito bundles and priority fees
|   β”œβ”€β”€ create_token                   # create a token with 0% extra fees on solana (mainnet or devnet)
|   β”œβ”€β”€ remove_liquidity               # remove some liquidity from a pool on Raydium
|   └── sell_token                     # sell the token with a percentage using Raydium swap
β”œβ”€β”€ src
|   β”œβ”€β”€ helpers
|   |   β”œβ”€β”€ .env.copy                  # .env file to store your keys, rmb change to .env
|   |   β”œβ”€β”€ check_balance              
|   |   β”œβ”€β”€ config.js                  # get value from .env
|   |   └── util.js                    # useful functions
|   β”œβ”€β”€ Pool                           # Only Supporting Raydium right now
|   |   β”œβ”€β”€ add_pool.js                # adding liquidity to AMM pool on Raydium
|   |   β”œβ”€β”€ create_pool.js             # create pool/create open book market on Raydium (not done)
|   |   β”œβ”€β”€ check_pool.js              # check the pool's info (pool size, burn percentage of LP token...)
|   |   β”œβ”€β”€ formatAmmKeysById.js       # get well-informated info of pool
|   |   β”œβ”€β”€ query_pool.js              # query the pool's current info (not done)_
|   |   β”œβ”€β”€ remove_pool.js             # remove liquidity from AMM pool on Raydium
|   |   └── swap.js                    # swap on Raydium
|   β”œβ”€β”€ Token
|   |   β”œβ”€β”€ create.js                  # create token with uploading token image and metadata to irys (storage provider)
|   |   β”œβ”€β”€ burn.js                    # burn a percentage of token
|   |   β”œβ”€β”€ query.js                   # query token's info (creator, price, metadata, holder...) (not done)
|   |   └── revoke_authority.js        # revoke token's freeze and mint authority
|   β”œβ”€β”€ Trading
|   |   β”œβ”€β”€ dex
|   |   |   β”œβ”€β”€ jupiter
|   |   |   |   β”œβ”€β”€ swap
|   |   |   |   |   β”œβ”€β”€ buy-helper.js         # buy token with sol using jup swap api
|   |   |   |   |   β”œβ”€β”€ sell-helper.js        # sell token to sol using jup swap api
|   |   |   |   |   └── swap-helper.js        # swap any to any token using jup swap api
|   |   |   |   β”œβ”€β”€ dca.js                    # create a dollar cost average program using jup api
|   |   |   |   └── limit_order.js            # create a limit order program using jup api
|   |   |   β”œβ”€β”€ meteora
|   |   |   β”œβ”€β”€ orca
|   |   |   └── raydium
|   |   |       β”œβ”€β”€ buy-helper.js             # buy token with WSOL using src\Pool\swap.js
|   |   |       β”œβ”€β”€ buy.js                   
|   |   |       β”œβ”€β”€ sell-helper.js            # sell token to WSOL using src\Pool\swap.js
|   |   |       └── sell.js
|   |   β”œβ”€β”€ pump.fun
|   |   |   β”œβ”€β”€ buy.js                        # buy any token on pump.fun
|   |   |   β”œβ”€β”€ constants.js
|   |   |   β”œβ”€β”€ create.js                     # launch token on pump.fun
|   |   |   β”œβ”€β”€ idl.js
|   |   |   β”œβ”€β”€ sell.js                       # sell any pump.fun token
|   |   |   └── utils.js
|   |   β”œβ”€β”€ volume
|   |   |   └── boost-volume.js               # boosting token's volume
|   |   |                                     # by doing one buy and one sell instruction in one transaction
|   |   |                                     # [buy(), sell()] (only losing your gas fee)
|   |   └── memecoin-trading-strategies
|   |       β”œβ”€β”€ copy_trading
|   |       |   β”œβ”€β”€ copy-buy.js               # copy trader's buy tx
|   |       |   β”œβ”€β”€ copy-sell.js              # copy trader's sell tx
|   |       |   └── copy-trade.js             # Use two core to both copy-buy and copy-sell
|   |       β”œβ”€β”€ Filters                       
|   |       β”œβ”€β”€ take-profit.js                # taking profits by setting a limit order
|   |       └── stop-loss.js                  # stop loss by setting a limit order
|   └── Transactions
|       β”œβ”€β”€ jito-tips-tx-executor.js          # sending bundles(list of instructions) to Jito validators
|                                             # validators help our tx land faster
|       β”œβ”€β”€ simple-tx-executor.js             # submitting ur tx to RPC provider with predefined priority fees
|       └── bloXroute-tips-tx-executor.js     
└── help.js

Installation πŸ› οΈ

  1. git clone https://github.com/ManofDiligence/solana-memecoin-cli.git
  2. cd solana-memecoin-cli
  3. nvm install v22.2.0
  4. nvm use v22.2.0
  5. npm install
  6. node help.js (to see commands or read cli_doc.txt file)
  7. also see the command examples in examples/

Prerequisites 🚨

  1. we have added a .env.copy file in src/helpers/.env.copy for you to follow and paste your keys to the code (specify the custom jito fee if you need).
  2. Add your mainnet wallet secret key, devnet wallet secret key (optional), RPC endpoint(must) and shyft api key(must)
  3. change the .env.copy file to .env
  4. in src/helpers/config.js, please copy and fill in your .env path.

Features βœ…:

Developer CLI:

Trader CLI:

Features in Development 🚧:

Commands </> (Please see the command examples in examples/ to get start~)

payer options is by default use the private key in .env file, but you can also specify the path to the secret key if you want to use another wallet

  1. Specify the token symbol, name, mint keypair(optional, will help u to generate), supply, decimals, path to metadata json file, path to image file, the cluster you want to use, and the file type(png, jpg, jpeg).
node create --payer <PATH_TO_SECRET_KEY> --symbol <TOKEN_SYMBOL> --token_name <TOKEN_NAME> --mint <PATH_TO_MINT_KEYPAIR> --supply <SUPPLY_OF_TOKEN> --decimals <DECIMALS> --metadata <PATH_METADATA_JSON> --image <PATH_TO_IMAGE> --cluster <CLUSTER> --priority-fee <PRIORITY_FEE> --file_type <FILE_TYPE>
  1. Specify the token address, the percentage of the token you want to burn and the cluster you want to use.
node burn --payer <PATH_TO_SECRET_KEY> --token_address <ADDRESS_TOKEN> --percentage <BURN_PERCENTAGE> --cluster <CLUSTER>
  1. Specify the token address and the cluster you want to use.
node revoke_authority --payer <PATH_TO_SECRET_KEY> --mint_address <ADDRESS_TOKEN> --cluster <CLUSTER> --mint --freeze
  1. Specify the token address you want to query and the cluster for boosting the volume of the token.
node boost_volume --token_address <TOKEN_ADDRESS> --payer <PATH_TO_SECRET_KEY> --cluster <CLUSTER> --sol_per_order <SOL_PER_ORDER>

  1. Specify the token address, the amount of Sol you want to swap, and the cluster you want to use.
node buy --payer <PATH_TO_SECRET_KEY> --token_address <ADDRESS_TOKEN> --sol <NUMBER_OF_SOL> --cluster <CLUSTER>
  1. Specify the token address, the percentage of the token you want to sell, and the cluster you want to use.
node sell --payer <PATH_TO_SECRET_KEY> --token_address <ADDRESS_TOKEN> --percentage <SELL_PERCENTAGE> --cluster <CLUSTER>
  1. Specify the token address, the pool id(optional, will help to find the pool with the most liquidity using the given token address), the amount of Sol you want to add, and the cluster you want to use.
node add_pool --payer <PATH_WALLET> --token_address <ADDRESS_TOKEN> --pool_id <POOL_ID> --sol <NUMBER_OF_SOL> --cluster <CLUSTER> --priority_fee <PRIORITY_FEE>
  1. Specify the token address, the percentage of the LP token you want to remove(1=1%), and the cluster you want to use.
node remove_pool --payer <PATH_PAYER> --token_address <TOKEN_ADDRESS> --percentage <LP_TOKEN_PERCENTAGE> --cluster <CLUSTER>

Code Usage </>

Token:

Trading:

Transactions:

Pool:

Helper methods:

Contributing

Apply Latest Changes from remote repo

If you think this project is useful, please give us a star🌟, it will help us a lot or consider to buy us a coffee πŸ“šπŸŽ§β˜•,

Solana address: 8FV2wovZuac8ZFMYMpRJGEG1vpBQGwLYiU31eR86Bp3g

Discord channel: https://discord.gg/RzSYgqgd

It is a work in progress, if you have any suggestions or any problems, please let us know!

Stay tuned for the updates.πŸ€–_**