Unix Winsnip is a Python script for sending multiple Ethereum transactions using multiple accounts. Each account can send transactions concurrently using separate workers.
- Send Unit transactions using multiple accounts
- Randomized delays between transactions
- Customizable configurations via
config.json
- Logs with timestamp, info, success, warning, and error levels
- Environment variable loading with
.env
support
- Python 3.x
- Pip
git clone https://github.com/Winnode/Unit_Zero.git
cd Unit_Zero
Install the required Python packages using pip:
pip install -r requirements.txt
or
pip install requests python-dotenv eth-account colorama pyfiglet
nano .env
PRIVATE_KEY_1=PK1
PRIVATE_KEY_2=PK2
...
PRIVATE_KEY_N=PKN
nano config.json
{
"WAKTU_PENGIRIMAN": 5,
"WAKTU_PENGULANGAN": 3,
"MAKS_PENGULANGAN": 5,
"JUMLAH_TRANSAKSI_PER_AKUN": 10,
"BATAS_GAS": 21000,
"HARGA_GAS": 1000000000,
"URL_RPC": "https://rpc-testnet.unit0.dev",
"ID_RANTAI": 88817,
"JUMLAH_KIRIM": 0.0000000000001
}
python run.py