├── .env.example ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── README.md ├── SETUP.md ├── config └── bot.config.json ├── package.json ├── src ├── config │ └── configLoader.ts ├── core │ ├── provider.ts │ └── walletManager.ts ├── index.ts ├── scanner │ ├── factoryListener.ts │ └── safetyScanner.ts ├── sniper │ ├── sellEngine.ts │ └── sniperEngine.ts └── utils │ ├── abis.ts │ ├── helpers.ts │ └── logger.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/README.md -------------------------------------------------------------------------------- /SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/SETUP.md -------------------------------------------------------------------------------- /config/bot.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/config/bot.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/package.json -------------------------------------------------------------------------------- /src/config/configLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/src/config/configLoader.ts -------------------------------------------------------------------------------- /src/core/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/src/core/provider.ts -------------------------------------------------------------------------------- /src/core/walletManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/src/core/walletManager.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/scanner/factoryListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/src/scanner/factoryListener.ts -------------------------------------------------------------------------------- /src/scanner/safetyScanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/src/scanner/safetyScanner.ts -------------------------------------------------------------------------------- /src/sniper/sellEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/src/sniper/sellEngine.ts -------------------------------------------------------------------------------- /src/sniper/sniperEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/src/sniper/sniperEngine.ts -------------------------------------------------------------------------------- /src/utils/abis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/src/utils/abis.ts -------------------------------------------------------------------------------- /src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/src/utils/helpers.ts -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSCsmartdev/ThinkVim/HEAD/tsconfig.json --------------------------------------------------------------------------------