Use this page when deploying cold vault operations. The cold bridge is required only for cold storage deployments.
The cold bridge runs on the air-gapped workstation and provides:
- A local UI for cold vault operations.
- A local API for uploading, decoding, and downloading operation payloads.
- Optional payload encryption and decryption for
.datfiles. - A local endpoint that the vault component polls for signing work.
The cold bridge is stateless and uses in-memory storage for workloads. It does not require a database or persistent volume.
For workstation requirements, see Cold vault workstation planning.
Before installing the cold bridge:
- Build the workstation according to Cold vault workstation planning.
- Verify that network connectivity is disabled.
- Install the hardened operating system from verified media.
- Install KMS or HSM drivers, if applicable.
- Prepare approved transfer media for moving
.datfiles.
Transfer the cold bridge software, vault stack components, and configuration files to the air-gapped workstation using approved physical media.
Install the components using the deployment method agreed for your environment. The cold bridge and vault are deployed together so the vault can poll the local cold bridge endpoint for signing work.
If your deployment enables cold bridge payload encryption, configure the same passphrase on:
- The cold bridge.
- The online system configuration used to process cold bridge payloads.
If the passphrase differs between the air-gapped workstation and the online system, operation payloads cannot be decrypted.
After startup, call the status endpoint from the air-gapped workstation:
curl -X GET "{ColdBridgeURL}/v1/feed/status"Expected response shape:
{
"accountToSign": 0,
"accountSigned": 0,
"transactionToSign": 0,
"transactionSigned": 0,
"manifestToSign": 0,
"manifestSigned": 0
}Register the cold vault with the standard vault registration process:
After registration, the vault can appear as Pending because the cold vault cannot automatically connect to the online deployment.
Complete the manual handshake by transferring the initial vault payload from the cold bridge to the online system:
- On the air-gapped workstation, download the payload from the cold bridge.
- Transfer the
.datfile to the online environment. - Import the
.datfile into Ripple Custody. - Verify that the vault status is
Completed.
For exact UI and API steps, see:
- Complete the first-time vault handshake in the UI
- Complete the first-time vault handshake with the API
Before using the cold vault for production operations:
- Create a test account using the cold vault.
- Export pending operations from the online environment.
- Transfer the
.datfile to the air-gapped workstation. - Upload the file to the cold bridge.
- Confirm that the operation appears in the signing queue.
- Download the signed
.datfile. - Transfer the signed file back to the online environment.
- Import the signed operations and verify the result.
| Endpoint | Method | Purpose |
|---|---|---|
/v1/feed/status | GET | Get signing status counters. |
/v1/feed/upload | POST | Upload operations to be signed. |
/v1/feed/download | GET | Download signed operations or handshake payloads. |
/v1/feed/decode | POST | Decode a payload for inspection before signing. |
For day-to-day operation steps, see Process cold vault operations with the API.