Asset Originator's Guide
This guide uses loans as the example digital asset, but the process can be applied to any type of asset.
This guide walks through the steps necessary to create an application using Provenance Blockchain and the BlockVault Contract Execution Environment to load and fund digital assets on chain. In the example, digital loans are boarded to Provenance Blockchain, funded with stablecoin, and listed on the Figure Portfolio Manager (PM).
Example Application
The application exists in the Interface
layer of the Application Architecture, and makes use of a hybrid model of on-chain and off-chain (client-side) data.
In our example, the borrower applies (and is approved) for a loan through the Originator's own Loan Origination System (LOS). The loan is boarded to Provenance Blockchain only when the loan is ready for immediate funding, at which point the application will:
- Record the loan data to the originator's private local Encrypted Object Store (EOS) through the execution of a BlockVault Contract. This establishes a record of the assets and its ownership (the originator) on the blockchain, while preserving the privacy and security of the data under the originator's control.
- (Optionally) Fund the loan using stablecoin issued by an Omnibus Bank.
- Run a validation BlockVault contract over the loan to ensure the loan was issued according to the rules and underwriting guidelines that the originator set.
- Permission Figure's Portfolio Manager to read the loan data.
- Provide loan tapes to the Portfolio Manager over the lifecycle of the loan through BlockVault contract execution.
The guide will also outline the optional further steps of querying the loan data, updating or correcting data, and removing a loan from the system.
Development Process
The development process for creating this loan boarding application will include:
- Mapping the originator's loan data to the Figure Loan Data Model.
- Setting up the BlockVault environment, including a local node of the blockchain (see below).
- If required, setting up an Omnibus Bank application to mint and burn stablecoin, as well as manage the associated fiat cash movement into and out of the system.
- Writing BlockVault contracts:
- To record the initial loan data
- To track funding information during the stablecoin funding process
- To validate the loan data
- To update the loan tape for PM as needed
- To update (or correct) loan data (optional)
- To remove a loan from the system (optional)
- Developing an application to orchestrate the execution of the BlockVault contracts and upload loan documents (e.g. PDF of the signing note), and to use the Provenance Blockchain SDK to manage the flow of stablecoin, asset ownership, and data sharing on the blockchain.
A Provenance Blockchain application has several options for interfacing with the blockchain during development and for production usage:
- Run a blockchain localnet in situ for easy local development;
- Connect to the Provenance Blockchain public testnet;
- Connect to the public production Provenance Blockchain mainnet.