├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── bot.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules 3 | *.png 4 | cache.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk99/crypto-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: node bot.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk99/crypto-bot/HEAD/README.md -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk99/crypto-bot/HEAD/bot.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk99/crypto-bot/HEAD/package.json --------------------------------------------------------------------------------