Patterns

This page explains some common design patterns used in the Daml Finance library.

Factory pattern

Factories are helper contracts that are used to create instruments, holdings, and other contracts. The reason why using factories is a recommended pattern when using Daml Finance has to do with application decoupling / upgradeability of your application.

For example, suppose that you are writing Daml code to issue equity instruments. Your workflow references the version 0.2.1 of the Equity implementation package and at some point creates an instrument as follows.

create Equity.Instrument with
  issuer = myParty
  id = Id "MyCompany"
  ..

If the equity package gets updated to version 0.2.2 and a new field is added to the instrument (or a choice is changed, or a new lifecycle event is added, …) then you are forced to upgrade your Daml code in order to use the new feature and will have to deal with upgrading multiple templates on the ledger.

A safer approach is for your Daml code to only reference the Equity interface package, which contains interface definitions and is updated less frequently.

However, you would now need a way to create equity instruments without referencing Daml.Finance.Instrument.Equity in your main Daml workflow. To do this, you can setup a Script to run during ledger initialisation that will create a factory contract and cast it to the corresponding interface. You can then use the factory in your main workflow code to create the instruments.

When an upgraded instrument comes along, you would need to write code to archive the old factory and create the new one, in order to issue the new instruments. However, the Daml code for your workflow could in principle stay untouched.

For an example where the Factory pattern is used, check out the Holdings tutorial.

View of an interface contract and the GetView choice

There are different ways to access the data of a contract, for example the terms of an instrument:

  1. fetch the interface contract using its contract ID (this requires the submitting party to be a stakeholder of the contract). It is then possible to use the view built-in method to get the interface view.
  2. GetView: by calling this choice on the interface, for example on a callable bond, a party can get the view of a contract, without necessarily being a stakeholder of the contract. This can be useful in situations where someone needs access to reference data, but should not be a stakeholder of the contract. Specifically, if publicParty is an observer of an instrumentCid, a party would only require readAs rights of publicParty in order to exercise GetView. In the Daml Finance library, this choice has been implemented not only for instruments but also for other types of contracts, e.g. Holdings and lifecycle related contracts like Rule and Effect.