├── .DS_Store ├── .gitignore ├── .nvmrc ├── LICENSE ├── README.md ├── _config.yml ├── assets └── sol-repo.jpg ├── docker_postgres_db ├── .env.example ├── .gitignore ├── README.md ├── docker-compose.yml ├── grpc │ ├── grpc-requests.ts │ ├── pumpfun-bond-listener.ts │ ├── pumpfun-new-tokens-listener.ts │ ├── pumpfun-trades-listener.ts │ ├── pumpfun-wallet-tracker.ts │ ├── pumpswap-migration-listener.ts │ ├── pumpswap-wallet-tracker.ts │ └── utils.ts └── postgres │ ├── Dockerfile │ ├── init-scripts │ └── 01-sol_algo_schema.sql │ ├── postgresql.conf │ └── start.sh ├── docs └── api │ ├── README.md │ ├── _sidebar.md │ ├── _toc.md │ ├── dexscreener.md │ ├── grpc_dev.md │ ├── helpers.md │ ├── jupiter.md │ ├── meteora.md │ ├── orca.md │ ├── pumpfunsdk.md │ ├── raydium.md │ └── transactions.md ├── examples_deprecated ├── add_liquidity │ ├── add_liq_doc.txt │ ├── add_liq_help.txt │ ├── expected_output1.0.jpeg │ ├── expected_output1.1.jpeg │ ├── expected_output2.0.jpeg │ └── expected_output2.1.jpeg ├── boost_volume │ ├── doc.txt │ └── help.txt ├── burn_token │ ├── ._expected_output1.jpg │ ├── burn_doc.txt │ ├── burn_help.txt │ ├── expected_output1.jpg │ └── expected_output2.jpg ├── buy_token │ ├── buy_doc.txt │ ├── buy_help.txt │ ├── expected_output1.0.jpeg │ ├── expected_output1.1.jpeg │ ├── expected_output2.0.jpeg │ └── expected_output2.1.jpeg ├── create_token │ ├── ._expected_output1.jpg │ ├── ._expected_output2.jpg │ ├── create_doc.txt │ ├── create_help.txt │ ├── expected_output1.jpg │ └── expected_output2.jpg ├── pump_buy │ ├── doc.txt │ ├── expected_output.png │ └── help.txt ├── pump_createAndInitialBuy │ ├── doc.txt │ ├── expected_output.png │ └── help.txt ├── pump_sell │ ├── doc.txt │ ├── expected_output.png │ └── help.txt ├── remove_liquidity │ ├── expected_output1.0.jpeg │ ├── expected_output1.1.jpeg │ ├── expected_output2.0.jpeg │ ├── expected_output2.1.jpeg │ ├── expected_output2.2.jpeg │ ├── remove_liq_doc.txt │ └── remove_liq_help.txt ├── sell_token │ ├── expected_output1.0.jpeg │ ├── expected_output1.1.jpeg │ ├── expected_output2.0.jpeg │ ├── expected_output2.1.jpeg │ ├── sell_doc.txt │ └── sell_help.txt └── zk_compressed_token │ ├── cargo-install-photon.png │ ├── doc.txt │ ├── expected-output.png │ ├── npm-install-cli.png │ └── run-local-zk-validator.png ├── package.json ├── src ├── .DS_Store ├── README.md ├── dexscreener │ ├── index.ts │ └── info.ts ├── grpc_streaming_dev │ ├── grpc-cpmm-sniper │ │ └── index.ts │ ├── grpc-pf-sniper │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── command.sh │ │ └── src │ │ │ ├── .DS_Store │ │ │ ├── constants │ │ │ ├── constants.ts │ │ │ └── index.ts │ │ │ ├── jito │ │ │ ├── bundle.ts │ │ │ └── index.ts │ │ │ ├── pumpdotfun-sdk │ │ │ ├── example │ │ │ │ ├── basic │ │ │ │ │ ├── index.ts │ │ │ │ │ └── random.png │ │ │ │ ├── events │ │ │ │ │ └── index.ts │ │ │ │ └── util.ts │ │ │ └── src │ │ │ │ ├── IDL │ │ │ │ ├── index.ts │ │ │ │ ├── pump-fun.json │ │ │ │ └── pump-fun.ts │ │ │ │ ├── amm.ts │ │ │ │ ├── bondingCurveAccount.ts │ │ │ │ ├── events.ts │ │ │ │ ├── globalAccount.ts │ │ │ │ ├── index.ts │ │ │ │ ├── pumpfun.ts │ │ │ │ ├── types.ts │ │ │ │ └── util.ts │ │ │ ├── streaming │ │ │ ├── grpc-requests-type.ts │ │ │ ├── pump.fun.ts │ │ │ ├── snipe-create.ts │ │ │ └── utils.ts │ │ │ ├── transaction │ │ │ ├── index.ts │ │ │ └── transaction.ts │ │ │ └── utils │ │ │ ├── index.ts │ │ │ ├── logger.ts │ │ │ └── utils.ts │ ├── grpc-pumpswap-sniper │ │ └── index.ts │ └── grpc-raydium-sniper │ │ ├── README.md │ │ └── src │ │ ├── buffer │ │ ├── buffer.ts │ │ └── index.ts │ │ ├── constants │ │ ├── constants.ts │ │ └── index.ts │ │ ├── jito │ │ └── bundle.ts │ │ ├── liquidity │ │ ├── index.ts │ │ └── liquidity.ts │ │ ├── market │ │ ├── index.ts │ │ └── market.ts │ │ ├── streaming │ │ ├── openbook.ts │ │ ├── pump-listeners.ts │ │ ├── raydium.ts │ │ ├── snipe-normal-raydium.ts │ │ └── snipe-pump.ts │ │ ├── token-cache.ts │ │ ├── transaction │ │ └── transaction.ts │ │ └── utils │ │ ├── index.ts │ │ ├── logger.ts │ │ └── utils.ts ├── helpers │ ├── .env.example │ ├── check_balance.ts │ ├── config.ts │ ├── index.ts │ ├── logger.ts │ ├── unwrap_sol.ts │ ├── util.ts │ ├── utils.ts │ └── wrap_sol.ts ├── jupiter │ ├── README.md │ ├── buy.ts │ ├── constants.ts │ ├── dca.ts │ ├── fetch-price.ts │ ├── index.ts │ ├── limit_order.ts │ ├── sell.ts │ ├── swap │ │ ├── buy-helper.ts │ │ ├── index.ts │ │ ├── sell-helper.ts │ │ └── swap-helper.ts │ └── test.ts ├── meteora │ ├── Pool │ │ ├── fetch-pool.ts │ │ ├── index.ts │ │ └── swap.ts │ ├── README.md │ ├── buy.ts │ ├── buy_helper.ts │ ├── constants.ts │ ├── fetch-price.ts │ ├── index.ts │ ├── sell.ts │ ├── sell_helper.ts │ └── token-filters │ │ ├── index.ts │ │ ├── marketcap.ts │ │ ├── pool-sol.ts │ │ └── volume.ts ├── orca │ ├── Pool │ │ ├── fetch-pool.ts │ │ ├── index.ts │ │ └── swap.ts │ ├── README.md │ ├── buy.ts │ ├── buy_helper.ts │ ├── constants.ts │ ├── fetch-price.ts │ ├── index.ts │ ├── sell.ts │ ├── sell_helper.ts │ └── token-filters │ │ ├── marketcap.ts │ │ ├── pool-sol.ts │ │ └── volume.ts ├── pumpfunsdk │ ├── README.md │ ├── pump-keypair │ │ └── yourtoken.json │ └── pumpdotfun-sdk │ │ ├── example │ │ ├── basic │ │ │ └── index.ts │ │ ├── events │ │ │ └── index.ts │ │ └── util.ts │ │ └── src │ │ ├── IDL │ │ ├── index.ts │ │ ├── pump-fun.json │ │ └── pump-fun.ts │ │ ├── WalletKeypairs │ │ ├── privateKeys.json │ │ └── sniperKeys.csv │ │ ├── amm.ts │ │ ├── bondingCurveAccount.ts │ │ ├── buy.ts │ │ ├── createAndBuy.ts │ │ ├── events.ts │ │ ├── globalAccount.ts │ │ ├── index.ts │ │ ├── pump-events-listener │ │ └── listeners.ts │ │ ├── pumpfun.ts │ │ ├── sell.ts │ │ ├── tools.ts │ │ ├── types.ts │ │ └── util.ts ├── raydium │ ├── Pool │ │ ├── add_pool.ts │ │ ├── create_pool.ts │ │ ├── fetch_pool.ts │ │ ├── formatAmmKeysById.ts │ │ ├── index.ts │ │ ├── remove_pool.ts │ │ └── swap.ts │ ├── README.md │ ├── buy.ts │ ├── buy_helper.ts │ ├── constants.ts │ ├── fetch-price.ts │ ├── index.ts │ ├── raydium_config.ts │ ├── sell.ts │ ├── sell_helper.ts │ └── token-filters │ │ ├── index.ts │ │ ├── lp-burn.ts │ │ ├── maker-count.ts │ │ ├── marketcap.ts │ │ ├── pool-sol.ts │ │ ├── tx-count.ts │ │ └── volume.ts ├── transactions │ ├── README.md │ ├── bloXroute_tips_tx_executor.ts │ ├── index.ts │ ├── jito_tips_tx_executor.ts │ ├── nozomi │ │ └── tx-submission.ts │ └── simple_tx_executor.ts └── utils │ └── index.ts ├── test.ts ├── tsconfig.json └── update discord invite /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.2.0 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/sol-repo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/assets/sol-repo.jpg -------------------------------------------------------------------------------- /docker_postgres_db/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docker_postgres_db/.env.example -------------------------------------------------------------------------------- /docker_postgres_db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docker_postgres_db/.gitignore -------------------------------------------------------------------------------- /docker_postgres_db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docker_postgres_db/README.md -------------------------------------------------------------------------------- /docker_postgres_db/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docker_postgres_db/docker-compose.yml -------------------------------------------------------------------------------- /docker_postgres_db/grpc/grpc-requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docker_postgres_db/grpc/grpc-requests.ts -------------------------------------------------------------------------------- /docker_postgres_db/grpc/pumpfun-bond-listener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docker_postgres_db/grpc/pumpfun-bond-listener.ts -------------------------------------------------------------------------------- /docker_postgres_db/grpc/pumpfun-new-tokens-listener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docker_postgres_db/grpc/pumpfun-new-tokens-listener.ts -------------------------------------------------------------------------------- /docker_postgres_db/grpc/pumpfun-trades-listener.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker_postgres_db/grpc/pumpfun-wallet-tracker.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker_postgres_db/grpc/pumpswap-migration-listener.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker_postgres_db/grpc/pumpswap-wallet-tracker.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker_postgres_db/grpc/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docker_postgres_db/grpc/utils.ts -------------------------------------------------------------------------------- /docker_postgres_db/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docker_postgres_db/postgres/Dockerfile -------------------------------------------------------------------------------- /docker_postgres_db/postgres/init-scripts/01-sol_algo_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docker_postgres_db/postgres/init-scripts/01-sol_algo_schema.sql -------------------------------------------------------------------------------- /docker_postgres_db/postgres/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docker_postgres_db/postgres/postgresql.conf -------------------------------------------------------------------------------- /docker_postgres_db/postgres/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docker_postgres_db/postgres/start.sh -------------------------------------------------------------------------------- /docs/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docs/api/README.md -------------------------------------------------------------------------------- /docs/api/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docs/api/_sidebar.md -------------------------------------------------------------------------------- /docs/api/_toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docs/api/_toc.md -------------------------------------------------------------------------------- /docs/api/dexscreener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docs/api/dexscreener.md -------------------------------------------------------------------------------- /docs/api/grpc_dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docs/api/grpc_dev.md -------------------------------------------------------------------------------- /docs/api/helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docs/api/helpers.md -------------------------------------------------------------------------------- /docs/api/jupiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docs/api/jupiter.md -------------------------------------------------------------------------------- /docs/api/meteora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docs/api/meteora.md -------------------------------------------------------------------------------- /docs/api/orca.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docs/api/orca.md -------------------------------------------------------------------------------- /docs/api/pumpfunsdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docs/api/pumpfunsdk.md -------------------------------------------------------------------------------- /docs/api/raydium.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docs/api/raydium.md -------------------------------------------------------------------------------- /docs/api/transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/docs/api/transactions.md -------------------------------------------------------------------------------- /examples_deprecated/add_liquidity/add_liq_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/add_liquidity/add_liq_doc.txt -------------------------------------------------------------------------------- /examples_deprecated/add_liquidity/add_liq_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/add_liquidity/add_liq_help.txt -------------------------------------------------------------------------------- /examples_deprecated/add_liquidity/expected_output1.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/add_liquidity/expected_output1.0.jpeg -------------------------------------------------------------------------------- /examples_deprecated/add_liquidity/expected_output1.1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/add_liquidity/expected_output1.1.jpeg -------------------------------------------------------------------------------- /examples_deprecated/add_liquidity/expected_output2.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/add_liquidity/expected_output2.0.jpeg -------------------------------------------------------------------------------- /examples_deprecated/add_liquidity/expected_output2.1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/add_liquidity/expected_output2.1.jpeg -------------------------------------------------------------------------------- /examples_deprecated/boost_volume/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/boost_volume/doc.txt -------------------------------------------------------------------------------- /examples_deprecated/boost_volume/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/boost_volume/help.txt -------------------------------------------------------------------------------- /examples_deprecated/burn_token/._expected_output1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/burn_token/._expected_output1.jpg -------------------------------------------------------------------------------- /examples_deprecated/burn_token/burn_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/burn_token/burn_doc.txt -------------------------------------------------------------------------------- /examples_deprecated/burn_token/burn_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/burn_token/burn_help.txt -------------------------------------------------------------------------------- /examples_deprecated/burn_token/expected_output1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/burn_token/expected_output1.jpg -------------------------------------------------------------------------------- /examples_deprecated/burn_token/expected_output2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/burn_token/expected_output2.jpg -------------------------------------------------------------------------------- /examples_deprecated/buy_token/buy_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/buy_token/buy_doc.txt -------------------------------------------------------------------------------- /examples_deprecated/buy_token/buy_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/buy_token/buy_help.txt -------------------------------------------------------------------------------- /examples_deprecated/buy_token/expected_output1.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/buy_token/expected_output1.0.jpeg -------------------------------------------------------------------------------- /examples_deprecated/buy_token/expected_output1.1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/buy_token/expected_output1.1.jpeg -------------------------------------------------------------------------------- /examples_deprecated/buy_token/expected_output2.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/buy_token/expected_output2.0.jpeg -------------------------------------------------------------------------------- /examples_deprecated/buy_token/expected_output2.1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/buy_token/expected_output2.1.jpeg -------------------------------------------------------------------------------- /examples_deprecated/create_token/._expected_output1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/create_token/._expected_output1.jpg -------------------------------------------------------------------------------- /examples_deprecated/create_token/._expected_output2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/create_token/._expected_output2.jpg -------------------------------------------------------------------------------- /examples_deprecated/create_token/create_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/create_token/create_doc.txt -------------------------------------------------------------------------------- /examples_deprecated/create_token/create_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/create_token/create_help.txt -------------------------------------------------------------------------------- /examples_deprecated/create_token/expected_output1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/create_token/expected_output1.jpg -------------------------------------------------------------------------------- /examples_deprecated/create_token/expected_output2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/create_token/expected_output2.jpg -------------------------------------------------------------------------------- /examples_deprecated/pump_buy/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/pump_buy/doc.txt -------------------------------------------------------------------------------- /examples_deprecated/pump_buy/expected_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/pump_buy/expected_output.png -------------------------------------------------------------------------------- /examples_deprecated/pump_buy/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/pump_buy/help.txt -------------------------------------------------------------------------------- /examples_deprecated/pump_createAndInitialBuy/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/pump_createAndInitialBuy/doc.txt -------------------------------------------------------------------------------- /examples_deprecated/pump_createAndInitialBuy/expected_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/pump_createAndInitialBuy/expected_output.png -------------------------------------------------------------------------------- /examples_deprecated/pump_createAndInitialBuy/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/pump_createAndInitialBuy/help.txt -------------------------------------------------------------------------------- /examples_deprecated/pump_sell/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/pump_sell/doc.txt -------------------------------------------------------------------------------- /examples_deprecated/pump_sell/expected_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/pump_sell/expected_output.png -------------------------------------------------------------------------------- /examples_deprecated/pump_sell/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/pump_sell/help.txt -------------------------------------------------------------------------------- /examples_deprecated/remove_liquidity/expected_output1.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/remove_liquidity/expected_output1.0.jpeg -------------------------------------------------------------------------------- /examples_deprecated/remove_liquidity/expected_output1.1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/remove_liquidity/expected_output1.1.jpeg -------------------------------------------------------------------------------- /examples_deprecated/remove_liquidity/expected_output2.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/remove_liquidity/expected_output2.0.jpeg -------------------------------------------------------------------------------- /examples_deprecated/remove_liquidity/expected_output2.1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/remove_liquidity/expected_output2.1.jpeg -------------------------------------------------------------------------------- /examples_deprecated/remove_liquidity/expected_output2.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/remove_liquidity/expected_output2.2.jpeg -------------------------------------------------------------------------------- /examples_deprecated/remove_liquidity/remove_liq_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/remove_liquidity/remove_liq_doc.txt -------------------------------------------------------------------------------- /examples_deprecated/remove_liquidity/remove_liq_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/remove_liquidity/remove_liq_help.txt -------------------------------------------------------------------------------- /examples_deprecated/sell_token/expected_output1.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/sell_token/expected_output1.0.jpeg -------------------------------------------------------------------------------- /examples_deprecated/sell_token/expected_output1.1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/sell_token/expected_output1.1.jpeg -------------------------------------------------------------------------------- /examples_deprecated/sell_token/expected_output2.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/sell_token/expected_output2.0.jpeg -------------------------------------------------------------------------------- /examples_deprecated/sell_token/expected_output2.1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/sell_token/expected_output2.1.jpeg -------------------------------------------------------------------------------- /examples_deprecated/sell_token/sell_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/sell_token/sell_doc.txt -------------------------------------------------------------------------------- /examples_deprecated/sell_token/sell_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/sell_token/sell_help.txt -------------------------------------------------------------------------------- /examples_deprecated/zk_compressed_token/cargo-install-photon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/zk_compressed_token/cargo-install-photon.png -------------------------------------------------------------------------------- /examples_deprecated/zk_compressed_token/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/zk_compressed_token/doc.txt -------------------------------------------------------------------------------- /examples_deprecated/zk_compressed_token/expected-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/zk_compressed_token/expected-output.png -------------------------------------------------------------------------------- /examples_deprecated/zk_compressed_token/npm-install-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/zk_compressed_token/npm-install-cli.png -------------------------------------------------------------------------------- /examples_deprecated/zk_compressed_token/run-local-zk-validator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/examples_deprecated/zk_compressed_token/run-local-zk-validator.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/package.json -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/README.md -------------------------------------------------------------------------------- /src/dexscreener/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./info"; -------------------------------------------------------------------------------- /src/dexscreener/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/dexscreener/info.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-cpmm-sniper/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/.DS_Store -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/README.md -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/command.sh -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/.DS_Store -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/constants/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/constants/constants.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/constants/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./constants" -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/jito/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/jito/bundle.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/jito/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./bundle"; -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/example/basic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/example/basic/index.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/example/basic/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/example/basic/random.png -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/example/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/example/events/index.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/example/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/example/util.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/IDL/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/IDL/index.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/IDL/pump-fun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/IDL/pump-fun.json -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/IDL/pump-fun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/IDL/pump-fun.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/amm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/amm.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/bondingCurveAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/bondingCurveAccount.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/events.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/globalAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/globalAccount.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/index.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/pumpfun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/pumpfun.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/types.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/pumpdotfun-sdk/src/util.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/streaming/grpc-requests-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/streaming/grpc-requests-type.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/streaming/pump.fun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/streaming/pump.fun.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/streaming/snipe-create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/streaming/snipe-create.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/streaming/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/streaming/utils.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/transaction/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./transaction" -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/transaction/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/transaction/transaction.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/utils/index.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/utils/logger.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pf-sniper/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-pf-sniper/src/utils/utils.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-pumpswap-sniper/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-raydium-sniper/README.md -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/buffer/buffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-raydium-sniper/src/buffer/buffer.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/buffer/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./buffer"; -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/constants/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-raydium-sniper/src/constants/constants.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/constants/index.ts: -------------------------------------------------------------------------------- 1 | export * from './constants'; -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/jito/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-raydium-sniper/src/jito/bundle.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/liquidity/index.ts: -------------------------------------------------------------------------------- 1 | export * from './liquidity'; 2 | -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/liquidity/liquidity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-raydium-sniper/src/liquidity/liquidity.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/market/index.ts: -------------------------------------------------------------------------------- 1 | export * from './market'; 2 | -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/market/market.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-raydium-sniper/src/market/market.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/streaming/openbook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-raydium-sniper/src/streaming/openbook.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/streaming/pump-listeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-raydium-sniper/src/streaming/pump-listeners.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/streaming/raydium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-raydium-sniper/src/streaming/raydium.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/streaming/snipe-normal-raydium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-raydium-sniper/src/streaming/snipe-normal-raydium.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/streaming/snipe-pump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-raydium-sniper/src/streaming/snipe-pump.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/token-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-raydium-sniper/src/token-cache.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/transaction/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-raydium-sniper/src/transaction/transaction.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-raydium-sniper/src/utils/index.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-raydium-sniper/src/utils/logger.ts -------------------------------------------------------------------------------- /src/grpc_streaming_dev/grpc-raydium-sniper/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/grpc_streaming_dev/grpc-raydium-sniper/src/utils/utils.ts -------------------------------------------------------------------------------- /src/helpers/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/helpers/.env.example -------------------------------------------------------------------------------- /src/helpers/check_balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/helpers/check_balance.ts -------------------------------------------------------------------------------- /src/helpers/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/helpers/config.ts -------------------------------------------------------------------------------- /src/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/helpers/index.ts -------------------------------------------------------------------------------- /src/helpers/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/helpers/logger.ts -------------------------------------------------------------------------------- /src/helpers/unwrap_sol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/helpers/unwrap_sol.ts -------------------------------------------------------------------------------- /src/helpers/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/helpers/util.ts -------------------------------------------------------------------------------- /src/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/helpers/utils.ts -------------------------------------------------------------------------------- /src/helpers/wrap_sol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/helpers/wrap_sol.ts -------------------------------------------------------------------------------- /src/jupiter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/jupiter/README.md -------------------------------------------------------------------------------- /src/jupiter/buy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/jupiter/buy.ts -------------------------------------------------------------------------------- /src/jupiter/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/jupiter/constants.ts -------------------------------------------------------------------------------- /src/jupiter/dca.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/jupiter/fetch-price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/jupiter/fetch-price.ts -------------------------------------------------------------------------------- /src/jupiter/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./swap"; -------------------------------------------------------------------------------- /src/jupiter/limit_order.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/jupiter/sell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/jupiter/sell.ts -------------------------------------------------------------------------------- /src/jupiter/swap/buy-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/jupiter/swap/buy-helper.ts -------------------------------------------------------------------------------- /src/jupiter/swap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/jupiter/swap/index.ts -------------------------------------------------------------------------------- /src/jupiter/swap/sell-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/jupiter/swap/sell-helper.ts -------------------------------------------------------------------------------- /src/jupiter/swap/swap-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/jupiter/swap/swap-helper.ts -------------------------------------------------------------------------------- /src/jupiter/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/jupiter/test.ts -------------------------------------------------------------------------------- /src/meteora/Pool/fetch-pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/meteora/Pool/fetch-pool.ts -------------------------------------------------------------------------------- /src/meteora/Pool/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/meteora/Pool/index.ts -------------------------------------------------------------------------------- /src/meteora/Pool/swap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/meteora/Pool/swap.ts -------------------------------------------------------------------------------- /src/meteora/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/meteora/README.md -------------------------------------------------------------------------------- /src/meteora/buy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/meteora/buy.ts -------------------------------------------------------------------------------- /src/meteora/buy_helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/meteora/buy_helper.ts -------------------------------------------------------------------------------- /src/meteora/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/meteora/constants.ts -------------------------------------------------------------------------------- /src/meteora/fetch-price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/meteora/fetch-price.ts -------------------------------------------------------------------------------- /src/meteora/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/meteora/index.ts -------------------------------------------------------------------------------- /src/meteora/sell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/meteora/sell.ts -------------------------------------------------------------------------------- /src/meteora/sell_helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/meteora/sell_helper.ts -------------------------------------------------------------------------------- /src/meteora/token-filters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/meteora/token-filters/index.ts -------------------------------------------------------------------------------- /src/meteora/token-filters/marketcap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/meteora/token-filters/marketcap.ts -------------------------------------------------------------------------------- /src/meteora/token-filters/pool-sol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/meteora/token-filters/pool-sol.ts -------------------------------------------------------------------------------- /src/meteora/token-filters/volume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/meteora/token-filters/volume.ts -------------------------------------------------------------------------------- /src/orca/Pool/fetch-pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/orca/Pool/fetch-pool.ts -------------------------------------------------------------------------------- /src/orca/Pool/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/orca/Pool/index.ts -------------------------------------------------------------------------------- /src/orca/Pool/swap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/orca/Pool/swap.ts -------------------------------------------------------------------------------- /src/orca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/orca/README.md -------------------------------------------------------------------------------- /src/orca/buy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/orca/buy.ts -------------------------------------------------------------------------------- /src/orca/buy_helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/orca/buy_helper.ts -------------------------------------------------------------------------------- /src/orca/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/orca/constants.ts -------------------------------------------------------------------------------- /src/orca/fetch-price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/orca/fetch-price.ts -------------------------------------------------------------------------------- /src/orca/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/orca/index.ts -------------------------------------------------------------------------------- /src/orca/sell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/orca/sell.ts -------------------------------------------------------------------------------- /src/orca/sell_helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/orca/sell_helper.ts -------------------------------------------------------------------------------- /src/orca/token-filters/marketcap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/orca/token-filters/marketcap.ts -------------------------------------------------------------------------------- /src/orca/token-filters/pool-sol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/orca/token-filters/pool-sol.ts -------------------------------------------------------------------------------- /src/orca/token-filters/volume.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pumpfunsdk/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pumpfunsdk/pump-keypair/yourtoken.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/example/basic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/example/basic/index.ts -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/example/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/example/events/index.ts -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/example/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/example/util.ts -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/IDL/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/src/IDL/index.ts -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/IDL/pump-fun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/src/IDL/pump-fun.json -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/IDL/pump-fun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/src/IDL/pump-fun.ts -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/WalletKeypairs/privateKeys.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | ] -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/WalletKeypairs/sniperKeys.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/amm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/src/amm.ts -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/bondingCurveAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/src/bondingCurveAccount.ts -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/buy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/src/buy.ts -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/createAndBuy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/src/createAndBuy.ts -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/src/events.ts -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/globalAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/src/globalAccount.ts -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/src/index.ts -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/pump-events-listener/listeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/src/pump-events-listener/listeners.ts -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/pumpfun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/src/pumpfun.ts -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/sell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/src/sell.ts -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/src/tools.ts -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/src/types.ts -------------------------------------------------------------------------------- /src/pumpfunsdk/pumpdotfun-sdk/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/pumpfunsdk/pumpdotfun-sdk/src/util.ts -------------------------------------------------------------------------------- /src/raydium/Pool/add_pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/Pool/add_pool.ts -------------------------------------------------------------------------------- /src/raydium/Pool/create_pool.ts: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/raydium/Pool/fetch_pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/Pool/fetch_pool.ts -------------------------------------------------------------------------------- /src/raydium/Pool/formatAmmKeysById.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/Pool/formatAmmKeysById.ts -------------------------------------------------------------------------------- /src/raydium/Pool/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/Pool/index.ts -------------------------------------------------------------------------------- /src/raydium/Pool/remove_pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/Pool/remove_pool.ts -------------------------------------------------------------------------------- /src/raydium/Pool/swap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/Pool/swap.ts -------------------------------------------------------------------------------- /src/raydium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/README.md -------------------------------------------------------------------------------- /src/raydium/buy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/buy.ts -------------------------------------------------------------------------------- /src/raydium/buy_helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/buy_helper.ts -------------------------------------------------------------------------------- /src/raydium/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/constants.ts -------------------------------------------------------------------------------- /src/raydium/fetch-price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/fetch-price.ts -------------------------------------------------------------------------------- /src/raydium/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/index.ts -------------------------------------------------------------------------------- /src/raydium/raydium_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/raydium_config.ts -------------------------------------------------------------------------------- /src/raydium/sell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/sell.ts -------------------------------------------------------------------------------- /src/raydium/sell_helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/sell_helper.ts -------------------------------------------------------------------------------- /src/raydium/token-filters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/token-filters/index.ts -------------------------------------------------------------------------------- /src/raydium/token-filters/lp-burn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/token-filters/lp-burn.ts -------------------------------------------------------------------------------- /src/raydium/token-filters/maker-count.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/raydium/token-filters/marketcap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/token-filters/marketcap.ts -------------------------------------------------------------------------------- /src/raydium/token-filters/pool-sol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/token-filters/pool-sol.ts -------------------------------------------------------------------------------- /src/raydium/token-filters/tx-count.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/raydium/token-filters/volume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/raydium/token-filters/volume.ts -------------------------------------------------------------------------------- /src/transactions/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/transactions/bloXroute_tips_tx_executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/transactions/bloXroute_tips_tx_executor.ts -------------------------------------------------------------------------------- /src/transactions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/transactions/index.ts -------------------------------------------------------------------------------- /src/transactions/jito_tips_tx_executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/transactions/jito_tips_tx_executor.ts -------------------------------------------------------------------------------- /src/transactions/nozomi/tx-submission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/transactions/nozomi/tx-submission.ts -------------------------------------------------------------------------------- /src/transactions/simple_tx_executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/transactions/simple_tx_executor.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/tsconfig.json -------------------------------------------------------------------------------- /update discord invite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outsmartchad/solana-trading-cli/HEAD/update discord invite --------------------------------------------------------------------------------