This C# application checks the balance of given Ethereum wallet addresses and identifies addresses above a certain threshold. If the balance of the address is over $1, it saves it in high_balance.txt
file.
-
Open the solution file (.sln).
-
Compile the project from the Build menu.
-
Enter the addresses in the eth.txt file inside the
.\Checker
folder. -
Write the current eth/dollar value in the config.json file in the
.\Checker
folder. -
Run
Etherum Balance Checker.exe
.
{
"ethereum_price_usd": "0" // Enter Ethereum price here
}
- .NET Core 3.1 or higher version
- Nethereum.Web3 and Newtonsoft.Json NuGet packages
- An Ethereum API provider (such as Alchemy or Infura)
- This program can be used to pull bulk ETH addresses.
- If you have a log, you can quickly check it with this.
-
https://eth-mainnet.alchemyapi.io/v2/SWnnr6***44af_QbWrN1 is used as API address. To use your own API address, you need to update line 43 in the Program.cs file.
-
The operation of the program depends on the majority of addresses, if you are going to check a lot of addresses, it is recommended to close the console for speed.
-
This Project is Open Source and you can make edits and improvements as you wish.
- If you want to contribute, please leave a Star ⭐ in this Repo.
- This project is for educational purposes.
This project is licensed under the MIT. For more information, see the License.