├── .env.example ├── README.md ├── config.ts ├── package.json ├── src ├── base │ ├── baseMpl.ts │ ├── baseRay.ts │ ├── baseSpl.ts │ ├── getMarketAccountSizes.ts │ ├── orderbookUtils.ts │ ├── types.ts │ └── utils.ts ├── constants.ts ├── index.ts ├── jito_bundle │ ├── build-bundle.ts │ └── send-bundle.ts ├── txHandler.ts ├── types.ts └── utils.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/.env.example -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/README.md -------------------------------------------------------------------------------- /config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/package.json -------------------------------------------------------------------------------- /src/base/baseMpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/src/base/baseMpl.ts -------------------------------------------------------------------------------- /src/base/baseRay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/src/base/baseRay.ts -------------------------------------------------------------------------------- /src/base/baseSpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/src/base/baseSpl.ts -------------------------------------------------------------------------------- /src/base/getMarketAccountSizes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/src/base/getMarketAccountSizes.ts -------------------------------------------------------------------------------- /src/base/orderbookUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/src/base/orderbookUtils.ts -------------------------------------------------------------------------------- /src/base/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/src/base/types.ts -------------------------------------------------------------------------------- /src/base/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/src/base/utils.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/jito_bundle/build-bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/src/jito_bundle/build-bundle.ts -------------------------------------------------------------------------------- /src/jito_bundle/send-bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/src/jito_bundle/send-bundle.ts -------------------------------------------------------------------------------- /src/txHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/src/txHandler.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tronzit-Veca/Shitcoin-Raydium-bot/HEAD/tsconfig.json --------------------------------------------------------------------------------