Pluggable Backup Services for BRC-140 Share Vaults
If you lose your wallet's key, recovery usually depends on either writing down a mnemonic yourself or trusting one company to hold the whole thing, which is a single point of failure. There was no shared way for a wallet to spread pieces of a recovery secret across several independent backup providers so that no single provider, or even a couple of colluding ones, could reconstruct your key alone. This makes it possible to enroll with multiple backup services interchangeably and only get your key back once you have gathered enough pieces from enough of them.
Reference for an AI
Everything an assistant needs to answer questions about BRC-154 accurately, including what it depends on.
Summary
- Why
- Wallets need a way to back up a recoverable key across several independent services without any single service holding enough to steal or rebuild it alone.
- What
- BRC-154 is an HTTP profile for backup services that store and release, after authentication, a single BRC-140 key share per account so wallets can enroll multiple independent providers and recover a key by threshold.
- How
- A wallet splits a root key into BRC-140 shares, deposits at most one share per backup service to POST /share/enroll after authenticating via the negotiated /auth/start and /auth/complete flow, and later calls POST /share/retrieve on enough services to gather a threshold of shares and reconstruct the key locally.
What this lets you do
- Enroll a single key share with a backup service after authenticating
- Retrieve a stored share to help reconstruct a lost root key
- Check a service's lifecycle status before enrolling or retrying recovery
- Rotate or delete a stored share explicitly
- Spread shares across multiple independent providers without any one seeing enough to rebuild the key
Written by claude-sonnet-5 from the specification text. Where the two differ, the original is correct.
The specification
Abstract
This BRC defines an HTTP backup service profile for optional recovery of BRC-140 key shares. A backup service stores at most one BRC-140 share per authenticated account and releases it only after authentication. Wallets may enroll a list of independent service URLs, deposit distinct shares across them under a threshold scheme, and reconstruct the key locally after obtaining enough shares.
A backup service MUST NOT be required for ordinary wallet operation under BRC-100. It MUST NOT receive the root private key, and a conforming wallet MUST NOT send enough shares to any single service to meet the wallet’s recovery threshold.
Motivation
BRC-140 specifies threshold key sharing and the canonical share serialization. It does not define how optional network providers store and release those shares. Without a shared service profile, wallets invent incompatible recovery APIs and users concentrate recovery on a single operator.
This BRC specifies a minimal, pluggable wire contract so any operator can run a share vault and any wallet can enroll multiple providers interchangeably. Cryptography remains BRC-140; this document covers discovery metadata, authentication for release, share endpoints, and operator lifecycle signaling.
Specification
Terminology
| Term | Meaning |
|---|---|
| Backup service | HTTP origin that stores ≤ 1 BRC-140 share per authenticated account and releases it after auth. |
| Wallet | Client that splits/reconstructs keys per BRC-140 and speaks this profile. |
| Enrollment | Successful deposit of exactly one share to one backup service for one authenticated account. |
| Recovery | Obtaining ≥ threshold distinct shares and reconstructing the key in the wallet. |
Relationship to other BRCs
| Standard | Role |
|---|---|
| BRC-140 | Share math and x.y.threshold.integrity serialization (normative for share payloads) |
| BRC-75 | Offline mnemonic recovery; complementary and out of scope |
| BRC-38 / BRC-39 / BRC-40 | Wallet data export/sync; out of scope |
| BRC-100 | App↔wallet interface; MUST remain usable with zero backup services configured |
Non-goals
- Threshold signatures or spend-time co-signing.
- Requiring backup services for send, receive, or BRC-100 connect.
- A global registry of providers.
- Wallet UTXO / history synchronization.
- Mandating a particular identity or KYC regime.
Cryptographic model
- The wallet splits its root private key with BRC-140.
- The wallet deposits at most one share per backup service.
- Reconstruction happens only in the wallet after enough shares are obtained.
- Services MUST NEVER receive the reconstructed key.
Invariant (service): store at most one share per authenticated account; reject non-BRC-140 share strings.
Invariant (wallet): MUST NOT send the root private key, mnemonic, or ≥ threshold shares from one split to any single backup service.
A common enrollment scheme is threshold 2 of 3 total shares. Other thresholds are permitted if the wallet and user agree on the scheme before deposit.
Account binding
The bearer session returned by authentication MUST be bound to a provider-local account. Share endpoints operate on that authenticated account and MUST NOT accept a caller-supplied email, handle, public key, or account hash to select another account's share.
The provider MAY use any internal account identifier. That identifier is not part of this wire profile and MUST NOT be treated as an anonymity mechanism: a provider can associate the stored share with the identity presented during authentication.
HTTP profile
Base URL is an HTTPS origin (loopback HTTP MAY be used for development). Paths are relative to that origin. JSON UTF-8 bodies. Unknown JSON fields MUST be ignored.
GET /info
No auth required.
{
"name": "Example Backup",
"version": "0.1.0",
"role": "backup-service",
"authMethods": ["com.example.connect", "webauthn", "email-otp"],
"lifecycle": {
"status": "active",
"sunsetAt": null,
"retireAt": null,
"message": null,
"successorUrl": null
}
}
| Field | Requirement | Meaning |
|---|---|---|
name | MUST | Operator display name |
version | SHOULD | Operator software version |
role | SHOULD | Constant backup-service |
authMethods | MUST | Non-empty array of supported authentication method identifiers |
lifecycle | MUST | Operator lifecycle block |
Lifecycle
lifecycle.status | Meaning |
|---|---|
active | Enroll and retrieve allowed |
sunset | Retrieve allowed; new enrolls MUST be rejected |
retired | Retrieve MUST fail |
| Field | Requirement | Meaning |
|---|---|---|
sunsetAt | MAY | RFC 3339 UTC |
retireAt | SHOULD when sunsetting | Last expected retrieve time (RFC 3339 UTC) |
message | MAY | Operator explanation |
successorUrl | MAY | Suggested replacement base URL |
Wallets SHOULD refresh /info for enrolled URLs and stop new enrolls when status is not active. Operators SHOULD provide a sunset window before retireAt.
Authentication
Authentication is capability-negotiated. This BRC defines a common start/complete envelope but does not mandate a specific identity provider or factor.
authMethods contains identifiers for authentication profiles understood by the service. Provider-specific identifiers SHOULD use reverse-domain form (for example com.example.connect). Existing standardized identifiers such as webauthn MAY be used directly. Email OTP, redirect-based Connect providers, passkeys, and challenge-response systems are all possible profiles; none is required by this BRC. Wallets MUST ignore methods they do not implement.
An authentication method used for recovery MUST remain usable without possession of the secret being recovered. A signature key derived only from the BRC-140-protected root key MUST NOT be the sole recovery method, because that creates a circular dependency. Redirect or challenge methods are conforming only when their credential can be recovered independently.
POST /auth/start
{
"method": "com.example.connect",
"params": {}
}
Response (200):
{
"requestId": "<opaque>",
"expiresInSec": 600,
"action": {
"type": "redirect",
"url": "https://identity.example/authorize?request=<opaque>"
}
}
params and action are method-specific objects. Defined action.type values are:
redirect— openaction.url; the authorization result is supplied to/auth/complete.challenge— produce a proof overaction.challenge.outOfBand— complete the externally delivered challenge (such as an OTP).
Unknown action fields MUST be ignored.
POST /auth/complete
{
"requestId": "<opaque>",
"response": {}
}
Response (200):
{
"token": "<bearer secret>",
"expiresInSec": 1800
}
response is method-specific. The service MUST validate that it completes the referenced request and MUST bind the returned bearer token to the authenticated provider-local account.
Share endpoints use Authorization: Bearer <token>. Tokens SHOULD be short-lived and scoped to backup-service operations.
Share endpoints
All share endpoints require a valid bearer session.
{
"share": "<BRC-140 backup string>"
}
(share only where noted.)
POST /share/enroll
- MUST validate
shareas BRC-140 backup serialization. - MUST fail with
403when lifecycle forbids enroll. - Stores exactly one share for the authenticated account (overwrite policy is operator-defined;
/share/rotateSHOULD be preferred for explicit replacement).
Response (200):
{ "ok": true, "enrolledAt": "<RFC 3339>" }
POST /share/retrieve
Request: {}.
Response (200):
{ "share": "<BRC-140 backup string>", "enrolledAt": "<RFC 3339>" }
- MUST NOT return a share without successful auth under the service’s policy.
- MUST fail when lifecycle is
retiredor pastretireAt. - MUST
404when no share is stored.
POST /share/rotate (SHOULD)
Replace the stored share after auth. Same validation as enroll.
POST /share/delete
Request: {}. Idempotent; response { "ok": true }.
Wallet requirements
- Support a list of backup-service base URLs; an empty list MUST be valid.
- Ordinary spend / BRC-100 use MUST NOT depend on any backup service.
- Deposit at most one share from a given split to a given service origin.
- Reconstruct only locally.
- Keep offline BRC-140 and/or BRC-75 recovery available without services.
Security considerations
| Risk | Mitigation |
|---|---|
| Single service compromised | Threshold ≥ 2; one share insufficient |
| Colluding services | Threshold and enrollment topology determine exposure; wallets MUST NOT send ≥ threshold shares to one party |
| Authentication compromise | Short-lived scoped tokens, rate limiting, and operator-appropriate factors |
| Circular recovery auth | A key derived solely from the protected root MUST NOT be the only release credential |
| Identity↔share linkage | The provider can associate its authenticated account with the share; treat providers as share custodians for that record |
| Operator disappearance | Multi-provider enrollment and offline BRC-140 / BRC-75 |
| Malformed shares | Reject non-BRC-140; verify integrity at reconstruct |
Protect share transport with TLS. Minimize logging of share material. Encrypt shares at rest under an operator key that is not the user’s root key.
Implementations
HandCash Desktop and its backup-service prototype implement multi-provider BRC-140 share storage on branch feat/backup-services. The prototype's original email-OTP exchange predates the capability-negotiated authentication envelope in this draft and is not presented as a complete conforming implementation.
References
- <a name="footnote-1">1</a>: BRC-140 — Threshold Key Sharing and Backup via Shamir's Secret Sharing Scheme
- <a name="footnote-2">2</a>: BRC-100 — Unified Wallet-to-Application Interface
- <a name="footnote-3">3</a>: https://github.com/HandCash/HANDCASH-DESKTOP (branch
feat/backup-services)