Listing Thumbnail

    Message Box Server

     Info
    Deployed on AWS
    Secure, real-time P2P messaging server for BSV Blockchain with encrypted payloads and identity-based routing.

    Overview

    Open image

    BSV Blockchain Message Box Server is a production-ready, secure peer-to-peer message routing solution designed specifically for the BSV ecosystem. It enables encrypted, authenticated communication between users on the MetaNet.

    KEY FEATURES:

    • Secure identity-based routing using public key cryptography
    • Real-time messaging via WebSocket and HTTP APIs
    • End-to-end encryption following BRC-2 standards
    • Message persistence with MySQL backend
    • Authenticated communications using BRC-103
    • Support for custom message boxes and overlay routing
    • RESTful API for message sending, listing, and acknowledgment
    • Live message delivery with fallback mechanisms

    USE CASES:

    • Payment notifications and invoicing systems
    • Secure inter-application messaging
    • Real-time collaborative tools on BSV
    • Decentralized communication infrastructure
    • Peer-to-peer data exchange

    TECHNICAL SPECIFICATIONS:

    • Built on Node.js with Express framework
    • MySQL database for message storage
    • WebSocket support via @bsv/authsocket
    • Docker containerized for easy deployment
    • Comprehensive API documentation
    • Open source under Open BSV License

    SECURITY:

    • Mutual authentication on all endpoints
    • AES-encrypted message payloads
    • Identity verification using Bitcoin signatures
    • No message access without proper credentials

    This open-source solution integrates seamlessly with the BSV SDK ecosystem and MessageBoxClient library for rapid application development.

    Highlights

    • End-to-end encrypted messaging with BRC-2 encryption standard
    • Real-time WebSocket and HTTP API support for instant delivery
    • Identity-based authentication using Bitcoin public key cryptography

    Details

    Delivery method

    Supported services

    Delivery option
    Message Box Server Container

    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

    Message Box 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

    Message Box Server Container

    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 AWS Marketplace release with secure P2P messaging, WebSocket support, and encrypted payloads

    Additional details

    Usage instructions

    MESSAGE BOX SERVER - USAGE INSTRUCTIONS

    This container provides a peer-to-peer message routing server for BSV wallet applications, exposing HTTP endpoints and a WebSocket server for identity-based, encrypted messaging. Nginx fronts the app on port 8080. Image: 709825985650.dkr.ecr.us-east-1.amazonaws.com/bsv-blockchain/message-box-server:<version>

    1. PREREQUISITES
    • AWS account with permissions to pull from Marketplace ECR and run containers (ECS/EKS/EC2).
    • MySQL 8.0 database reachable from the container (Amazon RDS recommended). Tables auto-create on first launch.
    • Outbound HTTPS to wallet storage and BSV services; inbound HTTP/WebSocket on port 8080.
    • Minimum 1 vCPU, 1 GB RAM; recommended 2 vCPU, 3 GB RAM for production.
    • A 32-byte hex private key (store in Secrets Manager).
    • URL of a deployed wallet storage service.
    1. CONFIGURATION Set these environment variables:
    • NODE_ENV: production
    • PORT: 3000
    • SERVER_PRIVATE_KEY: 64-character hex string (secret)
    • WALLET_STORAGE_URL: https://your-wallet-storage-endpoint 
    • KNEX_DB_CONNECTION: {"host":"<rds-endpoint>","port":3306,"user":"messagebox_admin","password":"<secret>","database":"messagebox_backend"}
    • ENABLE_WEBSOCKETS: true
    • HOSTING_DOMAIN: https://your-public-domain 
    • BSV_NETWORK: main (or test)

    Optional: LOGGING_ENABLED, ROUTING_PREFIX, ENABLE_FIREBASE with FIREBASE_PROJECT_ID and FIREBASE_SERVICE_ACCOUNT_JSON.

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

    1. STEP-BY-STEP DEPLOYMENT (Amazon ECS on Fargate) Step 1: Authenticate Docker to Marketplace ECR: 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 Amazon RDS for MySQL 8.0 in your VPC. Create the messagebox_backend database and user.

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

    Step 4: Create an ECS task definition using the Marketplace image. Map container port 8080. Inject env vars from Secrets Manager. Set CPU 1024, memory 3072.

    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. Enable sticky sessions for WebSockets.

    Step 6: Point Route 53 at the ALB and attach an ACM certificate.

    1. VERIFYING THE APPLICATION IS RUNNING
    • CloudWatch Logs show the server starting and listening on the configured port.
    • Test HTTP: curl https://<your-domain>/ returns 200.
    • Verify Knex created tables: connect to MySQL, run "USE messagebox_backend; SHOW TABLES;" - expect messages, notification_permissions, device_registrations.
    • WebSocket: connect a BRC-103 authenticated client to wss://<your-domain> and confirm the "authenticated" event fires.
    • Confirm ALB target group reports the task as healthy.
    1. MONITORING
    • CloudWatch Logs via awslogs driver on the ECS task.
    • Container Insights for CPU, memory, network metrics. Alarm at 80% CPU/memory and on task count below desired.
    • ALB metrics: HealthyHostCount, HTTPCode_Target_5XX_Count, TargetResponseTime, ActiveConnectionCount (WebSockets hold connections open).
    • RDS: enable Enhanced Monitoring and Performance Insights. Watch connections, slow queries on the messages table, storage.
    • External health checks: poll GET https://<your-domain>/ for 200.

    DOCUMENTATION

    SUPPORT GitHub Issues: https://github.com/bsv-blockchain/message-box-server/issues 

    Support

    Vendor support

    Support Type: Community Support (GitHub Issues) Support URL: https://github.com/bsv-blockchain/message-box-server/issues  Documentation: https://github.com/bsv-blockchain/message-box-server#readme  Response Time: Best effort via community

    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.