Vault heading-link-icon

A Corda vault is a database containing all data from the ledger relevant to a participant. The database tracks spent and unspent (consumed and unconsumed) states An immutable object representing a fact known by one or more participants at a specific point in time. You can use states to represent any type of data, and any kind of fact. . From a business perspective, this means a record of all of the transaction A transaction is a proposal to update the ledger. states that you can spend as a participant, and a record of all spent states from transactions relevant to you. You can compare it to a cryptocurrency wallet — a record of what you have spent and how much you have available to spend.

Unspent or unconsumed states represent:

  • Fungible states available for spending.
  • States available to transfer to another party.
  • Linear states available for evolution. For example, in response to a lifecycle event on a deal.

Spent or consumed states represent a ledger immutable state. These are kept for the purpose of:

  • Transaction reporting.
  • Audit and archives, including the ability to perform joins with app-private data, like customer notes.

You can use data in your vault to create transactions that send value to another party by combining fungible states, and possibly adding a change output that makes the values balance. This process is referred to as ‘coin selection’. Spending from the vault in this way ensures that transactions respect fungibility rules. The issuer and reference data is preserved as the assets pass between parties.

The vault supports the management of data in both authoritative on-ledger form and, where appropriate, shadow off-ledger form:

  • On-ledger data refers to distributed ledger A database of facts that is replicated, shared, and synchronized across multiple participants on a network. state (cash, deals, trades) to which a party is participant. The on-ledger store tracks unconsumed states. The node updates it internally when all participants verify and sign a smart contract Digitizes agreements by turning the contract terms into code that executes automatically when the terms are met. and commit a transaction to the ledger.
  • Off-ledger data refers to a party’s internal reference, static, and systems data.

In Corda 5.1, the vault query API is limited to either load outputs from a known transaction ID or find all unconsumed states of a specific type. Transaction recording flows use a vault update API internally.

Soft locking automatically or explicitly reserves states to prevent multiple transactions within the same node from trying to use the same output simultaneously. Whilst any double spend attempts would ultimately be detected by a notary, soft locking provides a mechanism of early detection for such unwarranted and invalid scenarios. Soft locking is implemented using token A type of programmable digital asset that can represent value and be traded. Tokens can be fungible or non-fungible. selection.

Was this page helpful?

Thanks for your feedback!

Chat with us

Chat with us on our #docs channel on slack. You can also join a lot of other slack channels there and have access to 1-on-1 communication with members of the R3 team and the online community.

Propose documentation improvements directly

Help us to improve the docs by contributing directly. It's simple - just fork this repository and raise a PR of your own - R3's Technical Writers will review it and apply the relevant suggestions.

We're sorry this page wasn't helpful. Let us know how we can make it better!

Chat with us

Chat with us on our #docs channel on slack. You can also join a lot of other slack channels there and have access to 1-on-1 communication with members of the R3 team and the online community.

Create an issue

Create a new GitHub issue in this repository - submit technical feedback, draw attention to a potential documentation bug, or share ideas for improvement and general feedback.

Propose documentation improvements directly

Help us to improve the docs by contributing directly. It's simple - just fork this repository and raise a PR of your own - R3's Technical Writers will review it and apply the relevant suggestions.