Skip to content

Instantly share code, notes, and snippets.

@prokmiha
prokmiha / Balance_check.py
Created May 22, 2023 17:25
Program for wallet seed phrase brute-forcing.
# The code uses API providers from different networks to check the balance of wallets
# whose mnemonic phrases have been determined to be valid. The results are written to a separate file.
from tqdm import tqdm
from web3 import Web3
from eth_account import Account
# Enable unaudited HD wallet features
Account.enable_unaudited_hdwallet_features()