├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── images ├── ppw-image-2.png ├── ppw-image-3.png └── ppw-image.png ├── lib └── LICENSE ├── package.json ├── python ├── build_models.py ├── download_data.py └── predict.py ├── src ├── index.ts ├── lib.ts └── types │ └── typechain │ ├── PancakePredictionV2.d.ts │ ├── commons.ts │ ├── factories │ └── PancakePredictionV2__factory.ts │ └── index.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- 1 | PRIVATE_KEY= 2 | BET_AMOUNT=0.1 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/README.md -------------------------------------------------------------------------------- /images/ppw-image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/images/ppw-image-2.png -------------------------------------------------------------------------------- /images/ppw-image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/images/ppw-image-3.png -------------------------------------------------------------------------------- /images/ppw-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/images/ppw-image.png -------------------------------------------------------------------------------- /lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/lib/LICENSE -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/package.json -------------------------------------------------------------------------------- /python/build_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/python/build_models.py -------------------------------------------------------------------------------- /python/download_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/python/download_data.py -------------------------------------------------------------------------------- /python/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/python/predict.py -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/src/lib.ts -------------------------------------------------------------------------------- /src/types/typechain/PancakePredictionV2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/src/types/typechain/PancakePredictionV2.d.ts -------------------------------------------------------------------------------- /src/types/typechain/commons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/src/types/typechain/commons.ts -------------------------------------------------------------------------------- /src/types/typechain/factories/PancakePredictionV2__factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/src/types/typechain/factories/PancakePredictionV2__factory.ts -------------------------------------------------------------------------------- /src/types/typechain/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/src/types/typechain/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapPredictionBot/HEAD/tsconfig.json --------------------------------------------------------------------------------