Corda State Reissuance: Break Long Transaction Chain to Improve Performance and Privacy

Corda Mar 28 2022 By: Ashutosh Meher
Comments

0 Comments

Views

1,656 Views

Reissuing a State in Corda
Ashutosh Meher
Ashutosh Meher Senior Developer Evangelist
Share this post:
Copied

Performance is an important aspect of any enterprise software application. Blockchain is seen as the next big thing which could change the way we transact in the near future. But blockchains are slow. And that is one of the major reasons why businesses are skeptical about using a blockchain-based system in a major way.

One major performance setback is the need for backchain validation. It means that in order to validate the current transaction, one must validate the history of the asset involved in the transaction. And since blockchain is a continuously growing chain, you can see where it’s going.

Long backchain and Corda

Transactions in Corda reference input states which are created by the prior transactions. This creates a transaction backchain over time. As the backchain grows, the backchain validation becomes a performance overhead.

To make matters worse, it also poses a privacy concern. Privacy is a major focus area for Corda, it was designed to allow participants in a Corda network to transact privately while benefiting from the advantages of DLT. Thus solving this issue was of utmost importance.

Reissuing states

The solution is rather simple, it just requires a trusted party to reissue the state. The state could simply be exited from the ledger and reissued, it would purge the transaction backchain and you would have a brand new state with no reference to the historical data.

Corda state represents an asset in the Corda ledger

However, there is a small problem: there is no guarantee that the issuer would reissue the state after it is exited. If the issuer fails to reissue the state (for whatever reason) after the original state is exited, one will be left with no usable instance of the state.

Corda 4.7 introduces a new reissuance functionality that solves this problem. It is achieved by locking the reissued state using Corda’s encumbrance feature. The reissued state can only be unlocked once the original state has been exited.

An encumbered state in Corda is forced to be consumed alongside its encumbrance

  (which is also a state).

Learn more: https://training.corda.net/corda-advanced-concepts/reference-states/#encumbrances

How does it all work?

Reissuing a State in Corda

The above diagram represents the series of steps involved in reissuing a state in Corda. To make things simple for developers, Corda provides the reissuance CorDapp which implements most of the functionality. All developers need to do is call the appropriate flow.

Reissuance CorDapp can be found here: https://github.com/corda/reissue-cordapp

  • To start with, the requesting party sends a reissuance request to the issuer.
  • An optional step might be required if the issuer doesn’t have access to the transaction history. The requesting party could send the transaction history to the issuer for verification purposes.
  • The issuer has two options: accept or reject the request.
  • The rejection case is pretty simple, the issuer simply rejects the request and no reissuance of the state happens.
  • In case the issuer chooses to accept the request, they generate an encumbered copy of the original state. The encumbrance is a locked state with status active. It ensures that the reissued state cannot be spent until the original state is exited.
  • Once the reissuance has been accepted, the issuers can exit the original state and proceed to unlock the reissued state, which encumbers the reissued state and allows it to be spent freely.
  • There might be a scenario where the original state has been spent after the reissuance request was accepted, which means that the reissued state is outdated. In such a case the reissued state cannot be unlocked and the requesting party can exit the reissued state and create a new reissuance request instead.

Source code

Below is a sample CorDapp that implements a simple reissuance case. Check it out:

https://github.com/corda/samples-java/tree/master/Features/state-reissuance

I hope this answers some of the questions about handling long backchain and improving performance and privacy in Corda. Thanks for reading.

Ashutosh Meher
Ashutosh Meher Ashutosh is a Developer Evangelist at R3, an enterprise blockchain software firm working with a global ecosystem of more than 350 participants across multiple industries from both the private and public sectors to develop on Corda, its open-source blockchain platform, Corda Enterprise, a commercial version of Corda for enterprise usage, and Conclave, a confidential computing platform. Follow Ashutosh on Twitter.

Leave a Reply

Subscribe to our newsletter to stay up to date on the latest developer news, tools, and articles.