Launch a distributed MPC node cluster for institutional-grade key management. Threshold signatures across 15+ chains—no single node ever holds the full private key. Powered by Lux MPC.
Hardware wallets create a single point of failure. Multisig wallets are expensive on-chain. MPC splits the private key across distributed nodes so no single party—or attacker—can sign alone.
State-of-the-art threshold ECDSA protocol for Bitcoin, Ethereum, Polygon, BNB, XRP, and all secp256k1 chains. Replaces the older GG18 scheme with stronger security proofs and fewer communication rounds.
Threshold Schnorr signatures for Ed25519 chains like Solana and TON. Supports Bitcoin Taproot. Efficient two-round signing with native aggregation.
Linear Secret Sharing enables dynamic resharing—change participants, rotate shares, or adjust the threshold without regenerating keys or moving assets on-chain.
A single MPC deployment generates wallets and signs transactions across all supported networks.
Bootnode deploys and manages the full MPC stack: nodes, messaging, encrypted storage, API, and monitoring.
Bootnode provisions a Kubernetes StatefulSet of MPC nodes with stable DNS, persistent encrypted storage, health checks, and auto-recovery.
Keys are generated collaboratively across all nodes. No single node—or operator—ever sees the full private key. Zero-knowledge proofs verify each share.
Only t-of-n nodes are needed to produce a valid signature. Sub-second signing latency for both ECDSA and EdDSA across all supported chains.
Rotate participants, change threshold, or add new nodes without regenerating keys. Assets stay at the same addresses throughout.
Key shares are encrypted with AES-256 in BadgerDB. Node-to-node communication uses NATS with TLS. Post-quantum TLS available.
REST API secured with JWT tokens, OIDC login via Lux ID / Hanzo ID, role-based API keys, MFA support, and full audit logging.
Full HTTP API for wallet creation, signing, and resharing. Go client library for direct integration. Etherscan-compatible bridge endpoint.
Nodes coordinate via NATS pub/sub with JetStream for reliable delivery. Consul handles service discovery and health checks.
One keygen ceremony produces addresses for all supported chains. Derive BTC, ETH, SOL, XRP, and LUX wallets from a single distributed key.
Bootnode handles node provisioning, networking, and key ceremony orchestration. You call the API.
Choose your threshold (e.g., 3-of-5), select supported chains, and configure authentication. All through the dashboard or API.
Bootnode provisions MPC nodes as a Kubernetes StatefulSet with encrypted storage, NATS messaging, and Consul discovery.
Trigger a distributed keygen ceremony via the API. Nodes collaboratively generate key shares—no full key is ever assembled.
Submit signing requests via REST API. Any t-of-n nodes produce a valid ECDSA or EdDSA signature in under 500ms.
Create wallets and sign transactions with straightforward REST calls. The MPC protocol complexity is handled by the node cluster.
# Create a distributed wallet
curl -X POST https://mpc.yourorg.com/api/v1/wallets \
-H "Authorization: Bearer $TOKEN" \
-d '{"name": "treasury", "chains": ["ETH", "BTC", "SOL"]}'
# Response: addresses for every chain
{
"wallet_id": "w_8f3a...",
"addresses": {
"ETH": "0x7c2e...9a1f",
"BTC": "bc1q...xm4p",
"SOL": "7Kf2...Rn3v"
},
"threshold": "3-of-5",
"protocol": "CGGMP21+FROST"
}
# Sign an Ethereum transaction
curl -X POST https://mpc.yourorg.com/api/v1/sign \
-H "Authorization: Bearer $TOKEN" \
-d '{
"wallet_id": "w_8f3a...",
"chain": "ETH",
"tx": {
"to": "0xdead...beef",
"value": "1000000000000000000",
"gas": 21000
}
}'From treasury management to cross-chain bridges, MPC key management provides the security foundation.
Multi-sig-grade security without on-chain overhead. CFOs and treasury teams sign with policy-controlled approval flows.
Secure bridge validators with threshold signatures. No single validator can authorize a withdrawal.
Offer institutional custody with distributed key management. SOC 2 and regulatory compliance built in.
Protect protocol-owned liquidity with MPC-secured admin keys. Eliminate single-key risks for governance actions.
Replace single-key hot wallets with threshold signing. Faster than multisig, more secure than HSMs.
Integrate MPC signing into CI/CD pipelines, bots, and automated trading systems with API key authentication.
Talk to our team about deploying an MPC network for your organization. Custom thresholds, dedicated infrastructure, and white-glove onboarding.