Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.vaulkyrie.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Vaulkyrie is a Solana wallet suite for users and builders who want more than a single local private key. The suite brings together a browser wallet, cross-device signing coordination, FROST threshold custody, Privacy Vault flows powered by Umbra, and a post-quantum-oriented PQC Wallet path based on Winternitz one-time authorization.
Vaulkyrie is early-stage software. The code has not completed a formal third-party audit, the SDK and CLI are being prepared for public distribution, and this documentation should be treated as initial technical documentation for testing and review. Do not use Vaulkyrie for production custody or high-value funds yet.

Threshold Vault

Split signing authority across participants with FROST DKG and threshold Ed25519 signatures.

PQC Wallet

Use a Winternitz one-time authorization path that advances to a fresh root after each PQC spend.

Privacy Vault

Access private transfer workflows through Vaulkyrie’s Umbra integration.

What Vaulkyrie offers

Vaulkyrie is designed as a wallet suite rather than a single wallet mode.
OptionWho it is forWhat it does
Threshold VaultTeams, shared treasuries, advanced self-custody usersRequires a threshold set of participants to cooperate before a Solana transaction can be signed.
PQC WalletUsers testing hash-based authorization modelsUses one-time Winternitz signing material and rotates to the next root after each spend.
Privacy VaultUsers testing private transfer workflowsConnects Vaulkyrie wallet flows to Umbra-powered private transfer operations.
Relay ServerMulti-device users and operatorsCoordinates cross-device DKG/signing sessions and optional server cosigner support.
SDK and CLIDevelopersProvide instruction builders, PDA helpers, account decoding, DKG harnesses, and integration tooling.

Main website

The public Vaulkyrie website and landing page.

GitHub organization

The destination organization for Vaulkyrie repositories.

X / Twitter

Official Vaulkyrie updates.

System overview

Current code-sourced status

SurfaceCurrent state
Browser walletImplemented as a Vite React browser extension in src/. It includes onboarding, approval UI, threshold signing, PQC wallet UI, Privacy Vault UI, and internal wallet SDK code.
Relay serverImplemented in relay-server/src/. It supports WebSocket ceremony relay, session invites, server cosigner registration/signing, and PQC sponsorship helpers.
Rust SDKImplemented in crates/vaulkyrie-sdk/. It includes instruction builders, PDA helpers, account decoders, error decoding, and optional FROST helpers.
CLIImplemented in crates/vaulkyrie-cli/. It is usable from the workspace for DKG harnesses, instruction JSON, PDA derivation, decoding, and inspection.
TypeScript SDKNow being prepared as a package from browser SDK code. Until it is published, local workspace/package-link usage is the intended path.

Where to start