├── .gitignore ├── INSTALL.bat ├── README.md ├── START.bat ├── files └── wallets.csv ├── logs └── log.log ├── modules └── cipher.py ├── requirements.txt └── start.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indicatedl/CEXWithdrawer/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indicatedl/CEXWithdrawer/HEAD/INSTALL.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indicatedl/CEXWithdrawer/HEAD/README.md -------------------------------------------------------------------------------- /START.bat: -------------------------------------------------------------------------------- 1 | call .venv\Scripts\activate 2 | python start.py 3 | pause -------------------------------------------------------------------------------- /files/wallets.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /logs/log.log: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /modules/cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indicatedl/CEXWithdrawer/HEAD/modules/cipher.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indicatedl/CEXWithdrawer/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indicatedl/CEXWithdrawer/HEAD/start.py --------------------------------------------------------------------------------