Shielded Pool#
Attention
Shielded state transitions were enabled in Protocol Version 12. They use the Orchard shielded protocol to move credits into, within, and out of a pool that hides amounts, senders, and recipients.
For the conceptual overview of how the pool works and when to use it, see Shielded Pool.
Overview#
The shielded pool is implemented through state transition types that share a common Orchard bundle structure:
Type |
Name |
Description |
|---|---|---|
15 |
Move credits from Platform addresses into the shielded pool |
|
16 |
Move credits within the pool (no transparent surface) |
|
17 |
Move credits from the pool to a Platform address |
|
18 |
Move credits from an L1 asset lock directly into the pool |
|
19 |
Move credits from the pool back to Dash Core (L1) |
|
20 |
Create a new identity funded from the shielded pool |
|
21 |
Move credits from an identity balance into the shielded pool (protocol version 14+) |
|
22 |
Move credits from the shielded pool to an existing identity’s balance (protocol version 14+) |
All transitions share a common Orchard bundle (anchor, actions, proof, binding signature). Transitions that touch the transparent side (Shield, Unshield, Shield from Asset Lock, Shielded Withdrawal, Identity Create From Shielded Pool, Shield from Identity, Identity Top Up From Shielded Pool) layer the transparent fields on top of that bundle. Shielded Transfer has no transparent surface beyond the bundle itself.
Common Components#
Orchard Bundle#
Every shielded transition includes an Orchard bundle proving that a set of note spends and outputs is internally consistent. The bundle consists of:
Field |
Type |
Size |
Description |
|---|---|---|---|
actions |
array |
Varies |
Orchard actions (spend-output pairs). Limited to |
anchor |
array of bytes |
32 bytes |
Sinsemilla root of the note commitment tree at bundle creation time. Must match an anchor the platform has previously recorded |
proof |
array of bytes |
Varies |
Halo 2 zero-knowledge proof that the actions are valid |
bindingSignature |
array of bytes |
64 bytes |
RedPallas signature binding the bundle’s actions to its net value balance |
See the Orchard bundle primitives in rs-dpp.
Actions#
Each Orchard action structurally contains one spend and one output. The spend consumes a previously created note (revealing its nullifier), while the output creates a new note (publishing its commitment). Although paired in the same struct, observers cannot link which prior note was spent or what value the new note holds — the zero-knowledge proof ensures privacy.
Each action publishes:
Field |
Type |
Size |
Description |
|---|---|---|---|
nullifier |
array of bytes |
32 bytes |
Unique tag derived from the spent note. Used to prevent double-spending |
rk |
array of bytes |
32 bytes |
Randomized verification key for the action’s spend authorization signature |
cmx |
array of bytes |
32 bytes |
Extracted note commitment for the new note |
encryptedNote |
array of bytes |
216 bytes |
Encrypted note payload — 32-byte ephemeral public key + 104-byte note ciphertext + 80-byte out-of-band ciphertext |
cvNet |
array of bytes |
32 bytes |
Net value commitment (Pedersen commitment to the action’s value contribution) |
spendAuthSig |
array of bytes |
64 bytes |
Per-action spend authorization signature — see Shielded Transition Signing |
Each action permanently stores 344 bytes (312 bytes in the note commitment tree + 32 bytes in the nullifier tree). The minimum shielded fee charges a per-action storage allowance of shielded_storage_bytes_per_action bytes at the storage rate: 344 bytes through protocol version 13, and 550 bytes from protocol version 14 to cover tree framing overhead.
Anchors#
An anchor is the Sinsemilla root of the note commitment tree at the time the bundle was constructed. Each shielded transition specifies the anchor it was built against; the platform validates that the anchor was previously published. Clients fetch anchors using getShieldedAnchors or getMostRecentShieldedAnchor.
Anchors are not retained indefinitely. Nodes keep a rolling window governed by shielded_anchor_retention_blocks and shielded_anchor_pruning_interval, pruning anchors older than the retention window at each pruning boundary. A prover selecting an anchor must therefore choose one from the current window, not from arbitrary history.
Platform Sighash#
Transitions with transparent fields (Unshield, Shielded Withdrawal, etc.) bind those fields to the Orchard signatures via a platform sighash computed as:
SHA-256(SIGHASH_DOMAIN || bundle_commitment || extra_data)
This prevents replay attacks where an attacker substitutes transparent fields while reusing a valid Orchard bundle. See the platform sighash implementation in rs-dpp.
Shielded State Transition Details#
Shield#
Move credits from one or more Platform addresses into the shielded pool. The total contributed across address inputs must cover the value being shielded plus the transition fee; excess credits remain in the source addresses.
Field |
Type |
Size |
Description |
|---|---|---|---|
inputs |
map |
Varies |
Map of source Platform addresses to ( |
actions |
array |
Varies |
Orchard actions (spend-output pairs). Shield brings value in from the transparent inputs, so its actions create new notes rather than consuming prior pool notes |
amount |
unsigned integer |
64 bits |
Credits entering the shielded pool |
anchor |
array of bytes |
32 bytes |
|
proof |
array of bytes |
Varies |
Halo 2 proof |
bindingSignature |
array of bytes |
64 bytes |
RedPallas binding signature |
feeStrategy |
array |
Varies |
Fee deduction strategy for address inputs |
userFeeIncrease |
unsigned integer |
16 bits |
Extra fee to prioritize processing if the mempool is full |
inputWitnesses |
array |
Varies |
Address witnesses for each input |
Note
Maximum actions per transition: max_shielded_transition_actions. Address witness signatures are excluded from the signable bytes used by the platform sighash.
Constraints: Minimum inputs: 1. Maximum inputs: max_address_inputs. Minimum per input: 100,000 credits. One witness per input. amount must be greater than zero and at most i64::MAX, and the input sum must cover the amount plus the minimum shielded fee. The fee strategy must be non-empty, contain no duplicate steps, and have at most max_address_fee_strategies steps.
See the implementation in rs-dpp.
Shielded Transfer#
Move credits within the pool between notes. There is no transparent surface — to an outside observer, only the Orchard bundle is visible.
Field |
Type |
Size |
Description |
|---|---|---|---|
actions |
array |
Varies |
Orchard actions |
valueBalance |
unsigned integer |
64 bits |
Net value balance — the fee amount extracted from the shielded pool for this transition |
anchor |
array of bytes |
32 bytes |
|
proof |
array of bytes |
Varies |
Halo 2 proof |
bindingSignature |
array of bytes |
64 bytes |
RedPallas binding signature |
Note
Maximum actions per transition: max_shielded_transition_actions.
See the implementation in rs-dpp.
Unshield#
Move credits from the pool to a Platform address the sender designates. The unshielded amount becomes spendable through normal address-based transitions.
Field |
Type |
Size |
Description |
|---|---|---|---|
outputAddress |
object |
Varies |
Destination Platform address |
actions |
array |
Varies |
Orchard actions (spends consume shielded notes) |
unshieldingAmount |
unsigned integer |
64 bits |
Total credits leaving the pool (recipient amount + fee) |
anchor |
array of bytes |
32 bytes |
|
proof |
array of bytes |
Varies |
Halo 2 proof |
bindingSignature |
array of bytes |
64 bytes |
RedPallas binding signature |
Note
The outputAddress is bound to the Orchard bundle through the platform sighash to prevent substitution attacks. Maximum actions per transition: max_shielded_transition_actions.
See the implementation in rs-dpp.
Shield from Asset Lock#
Move credits from a Dash Core (L1) asset-lock transaction directly into the shielded pool, without first funding a Platform address.
Field |
Type |
Size |
Description |
|---|---|---|---|
assetLockProof |
object |
Varies |
Asset lock proof (InstantSend or ChainLock) authorizing the funds |
actions |
array |
Varies |
Orchard actions |
valueBalance |
unsigned integer |
64 bits |
Credits entering the shielded pool from the asset lock |
anchor |
array of bytes |
32 bytes |
|
proof |
array of bytes |
Varies |
Halo 2 proof |
bindingSignature |
array of bytes |
64 bytes |
RedPallas binding signature |
surplusOutput |
Platform address |
Varies |
(Optional) Platform address that receives the asset-lock surplus ( |
signature |
array of bytes |
65 bytes |
ECDSA signature over the signable bytes proving control of the asset-locked output |
Note
valueBalance must be greater than zero and at most i64::MAX. The ECDSA signature is excluded from the signable bytes used by the platform sighash. Maximum actions per transition: max_shielded_transition_actions.
See the implementation in rs-dpp.
Shielded Withdrawal#
Move credits from the pool back to Dash Core (L1). The funds leave Platform entirely rather than landing in a Platform address.
Field |
Type |
Size |
Description |
|---|---|---|---|
actions |
array |
Varies |
Orchard actions (spends + change outputs) |
unshieldingAmount |
unsigned integer |
64 bits |
Total credits leaving the pool (recipient amount + fee) |
anchor |
array of bytes |
32 bytes |
|
proof |
array of bytes |
Varies |
Halo 2 proof |
bindingSignature |
array of bytes |
64 bytes |
RedPallas binding signature |
coreFeePerByte |
unsigned integer |
32 bits |
Core transaction fee rate for the L1 withdrawal transaction |
pooling |
unsigned integer |
8 bits |
Withdrawal pooling strategy (see Identity Credit Withdrawal) |
outputScript |
array of bytes |
Varies |
Core script of the L1 address receiving the withdrawn funds |
Note
Transparent fields (coreFeePerByte, pooling, outputScript) are bound to the Orchard bundle through the platform sighash. Maximum actions per transition: max_shielded_transition_actions.
Constraints: Pooling must be Never (others not yet implemented). coreFeePerByte must be a non-zero Fibonacci number. Output script must be P2PKH or P2SH.
See the implementation in rs-dpp.
Identity Create From Shielded Pool#
Create a new identity funded directly from the shielded pool. The spend nullifiers fund a fixed exit denomination; any change re-enters the pool as an ordinary output note. The new identity carries the same public keys as an ordinary Identity Create.
Field |
Type |
Size |
Description |
|---|---|---|---|
publicKeys |
array |
Varies |
The public keys of the new identity (1..= |
denomination |
unsigned integer |
64 bits |
The fixed exit denomination (in credits) leaving the pool. Must equal the Orchard bundle’s value balance exactly and be a member of the versioned denomination set |
actions |
array |
Varies |
Orchard actions (spend-output pairs); the spend nullifiers fund the exit |
anchor |
array of bytes |
32 bytes |
|
proof |
array of bytes |
Varies |
Halo 2 proof |
bindingSignature |
array of bytes |
64 bytes |
RedPallas binding signature |
sendToAddressOnCreationFailure |
Platform address |
Varies |
Fallback Platform address credited (minus a penalty) if identity creation fails a stateful check. The spend is still final — the denomination leaves the pool regardless |
identityId |
array of bytes |
32 bytes |
The id of the new identity, derived as |
Note
The new identity’s id is derived from the sorted set of spend nullifiers, making it unique and single-use. The public keys, denomination, sendToAddressOnCreationFailure, and identityId are committed into the Orchard bundle (via extra_sighash_data), so the bundle cannot be redirected to a different identity. Maximum actions per transition: max_shielded_transition_actions.
Exit denominations#
Changed in version 4.1.0: Protocol version 13 revised the exit denomination set.
The denomination field must exactly match one of the values accepted by the active protocol version. The set is replaced per protocol version rather than extended, so a denomination valid under one version may not be valid under the next. A denomination outside the active set is rejected with ShieldedInvalidDenominationError (code 10827).
Protocol version |
Accepted denominations |
|---|---|
14 |
0.03 DASH (3,000,000,000 credits), 0.1 DASH (10,000,000,000), 0.25 DASH (25,000,000,000), 0.5 DASH (50,000,000,000), 1 DASH (100,000,000,000) |
12 |
0.1 DASH (10,000,000,000 credits), 0.3 DASH (30,000,000,000), 0.5 DASH (50,000,000,000), 1 DASH (100,000,000,000) |
Protocol version 13 added 0.03 and 0.25 DASH and retired 0.3 DASH. Protocol version 14 keeps the version 13 set unchanged. The protocol version 12 set is retained for chain replay. See the denomination set in rs-platform-version.
See the implementation in rs-dpp.
Shield from Identity#
Added in version 4.2.0: Protocol version 14 added this transition.
Move credits from an identity’s balance directly into the shielded pool. The transition is signed by the funding identity, like an identity credit transfer, and carries an outputs-only Orchard bundle like Shield. The identity pays the fee plus the shielded amount.
Field |
Type |
Size |
Description |
|---|---|---|---|
identityId |
array of bytes |
32 bytes |
The identity whose balance funds the shield |
amount |
unsigned integer |
64 bits |
Credits leaving the identity balance and entering the pool (the absolute value of the bundle’s value balance) |
actions |
array |
Varies |
Orchard actions. Spends are disabled; the actions create new notes |
anchor |
array of bytes |
32 bytes |
|
proof |
array of bytes |
Varies |
Halo 2 proof |
bindingSignature |
array of bytes |
64 bytes |
RedPallas binding signature |
nonce |
unsigned integer |
64 bits |
Identity nonce for this transition to prevent replay attacks |
userFeeIncrease |
unsigned integer |
16 bits |
Extra fee to prioritize processing if the mempool is full |
signaturePublicKeyId |
unsigned integer |
32 bits |
The |
signature |
array of bytes |
65 or 96 bytes |
Identity signature over the signable bytes: 65 bytes for ECDSA keys or 96 bytes for BLS keys |
Note
signature and signaturePublicKeyId are the only fields excluded from the signable bytes. The Orchard bundle uses empty extra_sighash_data; the identity signature binds the bundle to this identity and nonce. Maximum actions per transition: max_shielded_transition_actions.
Constraints: amount must be greater than zero and at most i64::MAX. The identity balance must cover amount plus the minimum shielded fee for the action count plus a 20-byte balance write at the storage rate. At execution the identity pays the metered fee plus the shielded compute fee (proof verification and per-action processing). A bundle that fails verification charges the proof failure penalty and bumps the identity nonce.
See the implementation in rs-dpp.
Identity Top Up From Shielded Pool#
Added in version 4.2.0: Protocol version 14 added this transition.
Move credits from the shielded pool to an existing identity’s balance. The spends consume shielded notes like Unshield, and the identity receives topUpAmount minus the fee. The fee is paid from the pool; there is no transition-level signature.
Field |
Type |
Size |
Description |
|---|---|---|---|
identityId |
array of bytes |
32 bytes |
The existing identity whose balance receives the top-up |
actions |
array |
Varies |
Orchard actions (spends consume shielded notes) |
topUpAmount |
unsigned integer |
64 bits |
Gross credits leaving the pool (the bundle’s value balance). The identity is credited |
anchor |
array of bytes |
32 bytes |
|
proof |
array of bytes |
Varies |
Halo 2 proof |
bindingSignature |
array of bytes |
64 bytes |
RedPallas binding signature |
Note
identityId and topUpAmount are bound to the Orchard bundle through the platform sighash, so the top-up cannot be redirected to another identity. Maximum actions per transition: max_shielded_transition_actions.
Constraints: topUpAmount must be greater than zero and at most i64::MAX, and the pool balance must cover it. The identity must exist; otherwise the transition fails with IdentityNotFoundError (code 20000). The fee is the minimum shielded fee for the action count plus an 8-byte balance write at the storage rate.
See the implementation in rs-dpp.
Shielded Transition Signing#
With one exception, shielded transitions are not signed by an identity public key, and the identity-signed signature and signaturePublicKeyId fields listed in the common fields do not appear on them. The exception is Shield from Identity, which the funding identity signs with a CRITICAL transfer key. Authorization is instead carried by cryptographic primitives attached to the Orchard bundle and, where applicable, to the transparent side of the transition. This includes the asset-lock ECDSA signature carried by Shield from Asset Lock described below.
Orchard bundle signatures#
Every shielded transition includes:
Per-action spend authorization signatures (
spendAuthSigon each action). Each is a 64-byte RedPallas signature, produced by the holder of the spent note over the randomized verification keyrk. The proof bindsrkto the original spending key, so verifying the signature againstrkproves the spender is authorized.Binding signature (
bindingSignatureon the transition). A 64-byte RedPallas signature over the sum of the action value commitments, proving that the actions’ net value balance matches the transition’s declared value balance.
Platform sighash#
Unshield, Shielded Withdrawal, Identity Create From Shielded Pool, and Identity Top Up From Shielded Pool bind their transparent fields to the Orchard bundle through the platform sighash (non-empty extra_sighash_data). Any modification to those transparent fields invalidates the Orchard signatures, preventing replay attacks that substitute transparent fields while reusing a valid bundle. Shield, Shield from Asset Lock, and Shield from Identity use empty extra_sighash_data; their transparent side is authorized by address witnesses (Shield), the asset-lock ECDSA signature (Shield from Asset Lock), or the identity signature (Shield from Identity) over the signable bytes instead.
Transparent signatures#
Several shielded transitions also carry transparent signatures over the transparent side of the transition:
Shield includes an array of address witnesses (
inputWitnesses) — one per address input. Each witness proves control of its corresponding Platform address. Address witness signatures are excluded from the bytes that feed the platform sighash (they sign the platform sighash output, not vice-versa).Shield from Asset Lock includes a 65-byte ECDSA
signatureproving control of the L1 asset-locked output, in the same form used by Identity Create. The signature is excluded from the bytes that feed the platform sighash.Shield from Identity includes an identity
signatureandsignaturePublicKeyId, in the same form used by identity credit transfer. Both are excluded from the signable bytes; the signature binds the Orchard bundle to the identity and nonce.
Shielded Transfer, Unshield, Shielded Withdrawal, and Identity Top Up From Shielded Pool have no transparent signatures; the Orchard bundle signatures plus the platform sighash provide full authorization.
Querying shielded state#
DAPI exposes a set of read-only endpoints for clients that need to fetch anchors, scan encrypted notes, verify nullifier status, or track shielded sync progress. See the DAPI Platform endpoints reference for request and response shapes: