Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/volumefi/paloma_wallet_check
A Node.js web application that lists cryptocurrency addresses, checks their balances via a command-line interface, and indicates whether each balance meets a specified threshold.
https://github.com/volumefi/paloma_wallet_check
Last synced: about 2 months ago
JSON representation
A Node.js web application that lists cryptocurrency addresses, checks their balances via a command-line interface, and indicates whether each balance meets a specified threshold.
- Host: GitHub
- URL: https://github.com/volumefi/paloma_wallet_check
- Owner: VolumeFi
- Created: 2023-11-03T19:08:24.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-07T00:42:10.000Z (5 months ago)
- Last Synced: 2024-08-07T03:21:55.460Z (5 months ago)
- Language: JavaScript
- Size: 688 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🌐 Wallet Balance Checker
This Node.js web application 🚀 reads a list of cryptocurrency wallet addresses from a text file, serves them as clickable URLs on a web page, and upon clicking, checks their balances using the `palomad` CLI to determine if they meet a specified minimum balance threshold.
## Features
- **Configurable Settings**: Set your server's host, port, and protocol via an `.env` file. ⚙️
- **Web Interface**: Visit the root URL to view and interact with the list of wallet addresses. 🌍
- **Balance Verification**: Click an address to verify its balance through the `palomad` command-line query. 💼
- **Threshold Validation**: The app evaluates if the balance is above or below a pre-defined value, displaying true or false accordingly. ✅❌## How to Use
1. Clone the repository.
2. Install the dependencies with `npm install`.
3. Create an `.env` file with `PROTOCOL`, `HOST`, and `PORT` variables.
4. Add your wallet addresses to `addresses.txt`.
5. Start the server using `npm start`.
6. Open your web browser to your server's URL to view and interact with the wallet addresses.## Installation
```bash
git clone [email protected]:VolumeFi/wallet_check.git
cd wallet_check
npm install
# Configure your .env file
npm start