├── .env-example ├── .gitignore ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src ├── candle-genie.ts ├── index.ts ├── lib.ts └── types │ └── typechain │ ├── CandleGeniePredictionV3.d.ts │ ├── PancakePredictionV2.d.ts │ ├── commons.ts │ ├── factories │ ├── CandleGeniePredictionV3__factory.ts │ └── PancakePredictionV2__factory.ts │ └── index.ts ├── tsconfig.json └── yarn.lock /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontstaz/BSC-DEX-Prediction-Bot/HEAD/.env-example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontstaz/BSC-DEX-Prediction-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontstaz/BSC-DEX-Prediction-Bot/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontstaz/BSC-DEX-Prediction-Bot/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontstaz/BSC-DEX-Prediction-Bot/HEAD/package.json -------------------------------------------------------------------------------- /src/candle-genie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontstaz/BSC-DEX-Prediction-Bot/HEAD/src/candle-genie.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontstaz/BSC-DEX-Prediction-Bot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontstaz/BSC-DEX-Prediction-Bot/HEAD/src/lib.ts -------------------------------------------------------------------------------- /src/types/typechain/CandleGeniePredictionV3.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontstaz/BSC-DEX-Prediction-Bot/HEAD/src/types/typechain/CandleGeniePredictionV3.d.ts -------------------------------------------------------------------------------- /src/types/typechain/PancakePredictionV2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontstaz/BSC-DEX-Prediction-Bot/HEAD/src/types/typechain/PancakePredictionV2.d.ts -------------------------------------------------------------------------------- /src/types/typechain/commons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontstaz/BSC-DEX-Prediction-Bot/HEAD/src/types/typechain/commons.ts -------------------------------------------------------------------------------- /src/types/typechain/factories/CandleGeniePredictionV3__factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontstaz/BSC-DEX-Prediction-Bot/HEAD/src/types/typechain/factories/CandleGeniePredictionV3__factory.ts -------------------------------------------------------------------------------- /src/types/typechain/factories/PancakePredictionV2__factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontstaz/BSC-DEX-Prediction-Bot/HEAD/src/types/typechain/factories/PancakePredictionV2__factory.ts -------------------------------------------------------------------------------- /src/types/typechain/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontstaz/BSC-DEX-Prediction-Bot/HEAD/src/types/typechain/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontstaz/BSC-DEX-Prediction-Bot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontstaz/BSC-DEX-Prediction-Bot/HEAD/yarn.lock --------------------------------------------------------------------------------