This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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() |