Listing Thumbnail

    Wallet Infrastructure (UTXO Management Server)

     Info
    Deployed on AWS
    Secure UTXO management server for BSV wallets with mutual authentication, customizable monetization, and flexible storage.

    Overview

    Open image

    Wallet Infra provides a production-ready UTXO (Unspent Transaction Output) management server for Bitcoin SV (BSV) blockchain applications. Built on the wallet-toolbox framework, it offers a secure, scalable backend for BSV wallet clients without ever accessing user-held private keys.

    Key Capabilities:

    • Automatic UTXO lifecycle management (storage, spent/unspent tracking, labels, baskets, certificates)
    • Mutual authentication between client and server using BSV digital signatures
    • Customizable monetization with per-request or per-route micropayment fees in satoshis
    • Flexible database support (MySQL, PostgreSQL, SQLite) via Knex.js
    • Auto-migrations on startup for seamless database schema management
    • Extensible architecture for custom routes, middleware, and business logic
    • BRC-100 compliant wallet infrastructure

    Built for:

    • Wallet application developers building BSV solutions
    • Enterprises requiring secure, scalable wallet backends
    • Service providers offering wallet infrastructure as a service
    • Teams building BRC-100 compliant wallet systems

    Technical Stack:

    • TypeScript/Node.js with Express framework
    • BSV SDK and wallet-toolbox integration
    • Payment Express Middleware for micropayments
    • Auth Express Middleware for mutual authentication
    • Knex.js for database migrations and queries
    • MySQL (easily adaptable to PostgreSQL, SQLite)

    Security Features:

    • Never stores or accesses user private keys
    • Mutual authentication ensures only authorized clients can access data
    • Secure UTXO tracking and state management
    • Built-in support for certificate-based authentication

    Deployment:

    • Containerized for easy deployment on ECS, EKS, or Fargate
    • Environment-based configuration
    • Production-ready with auto-migrations
    • Scalable architecture supporting multiple storage providers

    Visit https://github.com/bsv-blockchain/wallet-infra  for complete documentation and deployment guides.

    Highlights

    • Automatic UTXO management with mutual authentication, secure storage of transaction outputs, spent/unspent tracking, and certificate-based authorization
    • Customizable monetization model supporting micropayment fees in satoshis per request or per route using BSV payment middleware

    Details

    Delivery method

    Supported services

    Delivery option
    Container Image via ECR

    Latest version

    Operating system
    Linux

    Deployed on AWS
    New

    Introducing multi-product solutions

    You can now purchase comprehensive solutions tailored to use cases and industries.

    Multi-product solutions

    Features and programs

    Financing for AWS Marketplace purchases

    AWS Marketplace now accepts line of credit payments through the PNC Vendor Finance program. This program is available to select AWS customers in the US, excluding NV, NC, ND, TN, & VT.
    Financing for AWS Marketplace purchases

    Pricing

    Wallet Infrastructure (UTXO Management Server)

     Info
    This product is available free of charge. Free subscriptions have no end date and may be canceled any time.
    Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator  to estimate your infrastructure costs.

    Vendor refund policy

    N/A - Free and open-source.

    How can we make this page better?

    Tell us how we can improve this page, or report an issue with this product.
    Tell us how we can improve this page, or report an issue with this product.

    Legal

    Vendor terms and conditions

    Upon subscribing to this product, you must acknowledge and agree to the terms and conditions outlined in the vendor's End User License Agreement (EULA) .

    Content disclaimer

    Vendors are responsible for their product descriptions and other product content. AWS does not warrant that vendors' product descriptions or other product content are accurate, complete, reliable, current, or error-free.

    Usage information

     Info

    Delivery details

    Container Image via ECR

    Supported services: Learn more 
    • Amazon ECS
    • Amazon EKS
    • Amazon ECS Anywhere
    • Amazon EKS Anywhere
    Container image

    Containers are lightweight, portable execution environments that wrap server application software in a filesystem that includes everything it needs to run. Container applications run on supported container runtimes and orchestration services, such as Amazon Elastic Container Service (Amazon ECS) or Amazon Elastic Kubernetes Service (Amazon EKS). Both eliminate the need for you to install and operate your own container orchestration software by managing and scheduling containers on a scalable cluster of virtual machines.

    Version release notes

    Initial release of Wallet Infrastructure with UTXO management, mutual authentication, and customizable monetization features

    Additional details

    Usage instructions

    WALLET INFRASTRUCTURE (UTXO MANAGEMENT SERVER) - USAGE INSTRUCTIONS

    This container provides a JSON-RPC HTTP server on port 8080 for BRC-100 compliant BSV wallet clients to store and manage UTXOs. Image: 709825985650.dkr.ecr.us-east-1.amazonaws.com/bsv-blockchain/wallet-infra:<version>

    1. PREREQUISITES
    • AWS account with permissions to pull from Marketplace ECR and run containers (ECS/EKS/EC2/App Runner).
    • MySQL 8.0 database reachable from the container (Amazon RDS recommended). Tables auto-create on first launch.
    • Outbound HTTPS to BSV network services; inbound HTTP on port 8080.
    • Minimum 0.5 vCPU, 512 MB RAM; recommended 1 vCPU, 1 GB RAM.
    • A 32-byte hex private key for the server identity (store in Secrets Manager).
    1. CONFIGURATION Set the following environment variables on the container:
    • NODE_ENV: production
    • BSV_NETWORK: main (or test)
    • HTTP_PORT: 8080
    • SERVER_PRIVATE_KEY: 64-character hex string (store as a secret)
    • KNEX_DB_CONNECTION: JSON string, e.g. {"host":"<rds-endpoint>","user":"wallet_admin","password":"<secret>","database":"wallet_storage","port":3306}
    • ENABLE_NGINX: true (recommended for production)

    Before first launch, create the database in MySQL: CREATE DATABASE wallet_storage; CREATE USER 'wallet_admin'@'%' IDENTIFIED BY '<password>'; GRANT ALL PRIVILEGES ON wallet_storage.* TO 'wallet_admin'@'%';

    1. STEP-BY-STEP DEPLOYMENT (Amazon ECS on Fargate) Step 1: Subscribe on AWS Marketplace, then authenticate Docker: aws ecr get-login-password --region us-east-1 | docker login --username AWS --password-stdin 709825985650.dkr.ecr.us-east-1.amazonaws.com

    Step 2: Provision an Amazon RDS for MySQL 8.0 instance in your VPC. Note the endpoint and credentials. Create the wallet_storage database and user as shown above.

    Step 3: Store SERVER_PRIVATE_KEY and KNEX_DB_CONNECTION in AWS Secrets Manager. Grant the ECS task execution role permission to read them.

    Step 4: Create an ECS task definition using the Marketplace image. Map container port 8080. Inject environment variables, sourcing secrets from Secrets Manager. Set CPU 512, memory 1024.

    Step 5: Create a Fargate service in a private subnet with outbound internet (NAT gateway). Place behind an Application Load Balancer with HTTPS listener and target group on port 8080. Health check: HTTP GET / expecting 200.

    Step 6: Point a Route 53 record at the ALB and attach an ACM certificate to the HTTPS listener.

    1. VERIFYING THE APPLICATION IS RUNNING
    • CloudWatch Logs should show: "wallet-storage server started"
    • Test the endpoint: curl -X POST https://<your-domain>/ -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","id":1,"method":"walletUtxoStorage_getHeight","params":[]}' - a JSON response with the current blockchain height confirms the server and database are working.
    • Confirm Knex created tables: connect to MySQL, run "USE wallet_storage; SHOW TABLES;" - expect outputs, transactions, baskets, labels, certificates, and others.
    • In the EC2 console, confirm ALB target group reports the task as healthy.
    1. MONITORING
    • CloudWatch Logs: configure awslogs driver on the ECS task; logs go to stdout/stderr.
    • CloudWatch Container Insights: enable on the cluster for CPU, memory, and network metrics. Recommended alarms at 80% CPU/memory, and on task count below desired.
    • ALB metrics: monitor HealthyHostCount, HTTPCode_Target_5XX_Count, TargetResponseTime (typical under 200ms).
    • RDS: enable Enhanced Monitoring and Performance Insights. Watch connection count, slow queries on the outputs table, and storage utilization.
    • External health checks: poll GET https://<your-domain>/ for a 200 response.

    DOCUMENTATION

    SUPPORT GitHub Issues: https://github.com/bsv-blockchain/wallet-infra/issues 

    Support

    Vendor support

    Community support is available through the GitHub repository at https://github.com/bsv-blockchain/wallet-infra . Users can:

    • Open issues for bug reports and feature requests
    • Submit pull requests for improvements and enhancements
    • Access comprehensive documentation in the repository README
    • Explore example configurations and database setup instructions

    For technical questions and implementation guidance, please create a GitHub issue with detailed information about your use case, environment, and deployment target. The Wallet Infra project welcomes contributions from the community.

    Support Level: Community-driven open source project Response Time: Best effort via GitHub issues Documentation: Complete setup, configuration, and deployment guides available in repository

    AWS infrastructure support

    AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.

    Similar products

    Customer reviews

    Ratings and reviews

     Info
    0 ratings
    5 star
    4 star
    3 star
    2 star
    1 star
    0%
    0%
    0%
    0%
    0%
    0 reviews
    No customer reviews yet
    Be the first to review this product . We've partnered with PeerSpot to gather customer feedback. You can share your experience by writing or recording a review, or scheduling a call with a PeerSpot analyst.