A simple web application that allows users to view UTXOs and their corresponding merkle proofs for any Bitcoin address.
- Input any Bitcoin address
 - View all UTXOs associated with the address
 - See merkle proofs for each UTXO
 - Printer-friendly output format
 
- 
Create a new account on Render.com
 - 
Click "New +" and select "Web Service"
 - 
Connect your GitHub repository
 - 
Fill in the following details:
- Name: 
bitcoin-utxo-viewer(or your preferred name) - Environment: 
Node - Build Command: 
npm install - Start Command: 
node server.js 
 - Name: 
 - 
Click "Create Web Service"
 
That's it! Render will automatically deploy your application and provide you with a URL.
- Install dependencies:
 
npm install- Start the server:
 
node server.js- Open 
http://localhost:3000in your browser 
PORT: Port number (default: 3000)NODE_ENV: Set to 'production' in production environment