├── .gitignore ├── README.md ├── Settings.json ├── abis ├── BSC_Swapper.json ├── bep20_abi_token.json └── erc20_abi_token.json ├── getpip.py ├── how-to-export.gif ├── requirements.txt ├── screenshot.png ├── sniper.py ├── style.py ├── telegramAlert.py └── txns.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DexSniping/DexSniping-BSC-ERC20-Telegram-Alerts/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DexSniping/DexSniping-BSC-ERC20-Telegram-Alerts/HEAD/README.md -------------------------------------------------------------------------------- /Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DexSniping/DexSniping-BSC-ERC20-Telegram-Alerts/HEAD/Settings.json -------------------------------------------------------------------------------- /abis/BSC_Swapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DexSniping/DexSniping-BSC-ERC20-Telegram-Alerts/HEAD/abis/BSC_Swapper.json -------------------------------------------------------------------------------- /abis/bep20_abi_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DexSniping/DexSniping-BSC-ERC20-Telegram-Alerts/HEAD/abis/bep20_abi_token.json -------------------------------------------------------------------------------- /abis/erc20_abi_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DexSniping/DexSniping-BSC-ERC20-Telegram-Alerts/HEAD/abis/erc20_abi_token.json -------------------------------------------------------------------------------- /getpip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DexSniping/DexSniping-BSC-ERC20-Telegram-Alerts/HEAD/getpip.py -------------------------------------------------------------------------------- /how-to-export.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DexSniping/DexSniping-BSC-ERC20-Telegram-Alerts/HEAD/how-to-export.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DexSniping/DexSniping-BSC-ERC20-Telegram-Alerts/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DexSniping/DexSniping-BSC-ERC20-Telegram-Alerts/HEAD/screenshot.png -------------------------------------------------------------------------------- /sniper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DexSniping/DexSniping-BSC-ERC20-Telegram-Alerts/HEAD/sniper.py -------------------------------------------------------------------------------- /style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DexSniping/DexSniping-BSC-ERC20-Telegram-Alerts/HEAD/style.py -------------------------------------------------------------------------------- /telegramAlert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DexSniping/DexSniping-BSC-ERC20-Telegram-Alerts/HEAD/telegramAlert.py -------------------------------------------------------------------------------- /txns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DexSniping/DexSniping-BSC-ERC20-Telegram-Alerts/HEAD/txns.py --------------------------------------------------------------------------------