Lifecycling

Lifecycling refers to the evolution of financial instruments over their lifetime. This includes processing of contractual events, like interest payments or coupon cashflows, as well as discretionary events, like dividends and other corporate actions. The library provides a standard mechanism for processing such events across different instruments. The output is not limited to cash but can also include the distribution of other asset types.

The interfaces for lifecycling are defined in the Daml.Finance.Interface.Lifecycle package, and several default implementations are provided in the Daml.Finance.Lifecycle package.

In this section, we first motivate the particular approach to lifecycling in Daml Finance. We then explain the process in detail using the example of a cash dividend event. Finally, we describe each of the involved components in depth.

Approach

Single Source of Truth

A general principle we follow in Daml Finance is that there should only be a single instance of any given instrument on the ledger. This instance is centrally maintained by the issuer of the instrument, with the possibility for a depository to act as an additional, third-party trust anchor. As part of lifecycling, this single instance of the instrument produces lifecycle effects, which are then used across all parties on the ledger as a single source of truth for how to process a certain event. This avoids any duplication of lifecycling logic or redundant processing of instruments, and therefore removes the need for reconciliation across parties involved in the process.

Instrument Versioning

In current financial markets instruments are usually referenced by a textual identifier, like an ISIN or CUSIP number. When a particular corporate action is processed on its effective date the instrument referred to by an identifier changes implicitly. As an example, the ISIN for a stock refers to the “cum-dividend” instrument (where holders are still entitled to the dividend) up until the ex-dividend date. From the ex-dividend date onwards the same ISIN refers to the “ex-dividend” instrument, so any stock acquired on or after that date is not entitled to the dividend anymore. This leads to a lot of complexity during processing of such corporate actions. In particular, it forces these events to be processed in a “big bang” approach, as a consistent snapshot of holdings needs to be taken to determine the rightful recipients of any resulting cashflows and other effects.

In Daml Finance we aim for a more efficient and flexible operating model for processing lifecycle events. All instruments are strictly versioned so that we can clearly differentiate between the cum- and ex-event version of an instrument. This means that it is perfectly safe for those versions to co-exist at the same time, and it allows for a gradual transition from one version to another. Generally, the issuer of an instrument is responsible for creating and maintaining instrument versions, and for producing the effects of a particular lifecycle event. During the lifecycle process, holders of this instrument will migrate their holdings to a new version of the instrument while at the same time claiming any resulting effects from the event.

Versions are usually considered opaque strings, but one can follow a numerical versioning scheme if an instrument is known to have linear evolution (i.e., there is no optionality that can result in two different evolution paths).

Workflow

In this scenario we go through the process of paying a cash dividend from an issuer to an investor. The initial state looks as follows:

  • An issuer maintains an ACME instrument representing shares in a company
  • An investor owns a holding of 1000 units of the ACME instrument (version 1) with the issuer
  • The issuer wants to process and pay a cash dividend of USD 10.0 per unit of its ACME instrument (version 1)
The issuer issues the ACME instrument. The investor owns a holding of 1000 ACME shares (version 1). The holding references the instrument.

We will now explain each step in the process in detail. The goal is that every holder of a v1 “cum-dividend” instrument will afterwards have $10 (for each unit of instrument held) and a holding on the v2 “ex-dividend” instrument.

Creating the event

The issuer first creates a new instance of the ACME instrument, assigning a new version. The new version is then automatically produced when processing the event as described in the next step.

Now, the issuer creates a lifecycle event defining the terms of dividend. In our example we can use the DistributeDividend choice on the Equity instrument to create such an event. This is merely a convenience choice available for equities, any workflow can be used to create new instrument versions and associated lifecycle events.

The issuer creates a new ACME v2 instrument. They also create a distribution event by declaring a dividend on the ACME v1 instrument.

Note that only one instrument (the v1) is paying a dividend. The lifecycle event is used to evolve the v1 contract into a v2 that does not pay dividends.

Processing the event

The event is now passed into a Distribution Rule, which generates the Lifecycle Effect describing the distribution of assets per unit of ACME stock. The effect refers to a targetInstrument, which is the version of the instrument that can be used by stock holders to claim the cash dividend according to the number of stocks held. By being tied to a specific version we prevent holders from (accidentally or intentionally) claiming a particular effect twice.

The issuer processes the distribution event through the distribution rule, creating a lifecycle effect. The effect references ACME v1 as a target instrument.

These components are described in more detail in the Components section below. For simplicity, we have chosen a dividend as an example here, but the same workflow can be used to process more complex events. Note that the logic to create the new version of an instrument can also be encoded in the lifecycle rule.

Claiming the effect

The investor can now present its holding of ACME stock along with the corresponding Effect to a Claim Rule. This will instruct settlement for:

  • The exchange of ACME stock versions held: the investor sends back the old version, and receives the new one
  • The payment of the cash dividend amount corresponding to the number of stocks held

Both legs of this settlement are grouped in a Batch to provide atomicity. The goal of the batch is to exchange a holding on the v1 instrument for a holding on the v2 instrument + $10 (for each share held). This ensures that the investor can never claim a dividend twice, as after settlement they only hold the new version of the stock, which is not entitled to the dividend anymore.

The investor claims the lifecycle effect through the claim rule, passing in their ACME v1 holding. This produces a batch and settlement instructions.

Note that the party responsible for claiming an effect can be specified flexibly in the Claim Rule contract. Through this contract, custodians can be given the authority to push a given corporate action to the asset holder as is common in current operating procedures.

The model also supports atomic, intermediated settlement of lifecycle events. For example, if a dividend is to be settled between issuer, custodian, and investor in a single transaction, the custodian (having visibility of both its holding at the issuer and the investor’s holding) can pass in both holdings into the claim rule, and thereby instruct a single batch to settle both sides.

Settlement

The batch and instructions resulting from claiming an effect can now be settled as described in the Settlement section of the documentation.

The following picture shows the three asset movements involved in this particular example:

The investor allocates the 1000 ACME v1 holding to the first instruction. The issuer allocates a 1000 ACME v2 holding to the second instruction and a 10000 USD holding to the third.

The result of processing the settlement batch results in the investor receiving a 10000 USD dividend and 1000 shares of ACME v2 in return for their 1000 shares of ACME v1.

Components

Events

An event contract is used to indicate that a certain action has occurred, which might trigger the lifecycling of certain instruments. In the context of the dividend example above, this is the Issuer declaring a “Cash Dividend” to be paid on a specific stock.

Events implement the Event interface, which describes basic properties of a lifecycle event:

  • The event providers
  • The event identifier and description
  • The event timestamp

Different implementations exist to cover typical corporate actions:

  • The Distribution event can be used to distribute assets to holders of an instrument. This covers cash-, share-, and mixed dividends, rights issues, or the distribution of voting rights.
  • The Replacement event handles replacements of one instrument for another with support for a factor. This covers corporate actions like (reverse) stock splits, mergers, and spin-offs.

A single event can be used as a trigger to lifecycle multiple instruments.

Lifecycle Rule

A Lifecycle Rule is used to process an event for a certain instrument and calculate the resulting lifecycle effects.

A lifecycle rule can either assume that a new version of the instrument has already been created (as is the case for the Distribution and Replacement rules), or it can create the new version of the instrument as part of its implementation. The latter can be useful if information required to create the new version is only available upon processing of the event, as is the case for the evolution of the Generic Instrument, as well as other Contingent Claims based instruments.

Lifecycling of Contingent Claims based instruments can be divided into two categories:

  • Time based evolution: An instrument is evolved solely due to the passage of time. An example is a fixed coupon bond, where a coupon payment is due at the end of every coupon period. This can be automatically lifecycled by providing the event time (and any observables required). The tutorial Time-based lifecycling (using a fixed rate bond) describes how this is done.
  • Election based evolution: An instrument is evolved as a result of a manual election. One example is a callable bond, where the custodian of the corresponding holding has the right (but not the obligation) to call, or redeem early, the instrument on certain call dates. Lifecycling of such an instrument requires an Election event. Time alone is not sufficient, because the evolution of the instrument depends on manual actions of the holding stakeholders. Check out the tutorial Election-based lifecycling (using a callable bond) for more details on how this can be implemented in practice.

Note that some instruments can require both types of lifecycling. An example of this is a callable bond that is callable only on some of the coupon dates.

Effects

An Effect describes the asset movements resulting from a particular event. It specifies these movements per unit of a target instrument and version.

In the dividend example, the effect describes the following asset movement:

  • give a unit of a v1 holding
  • receive a unit of a v2 holding
  • receive $10

Holdings on this specific instrument version entitle a holder to claim the effect, which results in the required asset movements to be instructed.

Claim Rule

The Claim Rule is used by instrument holders to claim lifecycle effects and instruct settlement of the resulting asset movements.

Each effect specifies a target instrument (and version), and holdings on this instrument (version) are required to claim an effect.

In the dividend example, the v1 instrument is the target instrument. A holding on a v1 instrument serves as proof of ownership such that there is no need for an issuer to take a consistent snapshot of holdings as of a specific date.

The output of the claim rule is a Settlement Batch and a set of Instruction s that settle the asset movements atomically.

Note that multiple holdings can be passed into the claim rule in order to instruct intermediated settlement of an effect, or to instruct atomic settlement for multiple asset holders at the same time.

Remarks and further references

The Lifecycling tutorial describes how these components are used in practice.