All Projects → digital-asset → ex-bond-issuance

digital-asset / ex-bond-issuance

Licence: Apache-2.0 License
Reference DAML application demonstrating a bond issuance use case.

Programming Languages

haskell
3896 projects
typescript
32286 projects
javascript
184084 projects - #8 most used programming language
java
68154 projects - #9 most used programming language
python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to ex-bond-issuance

ex-healthcare-claims-processing
Reference DAML application demonstrating a healthcare use case.
Stars: ✭ 27 (+68.75%)
Mutual labels:  smart-contracts, dlt, distributed-ledger-technology, daml
activeledger
Activeledger is a powerful distributed ledger technology.
Stars: ✭ 17 (+6.25%)
Mutual labels:  smart-contracts, dlt, distributed-ledger-technology
iot-device-management
Leveraging Ethereum blockchain platform for identity, authentication and reputation of IoT devices
Stars: ✭ 84 (+425%)
Mutual labels:  smart-contracts, distributed-ledger-technology
blockchain-consensus
This is my attempt to list all possible blockchain consensus out there, i welcome pull request of the blockchain community! lets make it the main reference for blockchain consensus
Stars: ✭ 79 (+393.75%)
Mutual labels:  smart-contracts, dlt
daml-on-fabric
Enabling DAML applications to run on Hyperledger Fabric
Stars: ✭ 23 (+43.75%)
Mutual labels:  dlt, daml
blockchain-multichain
Application for proposals using blockchain with MultiChain.
Stars: ✭ 18 (+12.5%)
Mutual labels:  dlt, distributed-ledger-technology
obyte-hub
Hub for Obyte network
Stars: ✭ 17 (+6.25%)
Mutual labels:  dlt, distributed-ledger-technology
clarity-smart-contracts
Collection of Smart Contract for Stacks Blockchain in Clarity
Stars: ✭ 61 (+281.25%)
Mutual labels:  smart-contracts
tranquility
Tranquility is an in-development programming language intended to replace Solidity
Stars: ✭ 17 (+6.25%)
Mutual labels:  smart-contracts
CrowdBank
⚙️ Peer to Peer Loan System implemented on Ethereum Smart Contracts
Stars: ✭ 88 (+450%)
Mutual labels:  smart-contracts
ethereum-playbook
CLI tool that configures and deploys Ethereum DApp infrastructures using a static specification. 📚📖
Stars: ✭ 20 (+25%)
Mutual labels:  smart-contracts
ethereum-contracts
Knowledge Ethereum Smart Contracts
Stars: ✭ 41 (+156.25%)
Mutual labels:  smart-contracts
HealthCare-Insurance-Ethereum
Medical insurance claiming DApp which uses a Multi-Sig type approach to grant claim (ConsenSys project)
Stars: ✭ 65 (+306.25%)
Mutual labels:  smart-contracts
eosio-rust
EOSIO SDK for Rust – APIs for building smart contracts on EOSIO blockchains in Rust
Stars: ✭ 93 (+481.25%)
Mutual labels:  smart-contracts
trustbase
Smart Contract parachain interoperate with Polkadot and Ethereum
Stars: ✭ 22 (+37.5%)
Mutual labels:  smart-contracts
ethereum-dex
Decentralized exchange implementation for the 0xcert protocol on the Ethereum blockchain.
Stars: ✭ 18 (+12.5%)
Mutual labels:  smart-contracts
Smart-Contract-Verifier
This project is to create a system that uses DeFi technology to enforce contracts. Users will be able to set up contracts between each other, this includes an escrow service for payments. If users disagree over whether a contract was fulfilled, a jury appointed by the system will make the final decision.
Stars: ✭ 16 (+0%)
Mutual labels:  smart-contracts
PhantasmaChain
Blockchain with native storage and smart contract integration.
Stars: ✭ 74 (+362.5%)
Mutual labels:  smart-contracts
near-cli
General purpose command line tools for interacting with NEAR Protocol
Stars: ✭ 130 (+712.5%)
Mutual labels:  smart-contracts
cli
CLI for Titan Suite
Stars: ✭ 13 (-18.75%)
Mutual labels:  smart-contracts

Reference Application: Bond Issuance

Overview

Issuing a new bond is currently a fragmented process. A Distributed Ledger Technology (DLT) approach to bond issuance creates opportunity for Issuers, Auction Agents, CSDs (Central Securities Depositories), and Banks to reduce costs and risks associated with the process, while at the same time providing additional benefits.

Getting Started

Installing

Disclaimer: This reference application is intended to demonstrate the capabilities of the DAML. You are recommended to consider other non-functional aspects, like security, resiliency, recoverability, etc prior to production use.

Prerequisites

Be sure you have the following installed:

Build the App

Type:

make build

Note: If you change the DAML models locally, you need to re-run this command before starting the application.

Starting the App

Note: Make sure you have built the application (see: Build the App).

These commands start the application with wall clock time. Note that Navigator's time widget won't work in this mode as one cannot modify the time.

  1. Start the DAML Sandbox. Type:
    launchers/sandbox+jsonapi
  2. Start the automation logic by starting bots. Type:
    launchers/automation
  3. Start the React UI. The UI will automatically open in a new browser tab at http://localhost:3000.
    launchers/ui

Stopping the App

  1. Stop the triggers by pressing Ctrl+C.
  2. Stop the Sandbox by pressing Ctrl+C in the DAML assistant.
  3. Stop the ui by pressing Ctrl+C.

Resetting the Prototype

Reset the application by following these steps:

  1. Stop the app by following the steps in Stopping the App section.
  2. Start the app by following the steps in Starting the App section.

Working with DAML Hub

If you do have cli access, please follow these steps:

  1. Run the cli script, after setting your token with dablc t.
./dabl-deploy.sh

If you do not have cli access, please follow these steps:

  1. Start a new project at DAML Hub. Upload the DARs to DAML Hub (in your new project, Deployments tab / Upload file, two files target/bond-issuance*.dar), deploy the model (bond-issuance.dar, Deploy Instance).

  2. Add the parties to the DAML Hub project: AuctionAgent, CSD, Bank1, Bank2, Bank3, Issuer, CentralBank, Regulator, Operator.

    • Download participants.json (Ledger settings tab).
    • Download parties.json (Users tab).
  3. Run the market setup:

daml script \
  --participant-config participants.json \
  --json-api \
  --dar target/bond-issuance.dar \
  --script-name DA.RefApps.Bond.MarketSetup.MarketSetupScript:setupMarketWithDablParties \
  --input-file parties.json
  1. Run the triggers from the DAML Hub UI:
Bank1:
DA.RefApps.Bond.Triggers.InvestorSettlementTrigger:investorSettlementTrigger
DA.RefApps.Bond.Triggers.PlaceBidTrigger:placeBidTrigger
Bank2:
DA.RefApps.Bond.Triggers.InvestorSettlementTrigger:investorSettlementTrigger
DA.RefApps.Bond.Triggers.PlaceBidTrigger:placeBidTrigger
Bank3:
DA.RefApps.Bond.Triggers.InvestorSettlementTrigger:investorSettlementTrigger
DA.RefApps.Bond.Triggers.PlaceBidTrigger:placeBidTrigger
Issuer:
DA.RefApps.Bond.Triggers.CommissionTrigger:commissionTrigger
DA.RefApps.Bond.Triggers.RedemptionFinalizeTrigger:redemptionFinalizeTrigger
AuctionAgent:
DA.RefApps.Bond.Triggers.AuctionFinalizeTrigger:auctionFinalizeTrigger
CSD:
DA.RefApps.Bond.Triggers.RedemptionCalculationTrigger:redemptionCalculationTrigger
  1. Run make daml-hub-package. Upload target/bondui.zip to DAML Hub and deploy the UI. Follow "View site". Upload parties.json to the UI using the button on the login screen (Upload parties.json (tokens)). Receiving no error means you have succeeded.

Note: parties.json needs to be re-uploaded to the UI every time the tokens change.

User Guide

This User Guide will take you step-by-step through the whole bond issuance, bond auction, and redemption process. It will lead you through all the major UI screens and data fields that you will need to use.

Note: This demo is designed to show successful conclusion of the Bond Issuance workflow without exceptions or error conditions. A full production implementation would include additional features, handle errors and exceptions, and incorporate appropriate security controls.

Workflow

Roles and Responsibilities

Participants in the following roles are involved in the Bond Issuance workflow.

Role Responsibilities
Issuer Requests creation of a new bond.

Defines parameters of a bond auction.

Starts redemption of bond at maturity.

CSD Approves and issues a new bond.

Approves redemption of bonds at maturity.

Auction Agent Commissions the bond auction.

Invites bidding banks.

Finalizes the auction.

Bank Bids on bonds in the auction.
Central Bank Backer of money on the ledger.
Regulator Has no functional obligation in the demo.

Acts as a passive observer of the proceess.

Operator System operator.

There are three parties set up with the Bank role, other roles have a single corresponding party configured. Setting up a given role with different parties (e.g. having two parties with the Auction Agent role) would require changing the DAML models.

The Bond Issuance application includes these steps:

  1. Market Setup: The application starts with an automated market setup process. Participants and their roles are created, relationships are set up, and Participants also have their cash account set up in the Central Bank, with an initial balance.

  2. Bond Issuance: The entire issuance process is modeled in DAML, with transparency and accuracy. The Bond Issuer requests the issuance, and the CSD approves the request and issues the bond. The ledger keeps an immutable, auditable history of the bond issuance.

  3. Create a Bond Auction: The entire auction logic is modeled in DAML, enforcing the actions of the Auction Agent and market participants. The process starts with the Issuer defining the key parameters of the bond auction, including the start and end date of the auction, and the minimum price for the bond. The Issuer submits the auction request to its Auction Agent. The Auction Agent reviews the auction parameters and can commission the auction.

  4. Execute a Bond Auction: The application uses a Dutch auction to calculate winning bids and quantities. Invited banks can bid in the auction. The banks cannot see the minimum price for the auction, only the denomination and total quantity of available bonds. Banks can place multiple bids in the auction so that they have different bids at different prices.

    All investors are guaranteed to be treated equally and according to the auction rules.

    Note: The settlement is guaranteed to be successful if Investors have a valid bid at the close of the auction, as the Bond is already locked.

  5. Redemption: The Issuer can start the redemption of a bond, where all bonds are redeemed, and the face value of the bond plus interest is paid to owners. The CSD must approve the redemption. Communication to all relevant market participants occurs in real time.

Running the Application

Choosing and Changing Roles

When you launch the Bond Issuance application, you will see the login screen where you can choose your party with the desired role.

To log in:

  • On the home screen, select the party from the list (no password needs to be entered).

To switch users:

  1. In the top right corner, click on the logout icon.
  2. On the home screen, select a different party.

Market Setup

The participants listed above in Roles and Responsibilities are added automatically at market setup along with required reference data.

Creating a New Bond Issuance

This part of the workflow shows how to issue a new bond.

Entering New Bond Issuance Request

The Issuer creates a request for the CSD to issue a new bond with the parameters defined by the Issuer.

To request a new bond issuance:

  1. Log in as Issuer.
  2. Choose the Issuer Actions tab.
  3. Select the Issue Bond choice on the Issuer role contract.
  4. Fill out the new issuance parameters:
    • Issue size: quantity of new bonds to be issued: e.g.:1000000
    • Issue date: date for the issue date, e.g., today
    • Currency: USD
    • Denomination: bond’s value at maturity, and the initial price for the bond set for the auction. e.g.: 100
    • Maturity date: Note that redemption of a bond is usually only possible on the defined maturity date, but the application does not model this. At redemption the face value of the bond plus the coupon rate is paid to the buyer.
    • Coupon rate: rate expressed in numeric value for the duration of the bond: 0.01 = 1%
  5. Choose Okay.

Approving New Bond Issuance Request

Once the Issuer submitted a new bond issuance request, the CSD receives a notification of this request. The CSD needs to approve the bond issuance request to issue the bonds and assign the ISIN.

To approve:

  1. Log in as the CSD.
  2. Choose the Issuance and ISIN Request tab.
  3. Select the contract in the table view.
  4. View the parameters of the new issuance request.
  5. Add an ISIN (arbitrarily, e.g.: Bond007). Choose Accept.

Viewing New Bond Issue

The Issuer can view the newly issued Bonds.

To view:

  1. Log in as the Issuer.

  2. Go to the Balance view tab.

    The newly issued bond will be visible.

Creating a New Bond Auction

Bond Auction is the process of taking a new bond issuance to the market. The application models the workflow of a Dutch auction in which the price of the offering is set after taking in all bids to determine the price at which the total offering can be sold. Banks place bids for the amount they are willing to buy in terms of quantity and price. Winners of the auction are announced after finalizing the results of all valid bids. In a real world implementation, the minimum price set by the Issuer is not visible to the bidding banks, only the denomination (face value) of the bond.

Creating a New Bond Auction Request

The Issuer can define the key parameters of the bond auction, including the start and end date of the auction and the minimum price for the bond. The Issuer then submits the auction request to its Auction Agent.

To create an auction request:

  1. Log in as the Issuer.
  2. Select the Issuer Actions tab.
  3. Select the Commission Auction choice.
  4. Enter parameters of New Bond Auction:
    • Bond asset deposit: choose the name of the bond just issued, e.g.: Bond007
    • Start date
    • End date
    • Minimum price: e.g: 96 (must be smaller the bond's denomination)
    • Size: e.g.: 500000 (The size of the auction cannot be larger than the balance of available bonds).
  5. Choose Okay.

Commissioning New Bond Auction

The Auction Agent reviews the auction parameters and commissions the auction.

To commission the auction:

  1. Log in as the Auction Agent.
  2. Select the Auction Requests tab.
  3. Next to the Accept button, enter an auction name (e.g.: Auction001) and click the button.

Once the auction had been approved, the auction disappears from the Auction Request tab and appears in the Ongoing Auctions tab.

Inviting Banks to Auction

For the commissioned auction, the Auction Agent invites Banks to bid.

To invite Banks:

  1. Stay logged in as the Auction Agent.
  2. Select the Ongoing Auctions tab.
  3. In the row of the just started auction, select the Invite Bidders choice and invite the banks: 'Bank1, Bank2, Bank3'
  4. Choose Okay.

Viewing the Auction Invite

To view the invitation as a Bank:

  1. Log in as any bank (Bank1, Bank2, Bank3).

  2. Select the Ongoing Auctions tab.

    Observe that the auction is now active.

Bidding and Finalizing Auction

Bidding on an Auction

Invited banks can start bidding on an auction. As discussed above, Banks cannot see the minimum price for the auction, only the denomination and total quantity of available bonds. They can place multiple bids for an auction to ensure that they have different bids at different prices.

To bid:

  1. Log in as a bank (Bank1, Bank2, or Bank3).
  2. Select the Ongoing Auctions tab.
  3. Next to the relevant auction, select the Place Bid choice and enter details:
    • Price
    • Quantity
  4. Choose Okay.

Repeat this process for other Banks or for multiple bids for the same Bank.

Finalizing an Auction

On the end date, the Auction Agent finalizes the auction and the automated delivery of bonds and cash occurs. When finalizing an auction, the application will automatically calculate the winning bids based on the Dutch auction logic. A bid that is under the minimum price will be regarded as an invalid bid.

To finalize:

  1. Log is as the *Auction Agent.
  2. Click on the Ongoing Auctions tab.
  3. Next to the auction, select the Finalize choice.

Committing Cash for Simultaneous Settlement of Cash and Bonds

A bank has a final step. It needs to commit its cash to approve the settlement if it wins the auction.

To commit cash:

  1. Log in as a bidding Bank.
  2. Select the Pending Settlements tab.
  3. Select the Settle choice for the relevant row.

Simultaneous delivery of cash from the bidding Banks account to the Issuer cash account in exchange of bonds will occur.

Redemption at Maturity

Kicking off the Redemption Process

To start the redemption:

  1. Log in as the Issuer.
  2. Select the Issuer Actions tab.
  3. Select the Redeem choice.
  4. Select the appropriate bond you would like to redeem.
  5. Choose Okay.

A redemption request is now sent to the CSD for its approval.

Approving the Redemption

When the Issuer kicks off the redemption process, the CSD needs to approve it. Upon the CSD’s approval the bonds will be redeemed, and all bonds created during the Issuance will be archived on the ledger. At the same time the Issuer pays back the cash for the denomination of the bond with the defined interest to the Banks cash account.

To approve:

  1. Log in as the CSD.
  2. Select the Redemption Requests tab.
  3. Select Accept.

Additional Exploration

After completing the workflow, you can explore the application to try other paths, submit higher or lower bids, revoke a bid once entered, and so on.

CONFIDENTIAL © 2019 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved. Any unauthorized use, duplication or distribution is strictly prohibited.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].