Ledger Proofs

Introduction

The FinP2P network enables secure, decentralized financial transactions across disparate ledgers. Central to this is the
Execution Plan (EP), a mechanism for orchestrating multi-step operations. This document details additional capabilities
in the EP trust model for allowing ledger adapters to provide proofs of execution of EP instructions.

Ledger Operation Proofs

Ledger operations produce a Receipt, which serves as a guarantee from the underlying platform of a transaction that
occurred in its ledger. This receipt is provided by an adapter to the router to record transactions, either as part of
the EP instruction completion proposal phase or individually to record transactions that were triggered externally to
FinP2P and affect the investors' accounts.

To further enhance this guarantee, an additional proof can be attached to the Receipt. By supplying the proof as part of
the Receipt, the organization adds another layer of trust and a guarantee that a transaction was recorded in the ledger.
This can increase the trust of other parties that may not have direct access to the ledger.

Organizations can provide segregated private keys for ledger proofs. The information about the key used for verification
is provided by the FinP2P asset policy, which provides general information about the tokenization platform capabilities
and is published as metadata on specific asset profiles. These keys can be further pinned by other parties to reduce the
need to trust external configuration dependencies.

Overview of Proof Types

  • Receipt Signature Based:
    • Ledgers may apply a digital signing algorithm encoding the Receipt transaction information into a digest, which
      will be signed by a private key owned exclusively by the organization controlling the ledger or tokenization
      platform. The additional signature-based proof adds another layer of reliability for the guarantee provided by the
      organization that the Receipt transaction was indeed recorded in its ledger, and the data was not tampered with.
    • The proof is a digital signature applied to the Receipt data and signed by a private key owned by the controlling
      organization of the tokenization platform, the structure of the message to be signed can follow the below EIP712
      structure of Hashlist structure.
    • The key may differ from the Organization's Router private key, which is associated with the public key identity of
      the organization in the FinP2P network (AKA FinID).

Other proof types to be added soon:

  • Zero Knowledge:
    • For ledgers and tokenization platforms that support Zero Knowledge Proofs (ZKP), the ledger may provide a ZKP for
      the existence of the transaction within a blockchain block and that the network has reached consensus about the
      block.
  • Ledger Specific Proofs:
    • Ledgers may supply proof of a transaction being recorded on a ledger by providing ledger-specific cryptographic
      proofs of this action. This may require additional key pre-setup to ensure other parties can validate the proof.

Receipt Signature Based proof

Currently, two signature formats are supported for the Receipt Signature Based proof:

  • Hashlist
  • EIP712

Generating a Signature

  • Constructing the Values:

    Gather the necessary values based on the message fields specifications below. These values typically include essential details that need to be signed.

  • Hashing:

    Given the signature format, structure and generate a hash using a cryptographic hashing algorithm, such as SHA-256 or Keccak-256. This hash represents a fixed-size, unique fingerprint of the original data.

  • Signing the Hash:

    The signature is produced using the ECDSA (Elliptic Curve Digital Signature Algorithm) over the secp256k1 curve.
    Use the private secp256k1 key ,to sign the hash. This cryptographic signature ensures that the hash (and thus the original data) has not been tampered with and verifies the identity of the signer.
    The signature format is represented as the Ethereum 65-byte ECDSA signature format (r, s and v).

EIP712 Proof Structure

The EIP712 Proof Structure provides a standardized approach for signing structured data. This format ensures compatibility across wallets and dApps, offering enhanced security and flexibility for off-chain data signatures.
EIP712 enables users to sign structured data, which is then hashed and verified by smart contracts. By separating the hashing and signing processes, EIP712 prevents phishing attacks that target the ambiguity of raw message signatures.

Type Definitions

The following table describes the EIP-712 type definitions:

OrderType NameField NameField TypeDescription
1EIP712DomainnamestringName of the signing domain
2versionstringVersion of the signing domain
3chainIduint256Chain ID where the contract is deployed
4verifyingContractstringAddress of the verifying contract
5SourceaccountTypestringType of the account
6SourcefinIdstringFinID of the account
7DestinationaccountTypestringType of the account
8DestinationfinIdstringFinID of the account
9TradeDetailsexecutionContextExecutionContextExecution plan context
10ExecutionContextexecutionPlanIdstringExecution plan ID
11ExecutionContextinstructionSequenceNumberstringInstruction sequence number
12TransactionDetailsoperationIdstringOperation ID of the transaction
13TransactionDetailstransactionIdstringTransaction ID on the ledger
14AssetassetIdstringID of the asset
15AssetassetTypestringType of the asset
16ReceiptidstringID of the receipt
17ReceiptoperationTypestringThe operation type (e.g., hold, release)
18ReceiptsourceSourcethe source account
19ReceiptdestinationDestinationthe destination account
20ReceiptassetAssetthe asset
21ReceipttradeDetailsTradeDetailsthe trade details relating to the EP
22ReceipttransactionDetailsTransactionDetailsthe transaction details

Message Fields

The following table describes the fields included in the EIP-712 message:

Field NameField TypeDescription
idstringID of the receipt
operationTypestringThe operation type (e.g., hold, release)
sourceAccountTypestringType of the source account
sourceFinIdstringFinId of the source account
destinationAccountTypestringType of the destination account
destinationFinIdstringFinId of the destination account
assetIdstringID of the asset
assetTypestringType of the asset
executionPlanIdstringExecution plan ID
instructionSequenceNumberstringInstruction sequence number
operationIdstringOperation ID of the transaction
transactionIdstringTransaction ID

JSON Samples:

EIP712 Template
{
  "domain": {
    "chainId": 1,
    "name": "FinP2P",
    "verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC",
    "version": "1"
  },
  "message": {
    "id": "receipt123456",
    "operationType": "hold",
    "source": {
      "accountType": "sourceAccountType",
      "finId": "sourceFinId"
    },
    "destination": {
      "accountType": "destinationAccountType",
      "finId": "destinationFinId"
    },
    "asset": {
      "assetId": "asset123",
      "assetType": "finp2p"
    },
    "tradeDetails": {
      "executionContext": {
        "executionPlanId": "ep123",
        "instructionSequenceNumber": "1"
      }
    },
    "transactionDetails": {
      "operationId": "op123",
      "transactionId": "tx123"
    }
  },
  "primaryType": "Receipt",
  "types": {
    "EIP712Domain": [
      {
        "name": "name",
        "type": "string"
      },
      {
        "name": "version",
        "type": "string"
      },
      {
        "name": "chainId",
        "type": "uint256"
      },
      {
        "name": "verifyingContract",
        "type": "address"
      }
    ],
    "Source": [
      {
        "name": "accountType",
        "type": "string"
      },
      {
        "name": "finId",
        "type": "string"
      }
    ],
    "Destination": [
      {
        "name": "accountType",
        "type": "string"
      },
      {
        "name": "finId",
        "type": "string"
      }
    ],
    "TransactionDetails": [
      {
        "name": "operationId",
        "type": "string"
      },
      {
        "name": "transactionId",
        "type": "string"
      }
    ],
    "Asset": [
      {
        "name": "assetId",
        "type": "string"
      },
      {
        "name": "assetType",
        "type": "string"
      }
    ],
    "ExecutionContext": [
      {
        "name": "executionPlanId",
        "type": "string"
      },
      {
        "name": "instructionSequenceNumber",
        "type": "string"
      }
    ],
    "TradeDetails": [
      {
        "name": "executionContext",
        "type": "ExecutionContext"
      }
    ],
    "Receipt": [
      {
        "name": "id",
        "type": "string"
      },
      {
        "name": "operationType",
        "type": "string"
      },
      {
        "name": "source",
        "type": "Source"
      },
      {
        "name": "destination",
        "type": "Destination"
      },
      {
        "name": "asset",
        "type": "Asset"
      },
      {
        "name": "tradeDetails",
        "type": "TradeDetails"
      },
      {
        "name": "transactionDetails",
        "type": "TransactionDetails"
      }
    ]
  }
}

Ledger adapter API template type
{
  "signature": {
    "hashFunc": "keccak_256",
    "signature": "56f471d1010b3cad0e1461886c2bb9c85bdb0bcc288f857bf8e877f147a3a2e97d21053fcaff61593df9cac2701c889e0e43e7872d38d8696739e3fbf6479eb2",
    "template": {
      "domain": {
        "chainId": 1,
        "name": "FinP2P",
        "verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC",
        "version": "1"
      },
      "hash": "b55a46f6fa8188ab834de7bd4c9105b5ede3c7accc9eb320c423fce8e2d7e255",
      "message": {
        "id": "receipt123456",
        "operationType": "hold",
        "source": {
          "accountType": "sourceAccountType",
          "finId": "sourceFinId"
        },
        "destination": {
          "accountType": "destinationAccountType",
          "finId": "destinationFinId"
        },
        "asset": {
          "assetId": "asset123",
          "assetType": "finp2p"
        },
        "tradeDetails": {
          "executionContext": {
            "executionPlanId": "ep123",
            "instructionSequenceNumber": "1"
          }
        },
        "transactionDetails": {
          "operationId": "op123",
          "transactionId": "tx123"
        }
      },
      "primaryType": "Receipt",
      "type": "EIP712",
      "types": {
        "definitions": [
          {
            "fields": [
              {
                "name": "name",
                "type": "string"
              },
              {
                "name": "version",
                "type": "string"
              },
              {
                "name": "chainId",
                "type": "uint256"
              },
              {
                "name": "verifyingContract",
                "type": "address"
              }
            ],
            "name": "EIP712Domain"
          },
          {
            "fields": [
              {
                "name": "accountType",
                "type": "string"
              },
              {
                "name": "finId",
                "type": "string"
              }
            ],
            "name": "Source"
          },
          {
            "fields": [
              {
                "name": "accountType",
                "type": "string"
              },
              {
                "name": "finId",
                "type": "string"
              }
            ],
            "name": "Destination"
          },
          {
            "fields": [
              {
                "name": "operationId",
                "type": "string"
              },
              {
                "name": "transactionId",
                "type": "string"
              }
            ],
            "name": "TransactionDetails"
          },
          {
            "fields": [
              {
                "name": "assetId",
                "type": "string"
              },
              {
                "name": "assetType",
                "type": "string"
              }
            ],
            "name": "Asset"
          },
          {
            "fields": [
              {
                "name": "executionPlanId",
                "type": "string"
              },
              {
                "name": "instructionSequenceNumber",
                "type": "string"
              }
            ],
            "name": "ExecutionContext"
          },
          {
            "fields": [
              {
                "name": "executionContext",
                "type": "ExecutionContext"
              }
            ],
            "name": "TradeDetails"
          },
          {
            "fields": [
              {
                "name": "id",
                "type": "string"
              },
              {
                "name": "operationType",
                "type": "string"
              },
              {
                "name": "source",
                "type": "Source"
              },
              {
                "name": "destination",
                "type": "Destination"
              },
              {
                "name": "asset",
                "type": "Asset"
              },
              {
                "name": "tradeDetails",
                "type": "TradeDetails"
              },
              {
                "name": "transactionDetails",
                "type": "TransactionDetails"
              }
            ],
            "name": "Receipt"
          }
        ]
      }
    }
  },
  "type": "signatureProofPolicy"
}

Hashlist Proof Structure

The Hashlist signature format involves creating an array of hashes, where each hash represents a group of values. This structure is commonly used for operations involving multiple data points that need to be signed together. The benefit of this format is that during validation, one can construct only the necessary hash group from the original values while taking the other groups as is. This is somewhat analogous to a simplified Merkle tree, allowing for more efficient validation processes.

Field Definitions

The following table describes the fields included in the HashList message in the order they should be hashed:

Field NameField TypeDescription
idstringID of the receipt
operationTypestringThe operation type (e.g., hold, release)
transactionOperationIdstringOperation ID of the transaction
assetTypestringType of the asset
assetIdstringID of the asset
sourceAccountTypestringType of the source account
srcAccountstringFinId of the source account
destinationAccountTypestringType of the destination account
destAccountstringFinId of the destination account
transactionIdstringTransaction ID
amountstringTransaction amount
execPlanIdstringExecution plan ID
instructionSeqstringInstruction sequence number

Signature and Hashing Process

The signature is produced using the ECDSA (Elliptic Curve Digital Signature Algorithm) over the secp256k1 curve:
The signature format is represented as the Ethereum 65-byte ECDSA signature format (r, s and v).

The Hashlist signature format involves creating an array of hashes, where each hash represents a group of values.

The following steps describe how the hash is created and signed:

  • Hash The Fields to produce the hash group(HG):
    • Each group of fields as defined in the Field Definitions above is concatenated in its bytes representation and specified order and hashed using the hash algorithm.
    • Use the cryptographic hashing algorithm, such as SHA-256 or Keccak-256. This hash represents a fixed-size, unique fingerprint of the original data.
    • The string fields included in the hash are represented in UTF-8
  • Concatenate Group Hashes:
    • Combine the hashes of all field groups, in this case the single hash created in previous step, to create the Hashlist hash.
  • Sign the Final Hash:
    • The final hash is signed using the private key (secp256k1) with the ECDSA algorithm.

Hashing Formula:

HG = hash('SHA3-256' || `Keccak-256`, [fields by order]);
hashList = hash('SHA3-256' || `Keccak-256`, [concat(hg1,hg2,hgN...)]);
Signature = sign(sender private secp256k1 key, hashList)
HashList Template
{
  "signature": {
    "hashFunc": "keccak_256",
    "signature": "b5b209250e143b3159146dde1ea7da276e86b8a00bd3e60eb4b69e18e7185dfc7847d566dcede2c9c0b9d9ef2a5e903241b85cf801a62739eb47dffe08a75f44",
    "template": {
      "hash": "9f7a82d3a6176eed70ecd730ce74d5eaa78f395be005a612ca9023d44067ef84",
      "hashGroups": [
        {
          "fields": [
            {
              "name": "id",
              "type": "string",
              "value": "0ef24ef3-15ce-4241-ae15-a7802a4aac06"
            },
            {
              "name": "operationType",
              "type": "string",
              "value": "issue"
            },
            {
              "name": "transactionOperationId",
              "type": "string",
              "value": ""
            },
            {
              "name": "assetType",
              "type": "string",
              "value": "finp2p"
            },
            {
              "name": "assetId",
              "type": "string",
              "value": "bank-us:102:2fc13e4d-ad15-46af-976f-f3d4018aa266"
            },
            {
              "name": "srcAccountType",
              "type": "string",
              "value": ""
            },
            {
              "name": "srcAccount",
              "type": "string",
              "value": ""
            },
            {
              "name": "dstAccountType",
              "type": "string",
              "value": "finId"
            },
            {
              "name": "destAccount",
              "type": "string",
              "value": "0207faa9a69dcb332c7ab1a53ac47e1061c0a1045a398dd05ebba34bede787e40b"
            },
            {
              "name": "transactionId",
              "type": "string",
              "value": "0ef24ef3-15ce-4241-ae15-a7802a4aac06"
            },
            {
              "name": "amount",
              "type": "string",
              "value": "50"
            },
            {
              "name": "execPlanId",
              "type": "string",
              "value": "bank-us:106:80178f6a-0a2c-4aa9-b939-35c40c888a48"
            },
            {
              "name": "instructionSeq",
              "type": "string",
              "value": "2"
            }
          ],
          "hash": "d97eccf9bcd2c0e2bf35b512fe4c380c0a34bb8aa0126c41659445d09d4115e7"
        }
      ],
      "type": "hashList"
    }
  },
  "type": "signatureProofPolicy"
}