├── .gitattributes ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── config.ts ├── gitignore ├── package.json ├── src ├── formatAmmKeys.ts ├── formatAmmKeysById.ts ├── formatClmmConfigs.ts ├── formatClmmKeys.ts ├── formatClmmKeysById.ts ├── raydiumBotClient.ts ├── swapBot.ts └── util.ts ├── tsconfig.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/README.md -------------------------------------------------------------------------------- /config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/config.ts -------------------------------------------------------------------------------- /gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/gitignore -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/package.json -------------------------------------------------------------------------------- /src/formatAmmKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/src/formatAmmKeys.ts -------------------------------------------------------------------------------- /src/formatAmmKeysById.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/src/formatAmmKeysById.ts -------------------------------------------------------------------------------- /src/formatClmmConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/src/formatClmmConfigs.ts -------------------------------------------------------------------------------- /src/formatClmmKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/src/formatClmmKeys.ts -------------------------------------------------------------------------------- /src/formatClmmKeysById.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/src/formatClmmKeysById.ts -------------------------------------------------------------------------------- /src/raydiumBotClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/src/raydiumBotClient.ts -------------------------------------------------------------------------------- /src/swapBot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/src/swapBot.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/src/util.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bifrost-Technologies/Raydium-Trading-Bot-Template/HEAD/yarn.lock --------------------------------------------------------------------------------