The layerzero-bridger is an app with the command-line interface that provides various functionalities for working with LayerZero bridges. It allows you to generate private keys, withdraw funds from exchanges, and execute bridges multiple times in a random sequence.
- Support for all popular EVM networks - Ethereum, Arbitrum, Optimism, Polygon, Fantom, Avalanche, BSC
- Scanning of networks for stablecoins/BTC.b on balance
- Bridge via Stargate, BTC.b
- Complete randomization of paths and timings. No patterns
- Simultaneous operation of multiple accounts in different threads
- Automatic refuel from Binance and Okex exchanges (withdrawal of the native token to pay gas fees)
- Install Python 3.9.2 (another version is possible, but I can't vouch for it)
- Go to the directory with the repository (you will probably have a different path):
cd layerzero-bridger
- Initialize the virtual environment and install the dependencies:
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
- Read the documentation:
python3 lz.py -h
- Run one of the supported commands:
python3 lz.py generate <num_keys> [<filename>]
python3 lz.py withdraw <token> <network> <min_amount> <max_amount> [--min_time=<min_time>] [--max_time=<max_time>] [--keys=<private_keys>] [--exchange=<exchange>]
python3 lz.py run <bridger_mode> [--keys=<private_keys>] [--refuel=<refuel_mode>] [--limit=<limit>]