Promissory

asset_controller.v1.Promissory

type Promissory

asset_controller.v1.ListAssetFilesResponse.Promissory

FieldTypeDescription
versionstringVersion of the digital banknote file.
idstringUUID of the digital banknote file
currencystringISO-4217 currency code
amountint64Decimal precision
decimalsuint32Decimal precision
authoritystringPublic Key of the monetary Authority
issuerstringPublic key of the issuer
issuance_datestringRFC3339 timestamp of the issuance date
block_depthuint32Number of signature blocks
authorization_signaturebytesSignature of the latest hash block from the Authority
transfer_signaturebytesSignature of the previous owner
notariesrepeated NotaryList of notaries
{
  "version": "0.1.0",
  "id": "PROMISSORY_ID",
  "currency": "USD",
  "amount": 500,
  "decimals": 2,
  "authority": "zAuthorityPublicKeyMultibase58Encoded",
  "issuer": "zIssuerPublicKeyMultibase58Encoded",
  "issuance_date": "2006-01-02T15:04:05Z",
  "block_depth": 3,
  "authorization_signature": "ByteLengthAuthSignatureVariesByAlgo=",
  "transfer_signature": "ByteLengthTransferSignatureVariesByAlgo=",
  "notaries": [
    {
      "did": "did:method-name:zDIDMultibase58Encoded",
      "signature": "ByteLengthSignatureVariesByAlgo="
    },
    {
      "did": "did:method-name:zDIDMultibase58Encoded",
      "signature": "ByteLengthSignatureVariesByAlgo="
    }
  ]
}