<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.39 (Ruby 3.4.9) -->
<?rfc rfcedstyle="yes"?>
<?rfc tocindent="yes"?>
<?rfc strict="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc text-list-symbols="o-*+"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-satp-core-16" category="std" consensus="true" submissionType="IETF" tocDepth="4" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.34.0 -->
  <front>
    <title abbrev="SATP Core">Secure Asset Transfer Protocol (SATP) Core</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-satp-core-16"/>
    <author initials="M." surname="Hargreaves" fullname="Martin Hargreaves">
      <organization>Quant Network</organization>
      <address>
        <email>martin.hargreaves@quant.network</email>
      </address>
    </author>
    <author initials="T." surname="Hardjono" fullname="Thomas Hardjono">
      <organization>MIT</organization>
      <address>
        <email>hardjono@mit.edu</email>
      </address>
    </author>
    <author initials="R." surname="Belchior" fullname="Rafael Belchior">
      <organization>INESC-ID</organization>
      <address>
        <email>rafael.belchior@tecnico.ulisboa.pt</email>
      </address>
    </author>
    <author initials="V." surname="Ramakrishna" fullname="Venkatraman Ramakrishna">
      <organization>IBM</organization>
      <address>
        <email>vramakr2@in.ibm.com</email>
      </address>
    </author>
    <author initials="A." surname="Chiriac" fullname="Alex Chiriac">
      <organization>Quant Network</organization>
      <address>
        <email>alexandru.chiriac@quant.network</email>
      </address>
    </author>
    <date year="2026" month="August" day="13"/>
    <area>Applications and Real-Time</area>
    <workgroup>Secure Asset Transfer Protocol</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 158?>

<t>This memo describes the Secure Asset Transfer Protocol (SATP) for digital assets. SATP is a protocol operating between two gateways that conducts the transfer of a digital asset from one gateway to another, each representing their corresponding digital asset networks. The protocol establishes a secure channel between the endpoints and implements a 2-phase commit (2PC) to ensure the properties of transfer atomicity, consistency, isolation and durability.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://ietf-satp.github.io/draft-ietf-satp-core/draft-ietf-satp-core.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-satp-core/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Secure Asset Transfer Protocol Working Group mailing list (<eref target="mailto:sat@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/sat/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/sat/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/ietf-satp/draft-ietf-satp-core"/>.</t>
    </note>
  </front>
  <middle>
    <?line 162?>

<section anchor="introduction">
      <name>Introduction</name>
      <t anchor="introduction-doc">This memo proposes a secure asset transfer protocol (SATP) that is intended to be deployed between two gateway endpoints
to transfer a digital asset from an origin asset network to a destination asset network.
Readers are directed first to <xref target="ARCH"/> for a description of the architecture underlying the current protocol.</t>
      <t>Both the origin and destination asset networks are assumed to be opaque
in the sense that the interior construct of a given network
is not read/write accessible to unauthorized entities.</t>
      <t>The protocol utilizes the asset burn-and-mint paradigm whereby the asset
to be transferred is permanently disabled or destroyed (burned)
at the origin asset network and is re-generated (minted) at the destination asset network.
This is achieved through the coordinated actions of the peer gateways
handling the unidirectional transfer at the respective networks.</t>
      <t>A gateway is assumed to be trusted to perform the tasks involved in the asset transfer.</t>
      <t>The overall aim of the protocol is to ensure that the state of assets
in the origin and destination networks remain consistent,
and that asset movements into (out of) networks via gateways can be accounted for.</t>
      <t>There are several desirable technical properties of the protocol.
The protocol must ensure that the properties of atomicity, consistency,
isolation, and durability (ACID) are satisfied.</t>
      <t>The requirement of consistency implies that the
asset transfer protocol always leaves both asset networks
in a consistent state (that the asset is located in
one system/network only at any time).</t>
      <t>Atomicity means that the protocol must guarantee
that either the transfer commits (completes) or entirely fails,
where failure is taken to mean there is no change to the
state of the asset in the origin (sender) asset network.</t>
      <t>The property of isolation means that while a transfer
is occurring to a digital asset from an origin network,
no other state changes can occur to the asset.</t>
      <t>The property of durability means that once
the transfer has been committed by both gateways,
that this commitment must hold regardless of subsequent
unavailability (e.g. crash) of the gateways implementing the SATP protocol.</t>
      <t>All messages exchanged between gateways are assumed to run over TLS1.3.
HTTPS must be used instead of plain HTTP.</t>
      <t>The endpoints at the respective gateways should provide access to credentials
(or other identification mechanisms) to prove the legal owner (or operator) of the gateway.
An example of credentials include X509 certificates.</t>
    </section>
    <section anchor="conventions-used-in-this-document">
      <name>Conventions used in this document</name>
      <t anchor="conventions">The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL"
in this document are to be interpreted as described in RFC 2119 <xref target="REQ-LEVEL"/>.</t>
      <t>In this document, these words will appear with that interpretation
only when in ALL CAPS. Lower case uses of these words are not to be
interpreted as carrying significance described in RFC 2119.</t>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
      <t anchor="terminology-doc">The following are some terminology used in the current document, some borrowed from <xref target="NIST"/>:</t>
      <ul spacing="normal">
        <li>
          <t>Digital asset: digital representation of a value or of a right that is able to be
transferred and stored electronically using distributed ledger technology or similar technology <xref target="MICA"/>.</t>
        </li>
        <li>
          <t>Asset network: A monolithic system or a set of distributed systems that manage digital assets.</t>
        </li>
        <li>
          <t>Client application: This is the application employed by a user
to interact with a gateway.</t>
        </li>
        <li>
          <t>Gateway: The computer system functionally capable of acting
as a gateway in an asset transfer.</t>
        </li>
        <li>
          <t>Sender gateway: The gateway that initiates a unidirectional asset transfer.</t>
        </li>
        <li>
          <t>Recipient gateway: The gateway that is the recipient side of
a unidirectional asset transfer.</t>
        </li>
        <li>
          <t>Claim: An assertion made by an Entity. The terms Claim, Claim Name and Claim Value are as defined in <xref target="RFC7519"/>.</t>
        </li>
        <li>
          <t>Claim Type: The intended use of a claim in the context of the message flows (e.g., asset lock claim).</t>
        </li>
        <li>
          <t>Gateway Claim: An assertion made by a Gateway regarding the status or
condition of resources (e.g. assets, public keys, etc.)
accessible to that gateway (e.g. within its asset network or system).</t>
        </li>
      </ul>
      <t>In the remainder of this document, for brevity of description the term “asset network” will often be shorted to "network".</t>
    </section>
    <section anchor="the-secure-asset-transfer-protocol">
      <name>The Secure Asset Transfer Protocol</name>
      <section anchor="satp-protocol">
        <name>Overview</name>
        <t anchor="satp-overview">The Secure Asset Transfer Protocol (SATP) is a gateway-to-gateway protocol used by a sender gateway with a recipient gateway to perform a unidirectional transfer of a digital asset.</t>
        <t>The protocol defines a number of API endpoints, resources and identifier definitions, and message flows corresponding to the asset transfer between the two gateways.</t>
        <t>The current document pertains to the interaction between gateways through API2 <xref target="ARCH"/>.</t>
        <artwork><![CDATA[
                 +----------+                +----------+
                 |  Client  |                | Off-net  |
          ------ |   (App)  |                | Resource |
          |      +----------+                +----------+
          |           |                      |   API3   |
          |           |                      +----------+
          |           |                           ^
          |           V                           |
          |      +---------+                      |
          V      |   API1  |                      |
       +-----+   +---------+----+        +----+---------+   +-----+
       |     |   |         |    |        |    |         |   |     |
       | Net.|   | Gateway |API2|        |API2| Gateway |   | Net.|
       | NW1 |---|    G1   |    |<------>|    |    G2   |---| NW2 |
       |     |   |         |    |        |    |         |   |     |
       +-----+   +---------+----+        +----+---------+   +-----+
                               Figure 1
]]></artwork>
      </section>
      <section anchor="satp-model">
        <name>SATP Model</name>
        <t anchor="the-satp-model">The model for SATP is shown in Figure 1 <xref target="ARCH"/>.
The Client (application) interacts with its local gateway (G1) over an interface (API1) in order to provide instructions to the gateway with regards to actions to assets and related resources located in the local system or network (NW1).</t>
        <t>Gateways interact with each other over a gateway interface (API2). A given gateway may be required to access resources that are not located in network NW1 or network NW2. Access to these types of resources are performed over an off-network interface (API3).</t>
      </section>
      <section anchor="stages-of-the-protocol">
        <name>Stages of the Protocol</name>
        <t anchor="satp-flowtypes">The SATP protocol defines three (3) stages for a unidirectional asset transfer:</t>
        <ul spacing="normal">
          <li>
            <t>Transfer Initiation stage (Stage-1): These flows deal with commencing a transfer from one gateway to another. In this stage the sender gateway delivers a proposal containing the parameters agreed upon in Stage-0.</t>
          </li>
          <li>
            <t>Lock-Assertion stage (Stage-2):
These flows deal with the conveyance of signed assertions from the sender gateway to the receiver gateway regarding the locked status of an asset at the origin network.</t>
          </li>
          <li>
            <t>Commitment Preparation and Finalization stage (Stage-3):
These flows deal with the asset transfer and commitment establishment between two gateways.</t>
          </li>
        </ul>
        <t>In order to clarify discussion, the interactions between the peer gateways prior to the transfer initiation stage is referred to as the setup stage (Stage-0), which is outside the scope of the current specification.</t>
        <t>The Stage-1, Stage-2 and Stage-3 flows will be discussed below.</t>
      </section>
      <section anchor="gateway-cryptographic-keys">
        <name>Gateway Cryptographic Keys</name>
        <t>SATP recognizes the following cryptographic keys which are intended for distinct purposes within the different stages of the protocol.</t>
        <ul spacing="normal">
          <li>
            <t>Gateway signature public key-pair: This is the key-pair utilized by a gateway to digitally sign assertions and receipts.</t>
          </li>
          <li>
            <t>Gateway secure channel establishment public key-pair: This is the key-pair utilized by peer gateways to establish a secure channel (using TLS1.3) for a transfer session.</t>
          </li>
          <li>
            <t>Gateway identity public key pair: This is the key-pair that uniquely identifies a gateway.</t>
          </li>
          <li>
            <t>Gateway-owner identity public key pair: This is the key-pair that identifies the owner (e.g. legal entity) who is the legal owner of a gateway.</t>
          </li>
        </ul>
        <t>When peer gateways deliver public-keys, these are expressed in JSON Web Key (JWK) format <xref target="RFC7517"/>.</t>
        <t>This document assumes that the relevant X.509 certificates are associated with these keys. However, the mechanisms to obtain X.509 certificates is outside the scope of this specification.</t>
      </section>
    </section>
    <section anchor="satp-message-format-identifiers-and-descriptors">
      <name>SATP Message Format, identifiers and Descriptors</name>
      <section anchor="satp-messages-identifiers">
        <name>Overview</name>
        <t anchor="satp-message-identifier-overview">This section describes the SATP message types, the format of the messages exchanged between two gateways, the format for resource descriptors and other related parameters.</t>
        <t>The mandatory fields are determined by the message type exchanged between the two gateways (see section <xref format="counter" target="satp-Stage0-section"/>).</t>
      </section>
      <section anchor="satp-message-digital-signatures-and-key-types">
        <name>SATP Message Digital Signatures and Key Types</name>
        <t anchor="satp-message-signatures">All SATP messages exchanged between gateways MUST be signed <xref target="ECDSA"/>, using the JSON Web Signatures mechanism <xref target="RFC7515"/>.</t>
        <t>Signature algorithms used by gateways for SATP messages SHOULD be selected from those defined in
the JSON Web Algorithms (JWA) specification <xref target="RFC7518"/>, with key types defined in JSON Web Key (JWK) specification <xref target="RFC7517"/>.</t>
        <t>The choice of signature algorithm and key-type must be agreed upon between the gateways prior to the commencement of the SATP protocol session. The agreed values are then included within the Transfer Initialization Claim body in Transfer Proposal Message.</t>
        <t>All SATP implementations MUST implement at minimal the ECDSA signature algorithm with the P-256 curve and the SHA-256 hash function.</t>
        <t>Additional signature algorithms and keying parameters may be negotiated by peer gateways. However, the negotiation protocol is outside the scope of this specification.</t>
      </section>
      <section anchor="satp-message-format-and-payloads">
        <name>SATP Message Format and Payloads</name>
        <t anchor="satp-message-format">SATP messages are exchanged between peer gateways, where depending on the message type one gateway may act as a client of the other (and vice versa).</t>
        <t>All SATP messages exchanged between gateways MUST be JSON format <xref target="RFC8259"/>.</t>
        <section anchor="protocol-version">
          <name>Protocol version</name>
          <t anchor="satp-protocol-version">This refers to SATP protocol Version, encoded as "major.minor" (separated by a period symbol).</t>
          <t>The current version is "1.0" defined in this specification. Implementations not understanding a future option value should return an appropriate error response and cease the negotiation.</t>
        </section>
        <section anchor="message-type">
          <name>Message Type</name>
          <t anchor="satp-message-types">This refers to the type of request or response to be conveyed in the message.</t>
          <t>The possible values are defined in the urn:ietf:params:satp:core:msgtype namespace under the IANA SATP registered
namespace urn:ietf:params:satp (see section <xref format="counter" target="satp-iana-consideration"/>):</t>
          <ul spacing="normal">
            <li>
              <t>transfer-proposal-msg: This is the transfer proposal message from the sender gateway carrying the set of proposed parameters for the transfer.</t>
            </li>
            <li>
              <t>proposal-receipt-msg: This is the signed receipt message indicating acceptance of the proposal by the receiver gateway.</t>
            </li>
            <li>
              <t>transfer-commence-msg: Request to begin the commencement of the asset transfer.</t>
            </li>
            <li>
              <t>ack-commence-msg: Response to accept the commencement of the asset transfer.</t>
            </li>
            <li>
              <t>lock-assert-msg: Sender gateway has performed the lock of the asset in the origin network.</t>
            </li>
            <li>
              <t>assertion-receipt-msg: Receiver gateway acknowledges receiving the signed lock-assert-msg.</t>
            </li>
            <li>
              <t>commit-prepare-msg: Sender gateway requests the start of the commitment stage.</t>
            </li>
            <li>
              <t>ack-prepare-msg: Receiver gateway acknowledges receiving the previous commit-prepare-msg and agrees to start the commitment stage.</t>
            </li>
            <li>
              <t>commit-final-msg: Sender gateway has performed the extinguishment (burn) of the asset in the origin network.</t>
            </li>
            <li>
              <t>ack-commit-final-msg: Receiver gateway acknowledges receiving the signed commit-final-msg and has performed the asset creation and assignment in the destination network.</t>
            </li>
            <li>
              <t>commit-transfer-complete-msg: Sender gateway indicates closure of the current transfer session.</t>
            </li>
            <li>
              <t>error-msg: This message is used to indicate that an error has occured at the SATP layer. It can be transmitted by either gateways.</t>
            </li>
            <li>
              <t>session-abort-msg: This message is used by a gateway to abort the current session.</t>
            </li>
          </ul>
        </section>
        <section anchor="digital-asset-identifier">
          <name>Digital Asset Identifier</name>
          <t>This is the identifier that uniquely identifies the digital asset in the origin network which is to be transferred to the destination network.</t>
          <t>The digital asset identifier is a value that is derived by the applications utilized by the originator and the beneficiary prior to starting the asset transfer.</t>
          <t>The mechanism used to derive the digital asset identifier is outside the scope of the current document.</t>
          <t>The digital asset identifier is a JSON object, which may be encoded as a string in base64 <xref target="RFC4648"/>.</t>
        </section>
        <section anchor="asset-profile-identifier">
          <name>Asset Profile Identifier</name>
          <t>This is the unique identifier of the asset schema or asset profile which defines the class or type of asset in question. The asset profile is relevant from a regulatory perspective.</t>
          <t>In some cases the profile identifier may be needed by the receiver gateway at the destination network in order to evaluate whether the asset is permitted to enter the destination network.</t>
          <t>The default format of the asset profile identifier is JSON, with base64 encoding.</t>
          <t>The formal specification of asset profiles and their identification is outside the scope of this document.</t>
        </section>
        <section anchor="gateway-network-id-networkid">
          <name>Gateway Network ID (NetworkID)</name>
          <t>The network identifier (NetworkID) is the unique alphanumeric string representing the asset network behind a gateway.
A gateway may simultaneously stand in front of multiple asset networks.  As such, for a specific asset transfer instance both the sender gateway and recipient gateway must indicate which asset networks are the origin network and destination network respectively.</t>
          <t>The network identifier values of the origin network (senderGatewayNetworkId) and destination network (recipientGatewayNetworkId) must be communicated and agreed upon prior to the commencement of the asset transfer.
This selection is confirmed by peer gateways in the Transfer Initialization Claim that is transmitted within Transfer Proposal Message.</t>
          <t>The mechanism to allocate globally unique network identifier is outside the scope of the current specification.</t>
        </section>
        <section anchor="transfer-context-id">
          <name>Transfer-Context ID</name>
          <t>This is the unique immutable identifier representing the application layer context of a single unidirectional transfer. The method to generate the transfer-context ID is outside the scope of the current document.</t>
          <t>The transfer-context may be a complex data structure that contains all information related to a SATP execution instance. Examples of information contained in a transfer-context may include identifiers of sessions, gateways, networks or assets related to the specific SATP execution instance. The sender gateway provides this value to the receiver gateway.</t>
          <t>The default format of the transfer context identifier is JSON, with base64 encoding.</t>
          <t>The Transfer Context ID (transferContextId) value is established by the sender application (possibly with the assistance of the sender gateway) in the origin network. The value is then communicated to the receiving application in the destination network prior to the commencement of the SATP protocol.  Both the sender gateway and receiver gateway must understand how to process the transferContextId value. The value is used in the Transfer Proposal Message
(with message type satp:core:msgtype:transfer-proposal-msg) between the two gateways.</t>
          <t>The mechanism to derive the Transfer Context ID value and to communicate it between the applications is outside the scope of the current specification.</t>
        </section>
        <section anchor="session-id">
          <name>Session ID</name>
          <t>This is the unique identifier representing a session between two gateways handling a single unidirectional transfer. This may be derived from the Transfer-Context ID at the application level. There may be several session IDs related to a SATP execution instance. Only one Session ID may be active for a given SATP execution instance. Session IDs may be stored in the transfer-context for audit trail purposes.</t>
          <t>The sender gateway provides this value to the receiver gateway.</t>
        </section>
        <section anchor="client-credential-types-supported-by-gateways">
          <name>Client Credential Types Supported by Gateways</name>
          <t>SATP Gateways MUST support JSON Web Tokens (JWT) <xref target="RFC7519"/> with OAUth2.0 <xref target="RFC6749"/> as the minimal credential type for authenticating incoming API calls from Client Applications (see Figure 1).</t>
          <t>A gateway may support additional credential mechanisms, which may be advertised by the gateway through different mechanisms (e.g. config file at a well-known endpoint). However, these mechanisms are out of scope for the current specification.</t>
        </section>
        <section anchor="gateway-supported-tls-schemes">
          <name>Gateway Supported TLS Schemes</name>
          <t>Gateways MUST support TLS1.3 <xref target="RFC8446"/>.</t>
          <t>The TLS scheme is used by peer gateways to establish the TLS session prior to the commencement of an asset transfer. Gateways MUST support cryptographic schemes at least as secure AES-128 in GCM mode with SHA-256 (TLS_AES_128_GCM_SHA256).</t>
          <t>If the client (sender gateway) transmits a list of supported credential schemes, the server (recipient gateway) selects one acceptable credential scheme from the offered schemes.</t>
          <t>If no acceptable credential scheme was offered, a "unsupported
gatewayTlsScheme" (err_1.1.34) reject error message is returned by the server
(see section <xref format="counter" target="satp-stage1-init-reject"/>).</t>
        </section>
        <section anchor="client-offers-other-supported-tls-schemes">
          <name>Client Offers Other Supported TLS Schemes</name>
          <t anchor="satp-client-offers-sec">If a client (sender gateway) wishes to use TLS schemes other than the basic scheme (AES-128 in GCM mode with SHA-256), then the client may may choose to send a JSON object listing the client's supported TLS schemes.</t>
          <t>These must be selected from those defined in TLS1.3 <xref target="RFC8446"/>.</t>
        </section>
        <section anchor="gateway-identifier">
          <name>Gateway Identifier</name>
          <t>This is the unique identifier of the gateway service.  The gateway identifier MUST be uniquely bound to its SATP endpoint (e.g. via X.509 certificates).</t>
          <t>This gateway identifier is distinct from the gateway operator business identifier (e.g., legal entity identifier (LEI) number).
A gateway operator may operate multiple gateways. Each of the gateways
within an asset network MUST be identified by a unique gateway identifier.</t>
          <t>The mechanisms to establish the gateway identifier or the operator identifier is outside the scope of this specification.</t>
        </section>
        <section anchor="payload-hash">
          <name>Payload Hash</name>
          <t>This is the hash of the current message payload. This is utilized in some crucial messages within the SATP message flows to detect errors or attacks, where the payload-hash of the previously received message (from a sender gateway) is included in the response message to that sender gateway.</t>
          <t>For example, the hash of the Transfer Proposal message from the sender gateway is included in the Transfer Commence message. Similarly, the hash of the lock-assertion message (from the gateway at the origin network) is included in the Lock Assertion Receipt Message (sent in response by the gateway at the destination network).</t>
        </section>
        <section anchor="hash-algorithm-supported">
          <name>Hash Algorithm Supported</name>
          <t anchor="satp-hash-algo-supported">All cryptographic hash operations in the current specification follow that used for JSON structures, which includes the canonicalization (normalization) and serialization of the data, prior to the application of the hash algorithm.</t>
          <t>The default hash algorithm that all SATP implementations MUST support is the SHA-256 algorithm <xref target="RFC7515"/>.</t>
        </section>
        <section anchor="signature-algorithms-supported">
          <name>Signature Algorithms Supported</name>
          <t>This is a JSON list of digital signature algorithms supported by a
gateway. Each entry in the list should be either an Algorithm Name value registered in the IANA "JSON Web Signature and Encryption Algorithms" registry established by <xref target="RFC7518"/> or be a value that contains a Collision-Resistant Name.</t>
          <t>See section <xref format="counter" target="satp-message-signatures"/>.</t>
        </section>
        <section anchor="asset-lock-mechanism-within-a-network">
          <name>Asset Lock Mechanism within a Network</name>
          <t>SATP gateways may be providing service to multiple types of asset networks, each of which may utilize different local mechanisms to immobile (lock) a given asset as way to provide exclusion in the case of multiple attempts to change the state of the asset.</t>
          <t>The origin network and the destination network may in fact utilize distinct asset locking mechanisms, and the type of mechanisms to immobile (lock) a given asset may have different convergence (finalization) speeds. Peer gateways must exchange information about the asset locking information in their respective network to enable both gateways to compute an approximate time of convergence (assetLockExpirationTime) and set timers for the transfer of asset. A timer that expires too soon may result in the SATP protocol terminating too early before reaching the final commitment stage.</t>
          <t>Currently, the most common type of mechanisms (NetworkLockType) to temporarily lock an asset in a network are (i) TIME_LOCK, (ii) HASH_LOCK, (iii) HASH_TIME_LOCK.</t>
          <t>Some examples of the use of lock mechanisms are follows. Bitcoin <xref target="BTC"/> utilizes a time-lock for delays in some of its operations (e.g., nLockTime). Ethereum <xref target="ETH"/> uses a Hash-Lock mechanism for atomic swaps. Ethereum and Ripple <xref target="XRP"/> uses Hashed Time-lock in their contracts (HTLC).</t>
          <t>The exact definition of these asset locking mechanisms are network-dependent, and such are out of the scope of the current work.</t>
        </section>
        <section anchor="lock-assertion-claim-format">
          <name>Lock assertion Claim Format</name>
          <t>This is the format of the claim regarding the state of the asset in the origin network.
The default format is JSON, with parts being base64 encoded as needed.</t>
          <t>If the sender gateway offers multiple choices of other formats to the receiver gateway,
the selection must occur prior to the establishment of the session.</t>
        </section>
        <section anchor="lock-assertion-claim">
          <name>Lock assertion Claim</name>
          <t>The actual encoded JSON string representation of the claim using the
format as specified by the corresponding Lock Assertion Claim Format value.</t>
        </section>
      </section>
      <section anchor="negotiation-of-security-protocols-and-parameters">
        <name>Negotiation of Security Protocols and Parameters</name>
        <t anchor="satp-negotiation-params-sec">The peer gateways in SATP must establish a TLS session between them prior to starting the transfer initiation stage (Stage-0). The TLS session continues until the transfer is completed at the end of the commitment establishment stage (Stage-3).</t>
        <section anchor="clients-and-servers">
          <name>Clients and Servers</name>
          <t anchor="satp-clients-servers">In the following steps, the sender gateway is referred to as the client while the receiver gateway as the server.</t>
          <t>Clients and servers MUST use the HTTPS protocol.</t>
          <t>Servers MUST support the use of the HTTPS POST method for the endpoint. It is NOT RECOMMENDED to support the use
of the HTTPS GET method, because the messages may change the state of the protocol and are not idempotent [RFC 9110].</t>
          <t>Clients MUST use the HTTPS POST method to send messages in this stage to the server.</t>
        </section>
        <section anchor="tls-secure-channel-establishment">
          <name>TLS Secure Channel Establishment</name>
          <t anchor="satp-tls-Established-sec">TLS 1.3 MUST be implemented to protect gateway communications.</t>
        </section>
        <section anchor="client-asserts-or-proves-identity">
          <name>Client asserts or proves identity</name>
          <t anchor="client-procedure-sec">The details of the assertion/verification step are specific to the chosen credential scheme and are outside the scope of this document.</t>
        </section>
        <section anchor="messages-can-now-be-exchanged">
          <name>Messages can now be exchanged</name>
          <t anchor="satp-msg-exchange-sec">Handshaking is complete at this point, and the client and server can begin exchanging SATP messages.</t>
        </section>
      </section>
    </section>
    <section anchor="overview-of-message-flows">
      <name>Overview of Message Flows</name>
      <t anchor="satp-flows-overview-section">The SATP message flows are logically divided into three (3) stages <xref target="ARCH"/>, with the preparatory stage denoted as Stage-0. How the tasks are achieved in Stage-0 is out of the scope of this specification.</t>
      <t>The Stage-1 flows pertains to the initialization of the transfer between the two gateways.</t>
      <t>After both gateways agree to commence the transfer at the start of Stage-2, the sender gateway G1 must deliver a signed assertion that it has correctly performed the relevant action on the asset within the origin network (NW1). Examples of actions by G1 include performing a temporary lock on the asset, or performing a permanent disablement (burn) of the asset in NW1.</t>
      <t>If that signed assertion is accepted by gateway G2, it must in return transmit a signed receipt to gateway G1 that it has correctly performed the relevant corresponding action on destination network (NW2). Examples of actions by G2 include creating (minting) a temporary asset under its control in NW2.</t>
      <t>The Stage-3 flows commit gateways G1 and G2 to the burn and mint in Stage-2. The sender gateway G1 must make the lock on the asset in the origin network NW1 to be permanent (burn). The receiver gateway G2 must assign (mint) the asset in the destination network NW2 to the correct beneficiary.</t>
      <t>The reader is directed to <xref target="ARCH"/> for further discussion of this model.</t>
      <artwork><![CDATA[
       App1  NW1          G1                     G2          NW2    App2
      ..|.....|............|......................|............|.....|..
        |     |            |       Stage 1        |            |     |
        |     |            |                      |            |     |
        |     |       (1.1)|--Transf. Proposal -->|            |     |
        |     |            |                      |            |     |
        |     |            |<--Proposal Receipt---|(1.2)       |     |
        |     |            |                      |            |     |
        |     |       (1.3)|---Transf. Commence-->|            |     |
        |     |            |                      |            |     |
        |     |            |<----ACK Commence-----|(1.4)       |     |
        |     |            |                      |            |     |
      ..|.....|............|......................|............|.....|..
        |     |            |       Stage 2        |            |     |
        |     |            |                      |            |     |
        |     |<---Lock----|(2.1)                 |            |     |
        |     |            |                      |            |     |
        |     |       (2.2)|----Lock-Assertion--->|            |     |
        |     |            |                      |            |     |
        |     |            |                 (2.3)|--Record--->|     |
        |     |            |                      |            |     |
        |     |            |<--Assertion Receipt--|(2.4)       |     |
        |     |            |                      |            |     |
      ..|.....|............|......................|............|.....|..
        |     |            |       Stage 3        |            |     |
        |     |            |                      |            |     |
        |     |       (3.1)|----Commit Prepare--->|            |     |
        |     |            |                      |            |     |
        |     |            |                 (3.2)|----Mint--->|     |
        |     |            |                      |            |     |
        |     |            |<----Commit Ready-----|(3.3)       |     |
        |     |            |                      |            |     |
        |     |<---Burn----|(3.4)                 |            |     |
        |     |            |                      |            |     |
        |     |       (3.5)|-----Commit Final---->|            |     |
        |     |            |                      |            |     |
        |     |            |                 (3.6)|---Assign-->|     |
        |     |            |                      |            |     |
        |     |            |<-----ACK Final-------|(3.7)       |     |
        |     |            |                      |            |     |
        |     |            |                      |            |     |
        |     |<--Record---|(3.8)                 |            |     |
        |     |            |                      |            |     |
        |     |       (3.9)|--Transfer Complete-->|            |     |
      ..|.....|............|......................|............|.....|..
                                Figure 2
]]></artwork>
    </section>
    <section anchor="identity-and-asset-verification-stage-stage-0">
      <name>Identity and Asset Verification Stage (Stage 0)</name>
      <t anchor="satp-Stage0-section">Prior to commencing the asset transfer from the sender gateway (client) to the recipient gateway (server),
both gateways must perform a number of verification steps.
The types of information required by both the sender and recipient are use-case dependent and asset-type dependent.</t>
      <t>The verifications include, but not limited to, the following:</t>
      <ul spacing="normal">
        <li>
          <t>Verification of the gateway signature public key: The sender gateway and receiver gateway must validate their respective signature public keys that will later be used to sign assertions and claims. This may include validating the X509 certificates of these keys.</t>
        </li>
        <li>
          <t>Gateway owner verification:
This is the verification of the identity (e.g. LEI) of the owners of the gateways.</t>
        </li>
        <li>
          <t>Gateway device and state validation:
This is the device attestation evidence <xref target="RFC9334"/>
that a gateway must collect and convey to each other,
where a verifier is assumed to be available to decode,
parse and appraise the evidence.</t>
        </li>
        <li>
          <t>Originator and beneficiary identity verification:
This is the identity and public-key of the entity (originator)
in the origin network seeking to transfer the asset to
another entity (beneficiary) in the destination network.</t>
        </li>
      </ul>
      <t>These are considered out of scope in the current specification,
and are assumed to have been successfully completed prior to
the commencement of the transfer initiation flow.
The reader is directed to <xref target="ARCH"/> for further discussion regarding Stage-0.</t>
    </section>
    <section anchor="transfer-initiation-stage-stage-1">
      <name>Transfer Initiation Stage (Stage 1)</name>
      <t anchor="satp-stage1-section">This section describes the transfer initiation stage, where the sender gateway and the receiver gateway prepare for the start of the asset transfer.</t>
      <t>The sender gateway proposes the set of transfer parameters and asset-related artifacts for the transfer to the receiver gateway. These are contained in the Transfer Initiation Claim.</t>
      <t>If the receiver gateway accepts the proposal, it returns a signed receipt message for the proposal indicating it agrees to proceed to the next stage. If the receiver gateway rejects any parameters or artifacts in the proposal, it can provide a counteroffer to the sender gateway by responding with a proposal reject message carrying alternative parameters.</t>
      <section anchor="transfer-initialization-claim">
        <name>Transfer Initialization Claim</name>
        <t anchor="satp-stage1-init-claim">This is set of artifacts pertaining to the asset that
must be agreed upon between the client (sender
gateway) and the server (recipient gateway).</t>
        <t>The format of the identity fields in this message, unless otherwise stated, is a JSON string.</t>
        <t>The Transfer Initialization Claim consists of the following:</t>
        <ul spacing="normal">
          <li>
            <t>digitalAssetId REQUIRED: This is the globally unique identifier for the digital asset located in the origin network.</t>
          </li>
          <li>
            <t>assetProfileId REQUIRED: This is the globally unique identifier for the asset-profile definition (document) on which the digital asset was issued.</t>
          </li>
          <li>
            <t>networkLockType REQUIRED: The default locking mechanism used for an asset. These can be (i) TIME_LOCK, (ii) HASH_LOCK, (iii) HASH_TIME_LOCK.</t>
          </li>
          <li>
            <t>assetLockExpirationTime OPTIONAL: The duration of time (in seconds) for an asset lock to expire in the network, if it is a HASH_TIME_LOCK or a TIME_LOCK.</t>
          </li>
          <li>
            <t>verifiedOriginatorEntityId REQUIRED: This is the identity data of the originator entity (person or organization) in the origin network. This information must be verified by the sender gateway.</t>
          </li>
          <li>
            <t>verifiedBeneficiaryEntityId REQUIRED: This is the identity data of the beneficiary entity (person or organization) in the destination network. This information must be verified by the receiver gateway.</t>
          </li>
          <li>
            <t>originatorPublicKey REQUIRED: This is the public key of the asset owner (originator) in the origin network or system.</t>
          </li>
          <li>
            <t>beneficiaryPublicKey REQUIRED: This is the public key of the beneficiary in the destination network.</t>
          </li>
          <li>
            <t>senderGatewaySignaturePublicKey REQUIRED: This is the public key of the key-pair used by the sender gateway to sign assertions and receipts.</t>
          </li>
          <li>
            <t>receiverGatewaySignaturePublicKey REQUIRED: This is the public key of the key-pair used by the receiver gateway to sign assertions and receipts.</t>
          </li>
          <li>
            <t>senderGatewayId REQUIRED: This is the identifier of the sender gateway.</t>
          </li>
          <li>
            <t>recipientGatewayId REQUIRED: This is the identifier of the receiver gateway.</t>
          </li>
          <li>
            <t>senderGatewayNetworkId REQUIRED: This is the identifier of the origin network or system behind the client.</t>
          </li>
          <li>
            <t>recipientGatewayNetworkId REQUIRED: This is the identifier of the destination network or system behind the server.</t>
          </li>
          <li>
            <t>senderGatewayDeviceIdentityPublicKey OPTIONAL: The device public key of the sender gateway (client).</t>
          </li>
          <li>
            <t>receiverGatewayDeviceIdentityPublicKey OPTIONAL: The device public key of the receiver gateway</t>
          </li>
          <li>
            <t>senderGatewayOwnerId OPTIONAL: This is the identity information of the owner or operator of the sender gateway.</t>
          </li>
          <li>
            <t>receiverGatewayOwnerId OPTIONAL: This is the identity information of the owner or operator of the recipient gateway.</t>
          </li>
        </ul>
        <t>Here is an example representation in JSON format (with the public keys in JWK being replaced with hexadecimal for brevity):</t>
        <t>{
  "digitalAssetId": "2c949e3c-5edb-4a2c-9ef4-20de64b9960d",
  "assetProfileId": "38561",
  "verifiedOriginatorEntityId": "CN=Alice, OU=Example Org Unit, O=Example, L=New York, C=US",
  "verifiedBeneficiaryEntityId": "CN=Bob, OU=Case Org Unit, O=Case, L=San Francisco, C=US",
  "originatorPublicKey": "0304b9f34d3898b27f85b3d88fa069a879abe14db5060dde466dd1e4a31ff75e44",
  "beneficiaryPublicKey": "02a7bc058e1c6f3a79601d046069c9b6d0cb8ea5afc99e6074a5997284756fc9ae",
  "senderGatewaySignaturePublicKey": "02a7bc058e1c6f3a79601d046069c9b6d0cb8ea5afc99e6074a5997284756fc9ae",
  "receiverGatewaySignaturePublicKey": "0243b12ada6515ada3bf99a7da32e84f00383b5765fd7701528e660449ba5ef260",
  "senderGatewayId": "GW1",
  "recipientGatewayId": "GW2",
  "senderGatewayNetworkId": "1",
  "recipientGatewayNetworkId": "43114",
  "senderGatewayDeviceIdentityPublicKey": "0245785e34b4a7b457dd4683a297ea3d78bab35f8b2583df55d9df8c69604d0e73",
  "receiverGatewayDeviceIdentityPublicKey": "03763f0bc48ff154cff45ea533a9d8a94349d65a45573e4de6ad6495b6e834312b",
  "senderGatewayOwnerId": "CN=GatewayOps, OU=GatewayOps Systems, O=GatewayOps LTD, L=Austin, C=US",
  "receiverGatewayOwnerId": "CN=BridgeSolutions, OU=BridgeSolutions Engineering, O=BridgeSolutions LTD, L=Austin, C=US"
}</t>
      </section>
      <section anchor="conveyance-of-gateway-and-network-capabilities">
        <name>Conveyance of Gateway and Network Capabilities</name>
        <t anchor="satp-stage1-conveyance">This is the set of parameters pertaining to the origin network and the destination network, and the technical capabilities supported by the peer gateways.</t>
        <t>Some network-specific parameters regarding the origin network may be relevant for a receiver gateway to evaluate its ability to process the proposed transfer.
For example, if the duration of the lock-time (networkLockExpirationTime) in the origin network is too short, a receiver gateway at the destination network may decline to proceed.</t>
        <t>The gateway capabilities list is as follows:</t>
        <ul spacing="normal">
          <li>
            <t>gatewayDefaultSignatureAlgorithm REQUIRED: The default digital signature algorithm (algorithm-id) from the IANA "JSON Web Signature and Encryption Algorithms" registry used by a gateway to sign claims.</t>
          </li>
          <li>
            <t>gatewaySupportedSignatureAlgorithms OPTIONAL: The list of other digital signature algorithms (algorithm-id) from the IANA "JSON Web Signature and Encryption Algorithms" registry supported by a gateway to sign claims</t>
          </li>
          <li>
            <t>networkLockType REQUIRED: The default locking mechanism used by a network. The values allowed are "TIME_LOCK", "HASH_LOCK", "HASH_TIME_LOCK". Future updates to this specification may define new values and implementations not supporting a value or not understanding a value for this field must return an appropriate error and cease the negotiation.</t>
          </li>
          <li>
            <t>networkLockExpirationTime REQUIRED: The duration of time (in integer seconds) for a lock to expire in the network.</t>
          </li>
          <li>
            <t>gatewayTlsScheme REQUIRED: Specify the TLS1.3 scheme.</t>
          </li>
        </ul>
        <t>Here is an example representation in JSON format:</t>
        <t><tt>
{
  "gatewayDefaultSignatureAlgorithm": "ES256",
  "gatewaySupportedSignatureAlgorithms": ["ES256", "RSA"],
  "networkLockType": "HASH_TIME_LOCK",
  "networkLockExpirationTime": 120,
  "gatewayTlsScheme": "TLS_AES_128_GCM_SHA256"
}
</tt></t>
      </section>
      <section anchor="transfer-proposal-message">
        <name>Transfer Proposal Message</name>
        <t anchor="satp-stage1-init-transfer-proposal">The purpose of this message is for the sender gateway as the client to initiate an asset transfer session with the receiver gateway as the server.</t>
        <t>The client transmits a proposal message that carries the claim related to the asset to be transferred. This message MUST be signed by the client.</t>
        <t>This message is sent from the client to the Transfer Initialization Endpoint at the server.</t>
        <t>The parameters of this message consist of the following:</t>
        <ul spacing="normal">
          <li>
            <t>version REQUIRED: SATP protocol Version, as a string "major.minor"; see section <xref format="counter" target="satp-protocol-version"/>.</t>
          </li>
          <li>
            <t>messageType REQUIRED: urn:ietf:params:satp:core:msgtype:transfer-proposal-msg.</t>
          </li>
          <li>
            <t>sessionId REQUIRED: A unique identifier chosen by the client to identify the current session.</t>
          </li>
          <li>
            <t>transferContextId REQUIRED: A unique identifier used to identify the current transfer session at the application layer.</t>
          </li>
          <li>
            <t>transferInitClaimFormat REQUIRED: The default format is JSON, with parts being base64 encoded as needed. The default format is denoted as "TRANSFER_INIT_CLAIM_FORMAT_1".</t>
          </li>
          <li>
            <t>transferInitClaim REQUIRED: The set of artifacts and parameters as the basis for the current transfer.</t>
          </li>
          <li>
            <t>gatewayAndNetworkCapabilities REQUIRED: The set of origin gateway and network parameters reported by the client to the server.</t>
          </li>
        </ul>
        <t>Here is an example of the message request body (with the public keys in JWK being replaced with hexadecimal for brevity):</t>
        <t><tt>
{
  "version": "1.0",
  "messageType": "urn:ietf:params:satp:core:msgtype:transfer-proposal-msg",
  "sessionId": "d66a567c-11f2-4729-a0e9-17ce1faf47c1",
  "transferContextId": "89e04e71-bba2-4363-933c-262f42ec07a0",
  "transferInitClaimFormat": "TRANSFER_INIT_CLAIM_FORMAT_1",
  "transferInitClaim": {
      "digitalAssetId": "2c949e3c-5edb-4a2c-9ef4-20de64b9960d",
      "assetProfileId": "38561",
      "networkLockType": "HASH_TIME_LOCK",
      "assetLockExpirationTime": 120,
      "verifiedOriginatorEntityId": "CN=Alice, OU=Example Org Unit, O=Example, L=New York, C=US",
      "verifiedBeneficiaryEntityId": "CN=Bob, OU=Case Org Unit, O=Case, L=San Francisco, C=US",
      "originatorPublicKey": "0304b9f34d3898b27f85b3d88fa069a879abe14db5060dde466dd1e4a31ff75e44",
      "beneficiaryPublicKey": "02a7bc058e1c6f3a79601d046069c9b6d0cb8ea5afc99e6074a5997284756fc9ae",
      "senderGatewaySignaturePublicKey": "02a7bc058e1c6f3a79601d046069c9b6d0cb8ea5afc99e6074a5997284756fc9ae",
      "receiverGatewaySignaturePublicKey": "0243b12ada6515ada3bf99a7da32e84f00383b5765fd7701528e660449ba5ef260",
      "senderGatewayId": "GW1",
      "recipientGatewayId": "GW2",
      "senderGatewayNetworkId": "1",
      "recipientGatewayNetworkId": "43114",
      "senderGatewayDeviceIdentityPublicKey": "0245785e34b4a7b457dd4683a297ea3d78bab35f8b2583df55d9df8c69604d0e73",
      "receiverGatewayDeviceIdentityPublicKey": "03763f0bc48ff154cff45ea533a9d8a94349d65a45573e4de6ad6495b6e834312b",
      "senderGatewayOwnerId": "CN=GatewayOps, OU=GatewayOps Systems, O=GatewayOps LTD, L=Austin, C=US",
      "receiverGatewayOwnerId": "CN=BridgeSolutions, OU=BridgeSolutions Engineering, O=BridgeSolutions LTD, L=Austin, C=US"
  },
  "gatewayAndNetworkCapabilities": {
      "gatewayDefaultSignatureAlgorithm": "ES256",
      "gatewaySupportedSignatureAlgorithms": ["ES256", "RSA"],
      "networkLockType": "HASH_TIME_LOCK",
      "networkLockExpirationTime": 120,
      "gatewayTlsScheme": "TLS_AES_128_GCM_SHA256"
  }
}
</tt></t>
      </section>
      <section anchor="transfer-proposal-receipt-message">
        <name>Transfer Proposal Receipt Message</name>
        <t anchor="satp-stage1-init-receipt">The purpose of this message is for the server to indicate explicit
acceptance of the parameters in the claim part of the transfer proposal message.</t>
        <t>The message MUST be signed by the server.</t>
        <t>The message is sent from the server to the Transfer Proposal Endpoint at the client.</t>
        <t>The parameters of this message consist of the following:</t>
        <ul spacing="normal">
          <li>
            <t>version REQUIRED: SATP protocol Version, as a string "major.minor"; see section <xref format="counter" target="satp-protocol-version"/>.</t>
          </li>
          <li>
            <t>messageType REQUIRED: urn:ietf:params:satp:core:msgtype:proposal-receipt-msg.</t>
          </li>
          <li>
            <t>sessionId REQUIRED: A unique identifier chosen by the client to identify the current session.</t>
          </li>
          <li>
            <t>transferContextId REQUIRED: A unique identifier used to identify the current transfer session at the application layer.</t>
          </li>
          <li>
            <t>hashTransferInitClaim REQUIRED: Hash of the Transfer Initialization Claim received in the Transfer Proposal Message.</t>
          </li>
          <li>
            <t>timestamp REQUIRED: timestamp referring to when the Initialization Request Message was received.</t>
          </li>
        </ul>
        <t>Here is an example of the message request body:</t>
        <t>{
  "version": "1.0",
  "messageType": "urn:ietf:params:satp:core:msgtype:proposal-receipt-msg",
  "sessionId": "d66a567c-11f2-4729-a0e9-17ce1faf47c1",
  "transferContextId": "89e04e71-bba2-4363-933c-262f42ec07a0",
  "hashTransferInitClaim": "154dfaf0406038641e7e59509febf41d9d5d80f367db96198690151f4758ca6e",
  "timestamp": "2024-10-03T12:02+00Z",
}</t>
      </section>
      <section anchor="reject-message">
        <name>Reject Message</name>
        <t anchor="satp-stage1-init-reject">The purpose of this message is for the server to indicate explicit
rejection of the previous message received from the client.
This message can be sent at any time in the session and is taken to mean an immediate termination of the session.</t>
        <t>The server MUST include error details using the Problem Details format defined in <xref target="RFC9457"/>
(see section <xref format="counter" target="satp-protocol-errors-section"/>).</t>
        <t>The message MUST be signed by the server.</t>
      </section>
      <section anchor="transfer-commence-message">
        <name>Transfer Commence Message</name>
        <t anchor="satp-transfer-commence-sec">The purpose of this message is for the client to signal to
the server that the client is ready to start the transfer of the
digital asset. This message must be signed by the client.</t>
        <t>This message is sent by the client as a response to the Transfer Proposal Receipt Message previously
received from the server.</t>
        <t>This message is sent by the client to the Transfer Commence Endpoint at the server.</t>
        <t>The parameters of this message consist of the following:</t>
        <ul spacing="normal">
          <li>
            <t>messageType REQUIRED: MUST be the value urn:ietf:params:satp:core:msgtype:transfer-commence-msg.</t>
          </li>
          <li>
            <t>sessionId REQUIRED: A unique identifier chosen earlier by the client in the Initialization Request Message.</t>
          </li>
          <li>
            <t>transferContextId REQUIRED: A unique identifier used to identify the current transfer session at the application layer.</t>
          </li>
          <li>
            <t>hashTransferInitClaim REQUIRED: Hash of the Transfer Initialization Claim in the Transfer Proposal message.</t>
          </li>
          <li>
            <t>hashPrevMessage REQUIRED.  The cryptographic hash of the last message, in this case the
Transfer Proposal Receipt message. The default hash algorithm is SHA256.</t>
          </li>
        </ul>
        <t>For example, the client makes the following HTTP request using TLS:</t>
        <t>{
    "messageType": "urn:ietf:params:satp:core:msgtype:transfer-commence-msg",
    "sessionId": "d66a567c-11f2-4729-a0e9-17ce1faf47c1",
    "transferContextId": "89e04e71-bba2-4363-933c-262f42ec07a0",
    "hashTransferInitClaim": "154dfaf0406038641e7e59509febf41d9d5d80f367db96198690151f4758ca6e",
    "hashPrevMessage": "0b0aecc2680e0d8a86bece6b54c454fba67068799484f477cdf2f87e6541db66",
}</t>
      </section>
      <section anchor="transfer-commence-sec-example">
        <name>Commence Response Message (ACK-Commence)</name>
        <t anchor="satp-transfer-commence-resp-sec">The purpose of this message is for the server to indicate agreement
to proceed with the asset transfer, based on the artifacts
found in the previous Transfer Proposal Message.</t>
        <t>This message is sent by the server to the Transfer Commence Endpoint at the client.</t>
        <t>The message MUST be signed by the server.</t>
        <t>The parameters of this message consist of the following:</t>
        <ul spacing="normal">
          <li>
            <t>messageType REQUIRED: urn:ietf:params:satp:core:msgtype:ack-commence-msg</t>
          </li>
          <li>
            <t>sessionId REQUIRED: A unique identifier chosen earlier by the client in the Initialization Request Message.</t>
          </li>
          <li>
            <t>transferContextId REQUIRED: A unique identifier used to identify the current transfer session at the application layer.</t>
          </li>
          <li>
            <t>hashPrevMessage REQUIRED. The cryptographic hash of the last message, in this case the Transfer Commence Message. The default hash algorithm is SHA256.</t>
          </li>
        </ul>
        <t>An example of a success response could be as follows:</t>
        <t>{
  "messageType": "urn:ietf:params:satp:core:msgtype:ack-commence-msg",
  "sessionId": "d66a567c-11f2-4729-a0e9-17ce1faf47c1",
  "transferContextId": "89e04e71-bba2-4363-933c-262f42ec07a0",
  "hashPrevMessage": "dd5a61a26fc8f5d72e5ca6052c2a1fca1613115e5582d9417d336375c196db89",
}</t>
      </section>
    </section>
    <section anchor="lock-assertion-stage-stage-2">
      <name>Lock Assertion Stage (Stage 2)</name>
      <t anchor="satp-stage2-section">The messages in this stage pertain to the sender gateway providing
the recipient gateway with a signed assertion that the asset in the origin network
has been locked or disabled and under the control of the sender gateway.</t>
      <t>In the following steps, the sender gateway takes the role of the client
while the recipient gateway takes the role of the server.</t>
      <t>The flow follows a request-response model.
The client makes a request (POST) to the Lock-Assertion Endpoint at the server.</t>
      <section anchor="lock-assertion-message">
        <name>Lock Assertion Message</name>
        <t anchor="satp-lock-assertion-message-sec">The purpose of this message is for the client (sender gateway) to
convey a signed claim to the server (receiver gateway) declaring that the asset in
question has been locked or escrowed by the client in the origin
network (e.g. to prevent double-spending).</t>
        <t>The format of the claim is dependent on the network or system
of the client and is outside the scope of this specification.</t>
        <t>This message is sent from the client to the Lock Assertion Endpoint at the server.</t>
        <t>The server must validate the claim (payload)
in this message prior to the next step.</t>
        <t>The message MUST be signed by the client.</t>
        <t>The parameters of this message consist of the following:</t>
        <ul spacing="normal">
          <li>
            <t>messageType REQUIRED: urn:ietf:params:satp:core:msgtype:lock-assert-msg.</t>
          </li>
          <li>
            <t>sessionId REQUIRED: A unique identifier chosen earlier by the client in the Initialization Request Message.</t>
          </li>
          <li>
            <t>transferContextId REQUIRED: A unique identifier used to identify the current transfer session at the application layer.</t>
          </li>
          <li>
            <t>lockAssertionClaimFormat REQUIRED. The default format is JSON, with parts being base64 encoded as needed. The default format is denoted as "LOCK_ASSERTION_CLAIM_FORMAT_1".</t>
          </li>
          <li>
            <t>lockAssertionClaim REQUIRED: The lock assertion claim or statement by the client.</t>
          </li>
          <li>
            <t>lockAssertionExpiration REQUIRED. The expiration date and time <xref target="DATETIME"/> of the lock or escrow upon the asset on the origin network.</t>
          </li>
          <li>
            <t>hashPrevMessage REQUIRED. The cryptographic hash of the last message. The default hash algorithm is SHA256.</t>
          </li>
        </ul>
        <t>Example:</t>
        <t>{
  "messageType": "urn:ietf:params:satp:core:msgtype:lock-assert-msg",
  "sessionId": "d66a567c-11f2-4729-a0e9-17ce1faf47c1",
  "transferContextId": "89e04e71-bba2-4363-933c-262f42ec07a0",
  "lockAssertionClaimFormat": "LOCK_ASSERTION_CLAIM_FORMAT_1",
  "lockAssertionClaim": {},
  "lockAssetionExpiration": "2024-12-23T23:59:59.999Z",
  "hashPrevMessage": "b2c3e916703c4ee4494f45bcf52414a2c3edfe53643510ff158ff4a406678346",
}</t>
      </section>
      <section anchor="lock-assertion-receipt-message">
        <name>Lock Assertion Receipt Message</name>
        <t anchor="satp-lock-assertion-receipt-section">The purpose of this message is for the server (receiver gateway)
to indicate acceptance of the claim in the lock-assertion message
delivered by the client (sender gateway) in the previous message.</t>
        <t>This message is sent from the server to the Assertion Receipt Endpoint
at the client.</t>
        <t>The message MUST be signed by the server.</t>
        <t>The parameters of this message consist of the following:</t>
        <ul spacing="normal">
          <li>
            <t>messageType REQUIRED: urn:ietf:params:satp:core:msgtype:assertion-receipt-msg.</t>
          </li>
          <li>
            <t>sessionId REQUIRED: A unique identifier chosen earlier by the client in the Initialization Request Message.</t>
          </li>
          <li>
            <t>transferContextId REQUIRED: A unique identifier used to identify the current transfer session at the application layer.</t>
          </li>
          <li>
            <t>hashPrevMessage REQUIRED. The cryptographic hash of the last message. The default hash algorithm is SHA256.</t>
          </li>
        </ul>
        <t>Example:</t>
        <t>{
  "messageType": "urn:ietf:params:satp:core:msgtype:assertion-receipt-msg",
  "sessionId": "d66a567c-11f2-4729-a0e9-17ce1faf47c1",
  "transferContextId": "89e04e71-bba2-4363-933c-262f42ec07a0",
  "hashPrevMessage": "16c983122d7506c78f906c15ca1dcc7142a0fa94552cdea9578fe87419c2c5d0",
}</t>
      </section>
    </section>
    <section anchor="commitment-preparation-and-finalization-stage-3">
      <name>Commitment Preparation and Finalization (Stage 3)</name>
      <t anchor="satp-phase3-sec">This section describes the transfer commitment agreement between the
client (sender gateway) and the server (receiver gateway).</t>
      <t>This stage must be completed within the time specified
in the lockAssertionExpiration value in the lock-assertion message.
This value is the time when the lock or escrow upon the asset will expire on the origin network.</t>
      <t>The completion of this stage is denoted by the signed Commit-Final Acknowledgement Receipt Message
sent from the receiver gateway (server) to the sender gateway (client).
If the lockAssertionExpiration timer at the client expires before the Commit-Final Acknowledgement Receipt Message
is received by the client, the client may terminate the session.</t>
      <t>The flow follows a request-response model.
The client makes a request (POST) to the Transfer Commitment endpoint at the server.</t>
      <t>The client and server may be required to sign certain messages
in order to provide standalone proof (for non-repudiation) independent of the
secure channel between the client and server.
This proof may be required for audit verifications post-event.</t>
      <section anchor="commit-preparation-message-commit-prepare">
        <name>Commit Preparation Message (Commit-Prepare)</name>
        <t anchor="satp-commit-preparation-message-sec">The purpose of this message is for the client to indicate
its readiness to begin the commitment of the transfer.</t>
        <t>This message is sent from the client to the Commit Prepare Endpoint at the server.</t>
        <t>The message MUST be signed by the client.</t>
        <t>The parameters of this message consist of the following:</t>
        <ul spacing="normal">
          <li>
            <t>messageType REQUIRED: It MUST be the value urn:ietf:params:satp:core:msgtype:commit-prepare-msg</t>
          </li>
          <li>
            <t>sessionId REQUIRED: A unique identifier chosen earlier by the client in the Initialization Request Message.</t>
          </li>
          <li>
            <t>transferContextId REQUIRED: A unique identifier used to identify the current transfer session at the application layer.</t>
          </li>
          <li>
            <t>hashPrevMessage REQUIRED. The cryptographic hash of the last message. The default hash algorithm is SHA256.</t>
          </li>
        </ul>
        <t>Example:</t>
        <t>{
  "messageType": "urn:ietf:params:satp:core:msgtype:commit-prepare-msg",
  "sessionId": "d66a567c-11f2-4729-a0e9-17ce1faf47c1",
  "transferContextId": "89e04e71-bba2-4363-933c-262f42ec07a0",
  "hashPrevMessage": "399bdadc07fe0bd57c4dfdd6cc176ceeca50a5e744f774154eccbeee8908fbaa",
}</t>
      </section>
      <section anchor="commit-ready-message-commit-ready">
        <name>Commit Ready Message (Commit-Ready)</name>
        <t anchor="satp-commit-ready-section">The purpose The purpose of this message is for the server to indicate to the client that:
(i) the server has created (minted) an equivalent asset in the destination
network;
(ii) that the newly minted asset has been self-assigned to the server;
and (iii) that the server is ready to proceed to the next step.</t>
        <t>This message is sent from the server to the Commit Ready Endpoint at the client.</t>
        <t>The message MUST be signed by the server.</t>
        <t>The parameters of this message consist of the following:</t>
        <ul spacing="normal">
          <li>
            <t>messageType REQUIRED: It MUST be the value urn:ietf:params:satp:core:msgtype:commit-ready-msg.</t>
          </li>
          <li>
            <t>sessionId REQUIRED: A unique identifier chosen earlier by client in the Initialization Request Message.</t>
          </li>
          <li>
            <t>transferContextId REQUIRED: A unique identifier used to identify the current transfer session at the application layer.</t>
          </li>
          <li>
            <t>hashPrevMessage REQUIRED. The cryptographic hash of the last message. The default hash algorithm is SHA256.</t>
          </li>
          <li>
            <t>mintAssertionFormat REQUIRED. The default format is JSON, with parts being base64 encoded as needed. The default format is denoted as "MINT_ASSERTION_CLAIM_FORMAT_1".</t>
          </li>
          <li>
            <t>mintAssertionClaim REQUIRED: The mint assertion claim or statement by the server.</t>
          </li>
        </ul>
        <t>Example:</t>
        <t>{
  "messageType": "urn:ietf:params:satp:core:msgtype:commit-ready-msg",
  "sessionId": "d66a567c-11f2-4729-a0e9-17ce1faf47c1",
  "transferContextId": "89e04e71-bba2-4363-933c-262f42ec07a0",
  "hashPrevMessage": "8dcc8dc4e6c2c979474b42d24d3747ce4607a92637d1a7b294857ff7288b8e46",
  "mintAssertionClaimFormat": "MINT_ASSERTION_CLAIM_FORMAT_1",
  "mintAssertionClaim": {},
}</t>
      </section>
      <section anchor="commit-final-assertion-message-commit-final">
        <name>Commit Final Assertion Message (Commit-Final)</name>
        <t anchor="satp-commit-final-message-section">The purpose of this message is for the client to indicate to the server
that the client (sender gateway) has completed the extinguishment (burn)
of the asset in the origin network.</t>
        <t>The message MUST contain a standalone claim related
to the extinguishment of the asset by the client.
The standalone claim MUST be signed by the client.</t>
        <t>This message is sent from the client to the Commit Final Assertion Endpoint at the server.</t>
        <t>The message MUST be signed by the client.</t>
        <t>The parameters of this message consist of the following:</t>
        <ul spacing="normal">
          <li>
            <t>messageType REQUIRED: It MUST be the value urn:ietf:params:satp:core:msgtype:commit-final-msg.</t>
          </li>
          <li>
            <t>sessionId REQUIRED: A unique identifier chosen earlier by the client in the Initialization Request Message.</t>
          </li>
          <li>
            <t>transferContextId REQUIRED: A unique identifier used to identify the current transfer session at the application layer.</t>
          </li>
          <li>
            <t>hashPrevMessage REQUIRED. The cryptographic hash of the last message. The default hash algorithm is SHA256.</t>
          </li>
          <li>
            <t>burnAssertionClaimFormat REQUIRED. The default format is JSON, with parts being base64 encoded as needed. The default format is denoted as "BURN_ASSERTION_CLAIM_FORMAT_1".</t>
          </li>
          <li>
            <t>burnAssertionClaim REQUIRED: The burn assertion signed claim or statement by the client.</t>
          </li>
        </ul>
        <t>Example:</t>
        <t>{
  "messageType": "urn:ietf:params:satp:core:msgtype:commit-final-msg",
  "sessionId": "d66a567c-11f2-4729-a0e9-17ce1faf47c1",
  "transferContextId": "89e04e71-bba2-4363-933c-262f42ec07a0",
  "hashPrevMessage": "b92f13007216c58f2b51a8621599c3aef6527b02c8284e90c6a54a181d898e02",
  "burnAssertionClaimFormat": "BURN_ASSERTION_CLAIM_FORMAT_1",
  "burnAssertionClaim": {},
}</t>
      </section>
      <section anchor="commit-final-acknowledgement-receipt-message-ack-final-receipt">
        <name>Commit-Final Acknowledgement Receipt Message (ACK-Final-Receipt)</name>
        <t anchor="satp--final-ack-section">The purpose of this message is to indicate to the client that the server has
completed the assignment of the newly minted asset to
the intended beneficiary at the destination network.</t>
        <t>This message is sent from the server to the Commit Final Receipt Endpoint at the client.</t>
        <t>The message MUST be signed by the server.</t>
        <t>The parameters of this message consist of the following:</t>
        <ul spacing="normal">
          <li>
            <t>messageType REQUIRED: It MUST be the value urn:ietf:params:satp:core:msgtype:ack-commit-final-msg.</t>
          </li>
          <li>
            <t>sessionId REQUIRED: A unique identifier chosen earlier by client in the Initialization Request Message.</t>
          </li>
          <li>
            <t>transferContextId REQUIRED: A unique identifier used to identify the current transfer session at the application layer.</t>
          </li>
          <li>
            <t>hashPrevMessage REQUIRED. The cryptographic hash of the last message. The default hash algorithm is SHA256.</t>
          </li>
          <li>
            <t>assignmentAssertionClaimFormat REQUIRED. The default format is JSON, with parts being base64 encoded as needed. The default format is denoted as "ASSIGNMENT_ASSERTION_CLAIM_FORMAT_1".</t>
          </li>
          <li>
            <t>assignmentAssertionClaim REQUIRED: The claim or statement by the server that the asset has been assigned by the server to the intended beneficiary.</t>
          </li>
        </ul>
        <t>Example:</t>
        <t>{
  "messageType": "urn:ietf:params:satp:core:msgtype:ack-commit-final-msg",
  "sessionId": "d66a567c-11f2-4729-a0e9-17ce1faf47c1",
  "transferContextId": "89e04e71-bba2-4363-933c-262f42ec07a0",
  "hashPrevMessage": "9c8f07c22ccf6888fc0306fee0799325efb87dfd536d90bb47d97392f020e998",
  "assignmentAssertionClaimFormat": "ASSIGNMENT_ASSERTION_CLAIM_FORMAT_1",
  "assignmentAssertionClaim": {},
}</t>
      </section>
      <section anchor="transfer-complete-message">
        <name>Transfer Complete Message</name>
        <t anchor="satp-transfer-complete-message-section">The purpose of this message is for the client to indicate to the server that
the asset transfer session (identified by sessionId)
has been completed and no further messages are to be
expected from the client in regards to this transfer instance.</t>
        <t>The message closes the first message of Stage 2 (Transfer Commence Message).</t>
        <t>This message is sent from the client to the Transfer Complete Endpoint at the server.</t>
        <t>The message MUST be signed by the client.</t>
        <t>The parameters of this message consist of the following:</t>
        <ul spacing="normal">
          <li>
            <t>messageType REQUIRED: It MUST be the value urn:ietf:params:satp:core:msgtype:commit-transfer-complete-msg.</t>
          </li>
          <li>
            <t>sessionId REQUIRED: A unique identifier chosen earlier by the client in the Initialization Request Message.</t>
          </li>
          <li>
            <t>transferContextId REQUIRED: A unique identifier used to identify the current transfer session at the application layer.</t>
          </li>
          <li>
            <t>hashPrevMessage REQUIRED. The cryptographic hash of the last message. The default hash algorithm is SHA256.</t>
          </li>
          <li>
            <t>hashTransferCommence REQUIRED: The hash of the Transfer Commence message at the start of Stage 2.</t>
          </li>
        </ul>
        <t>Example:</t>
        <t>{
  "messageType": "urn:ietf:params:satp:core:msgtype:commit-transfer-complete-msg",
  "sessionId": "d66a567c-11f2-4729-a0e9-17ce1faf47c1",
  "transferContextId": "89e04e71-bba2-4363-933c-262f42ec07a0",
  "hashPrevMessage": "9c8f07c22ccf6888fc0306fee0799325efb87dfd536d90bb47d97392f020e998",
  "hashTransferCommence": "4ba76c69265f4215b4e2d2f24fe56e708512fdb49e27f50d2ac0095928e1531b",
}</t>
      </section>
      <section anchor="error-message">
        <name>Error Message</name>
        <t anchor="satp-error-msg-payloads">The purpose of this message is for either the sender or the receiver gateways to indicate to its peer that an error has occurred within the transfer protocol flow.</t>
        <t>The default action upon receiving an error message is the immediate termination of the session.</t>
        <t>The error message format and parameters are described in section <xref format="counter" target="satp-protocol-errors-section"/>.</t>
      </section>
      <section anchor="session-abort-message">
        <name>Session Abort Message</name>
        <t anchor="satp-session-abort-msg-section">The purpose of this message is to indicate that one of the peer gateways has decided not to proceed with the session. No further messages will be delivered after the abort message.</t>
        <ul spacing="normal">
          <li>
            <t>messageType REQUIRED: It MUST be the value urn:ietf:params:satp:core:msgtype:session-abort-msg.</t>
          </li>
          <li>
            <t>sessionId REQUIRED: This is the current session in which the abort occurs.</t>
          </li>
        </ul>
        <t>The effect of session aborts on the state of the asset is discussed below.</t>
      </section>
      <section anchor="satp-session-resumption">
        <name>SATP Session Resumption</name>
        <t anchor="satp-session-resume-section">Session recovery and resumption is not supported in the current version of the SATP protocol.
These may be addressed in a future version of SATP, or be defined in a separate specification.</t>
        <t>The reader interested in this topic is directed to <xref target="BELC"/> for further discussion.</t>
      </section>
    </section>
    <section anchor="error-messages">
      <name>Error Messages</name>
      <t anchor="satp-alert-error-messages">SATP distinguishes between session termination initiated by the user at the application layer from session termination cased by errors at the SATP protocol layer.</t>
      <t>A gateway can transmit an error message at any point in the SATP protocol flow to its peer gateway.</t>
      <t>The default action to be taken by the transitting gateway is to terminate the session immediately.</t>
      <t>Error messages at the SATP protocol layer is distinct from time-outs due to gateway crashes.</t>
      <section anchor="session-termination-notification">
        <name>Session Termination Notification</name>
        <t anchor="satp-session-termination-notification">Session closure initiated at the application layer is not considered to be an error at the SATP protocol layer.</t>
        <t>The message type used for application-initiated session termination: session-abort-msg.</t>
        <t>The message type used to indicate protocols errors: error-msg.</t>
        <t>A gateway can transmit the session abort message at any point in the SATP protocol flow. No further messages will be sent by the gateway.</t>
        <t>Any data received after the session termination message MUST be ignored.</t>
      </section>
      <section anchor="connection-errors">
        <name>Connection Errors</name>
        <t anchor="satp-errors-connection-section">Errors may occur at the connection layer, independent of the flows at the SATP layer and errors there.</t>
        <t>(a) connectionError: There is an error in the TLS session establishment (TLS error codes should be reported-up to the gateway level)</t>
        <t>(b) badCertificate: The gateway TLS certificate was corrupt, contained signatures, that did not verify correctly, etc.  (Some common TLS level errors: unsupported_certificate, certificate_revoked, certificate_expired, certificate_unknown, unknown_ca).</t>
        <t>Connection errors resulting in the time-out of the session MUST result in the termination of the transfer session.
In the case of a transfer session termination, gateways SHOULD release its local computing resources and release asset-locks in their respective networks.</t>
      </section>
      <section anchor="satp-protocol-errors">
        <name>SATP Protocol Errors</name>
        <t anchor="satp-protocol-errors-section">The errors at the SATP level pertain to protocol flow and the information carried within each message. These are enumerated in <xref target="error-codes-section"/>.</t>
        <t>Many of the errors due to invalid identifiers (e.g., invalid transferContextId, invalid digitalAssetId) may arise within
the execution of the SATP protocol because these identifiers depart from those agreed-upon in Transfer Initialization Claim in the transfer proposal message.
The validity of these identifiers must be verified by the gateways during set-up stage (Stage-0), which is beyond the scope of the current specification.
See section <xref format="counter" target="satp-Stage0-section"/> on the Identity and Asset Verification Stage.</t>
        <t>SATP error messages MUST be encoded as Problem Details objects as defined in <xref target="RFC9457"/>, with content type <tt>application/problem+json</tt>. The <tt>type</tt> field of the Problem Details object MUST be set to a URN of the form <tt>urn:ietf:params:satp:core:error:&lt;code&gt;</tt>, where <tt>&lt;code&gt;</tt> is the error code from this registry. The <tt>status</tt> field MUST match the HTTP status of the response carrying the error and MUST be consistent with the HTTP Status column in the table below.</t>
        <t>The parameters of error messages consist of the following:</t>
        <ul spacing="normal">
          <li>
            <t>messageType REQUIRED: urn:ietf:params:satp:core:msgtype:error-msg</t>
          </li>
          <li>
            <t>type REQUIRED: A URI reference identifying the error type causing the rejection, as defined in <xref target="RFC9457"/>. MUST be a URN of the form
<tt>urn:ietf:params:satp:core:error:&lt;code&gt;</tt> where <tt>&lt;code&gt;</tt> is the error code from the SATP Error Codes Registry (see section <xref format="counter" target="satp-protocol-errors-section"/>).</t>
          </li>
          <li>
            <t>status REQUIRED: The HTTP status code for this error as an integer, as defined in <xref target="RFC9457"/>. MUST match the HTTP response status and be consistent with the HTTP Status column of the protocol error codes (see section <xref format="counter" target="error-codes-section"/>).</t>
          </li>
          <li>
            <t>title REQUIRED: A short, human-readable summary of the error type, as defined in <xref target="RFC9457"/>. SHOULD correspond to the Description
column of the protocol error codes (see section <xref format="counter" target="error-codes-section"/>).</t>
          </li>
          <li>
            <t>detail OPTIONAL: A human-readable explanation specific to this occurrence of the error, as defined in <xref target="RFC9457"/>.</t>
          </li>
          <li>
            <t>version REQUIRED: SATP protocol Version, as a string "major.minor"; see section <xref format="counter" target="satp-protocol-version"/>.</t>
          </li>
        </ul>
        <t>This should assist in diagnosing problems when different versions of the standard are used.</t>
        <ul spacing="normal">
          <li>
            <t>sessionId REQUIRED: A unique identifier chosen by the client to identify the current session.</t>
          </li>
          <li>
            <t>transferContextId REQUIRED: A unique identifier used to identify the current transfer session at the application layer. Note that the transferContextId is always included, whereas the instance defined in <xref target="RFC9457"/> is optional, but if supplied, must also contain the transferContextId. The transferContextId is used in all messages, whereas instance is specific to errror messages.</t>
          </li>
          <li>
            <t>instance OPTIONAL: A URI reference identifying the specific occurrence of the error, as defined in <xref target="RFC9457"/>. If supplied, it MUST contain the transferContextId.</t>
          </li>
          <li>
            <t>prevMsgType OPTIONAL: The message type of the previous SATP message that triggered the error. This is a SATP-specific extension field (see <xref target="RFC9457"/>).</t>
          </li>
          <li>
            <t>hashPrevMessage REQUIRED: The cryptographic hash of the last message that caused the rejection to occur. The default hash algorithm is SHA256.</t>
          </li>
          <li>
            <t>timestamp REQUIRED: timestamp of this message.</t>
          </li>
        </ul>
        <t>Here is an example of the error message body:</t>
        <t>{
  "messageType": "urn:ietf:params:satp:core:msgtype:error-msg",
  "type": "urn:ietf:params:satp:core:error:err_1.1.11",
  "status": 422,
  "title": "invalid digitalAssetId",
  "version": "1.0",
  "sessionId": "d66a567c-11f2-4729-a0e9-17ce1faf47c1",
  "transferContextId": "89e04e71-bba2-4363-933c-262f42ec07a0",
  "instance": "89e04e71-bba2-4363-933c-262f42ec07a0",
  "prevMsgType": "urn:ietf:params:satp:core:msgtype:transfer-proposal-msg"
  "hashPrevMessage": "154dfaf0406038641e7e59509febf41d9d5d80f367db96198690151f4758ca6e",
  "timestamp": "2024-10-03T12:02+00Z",
}</t>
      </section>
      <section anchor="protocol-errors-codes">
        <name>Protocol Errors Codes</name>
        <t anchor="error-codes-section">This registry defines the error codes used in SATP protocol messages.</t>
        <t>Many of the errors due to invalid identifiers (e.g., invalid transferContextId, invalid digitalAssetId) may arise within
the execution of the SATP protocol because these identifiers depart from those agreed-upon in Transfer Initialization Claim in the transfer proposal message.
The validity of these identifiers must be verified by the gateways during set-up stage (Stage-0), which is beyond the scope of the current specification.
See section <xref format="counter" target="satp-Stage0-section"/> on the Identity and Asset Verification Stage.</t>
        <t>In the following table, each entry consists of:</t>
        <ul spacing="normal">
          <li>
            <t><strong>Code</strong>: The enumeration string (e.g., err_3.3.1)</t>
          </li>
          <li>
            <t><strong>Category</strong>: The protocol stage or message type (e.g., Commit Ready errors)</t>
          </li>
          <li>
            <t><strong>Type</strong>: The error type (e.g., badly formed message)</t>
          </li>
          <li>
            <t><strong>Description</strong>: A brief description (e.g., mismatch transferContextId)</t>
          </li>
          <li>
            <t><strong>HTTP Status</strong>: The HTTP status code <xref target="RFC9110"/> associated with this error</t>
          </li>
        </ul>
        <table>
          <thead>
            <tr>
              <th align="left">Code</th>
              <th align="left">Category</th>
              <th align="left">Type</th>
              <th align="left">Description</th>
              <th align="left">HTTP Status</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">err_0.1.1</td>
              <td align="left">General errors</td>
              <td align="left">badly formed message</td>
              <td align="left">invalid message type</td>
              <td align="left">400</td>
            </tr>
            <tr>
              <td align="left">err_0.1.2</td>
              <td align="left">General errors</td>
              <td align="left">authorization error</td>
              <td align="left">insufficient permissions</td>
              <td align="left">403</td>
            </tr>
            <tr>
              <td align="left">err_0.1.3</td>
              <td align="left">General errors</td>
              <td align="left">badly formed message</td>
              <td align="left">bad signature</td>
              <td align="left">422</td>
            </tr>
            <tr>
              <td align="left">err_1.1.1</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed message</td>
              <td align="left">invalid transferContextId</td>
              <td align="left">422</td>
            </tr>
            <tr>
              <td align="left">err_1.1.2</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed message</td>
              <td align="left">invalid sessionId</td>
              <td align="left">422</td>
            </tr>
            <tr>
              <td align="left">err_1.1.3</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed message</td>
              <td align="left">incorrect transferInitClaimFormat</td>
              <td align="left">422</td>
            </tr>
            <tr>
              <td align="left">err_1.1.11</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed claim</td>
              <td align="left">invalid digitalAssetId</td>
              <td align="left">422</td>
            </tr>
            <tr>
              <td align="left">err_1.1.12</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed claim</td>
              <td align="left">invalid assetProfileId</td>
              <td align="left">422</td>
            </tr>
            <tr>
              <td align="left">err_1.1.13</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed claim</td>
              <td align="left">invalid verifiedOriginatorEntityId</td>
              <td align="left">422</td>
            </tr>
            <tr>
              <td align="left">err_1.1.14</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed claim</td>
              <td align="left">invalid verifiedBeneficiaryEntityId</td>
              <td align="left">422</td>
            </tr>
            <tr>
              <td align="left">err_1.1.15</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed claim</td>
              <td align="left">invalid originatorPublicKey</td>
              <td align="left">422</td>
            </tr>
            <tr>
              <td align="left">err_1.1.16</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed claim</td>
              <td align="left">invalid beneficiaryPublicKey</td>
              <td align="left">422</td>
            </tr>
            <tr>
              <td align="left">err_1.1.17</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed claim</td>
              <td align="left">invalid senderGatewaySignaturePublicKey</td>
              <td align="left">422</td>
            </tr>
            <tr>
              <td align="left">err_1.1.18</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed claim</td>
              <td align="left">invalid receiverGatewaySignaturePublicKey</td>
              <td align="left">422</td>
            </tr>
            <tr>
              <td align="left">err_1.1.19</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed claim</td>
              <td align="left">invalid senderGatewayId</td>
              <td align="left">422</td>
            </tr>
            <tr>
              <td align="left">err_1.1.20</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed claim</td>
              <td align="left">invalid recipientGatewayId</td>
              <td align="left">422</td>
            </tr>
            <tr>
              <td align="left">err_1.1.31</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed parameter</td>
              <td align="left">unsupported gatewayDefaultSignatureAlgorithm</td>
              <td align="left">415</td>
            </tr>
            <tr>
              <td align="left">err_1.1.32</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed parameter</td>
              <td align="left">unsupported networkLockType</td>
              <td align="left">415</td>
            </tr>
            <tr>
              <td align="left">err_1.1.33</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed parameter</td>
              <td align="left">unsupported networkLockExpirationTime</td>
              <td align="left">415</td>
            </tr>
            <tr>
              <td align="left">err_1.1.34</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed parameter</td>
              <td align="left">unsupported gatewayTlsScheme</td>
              <td align="left">415</td>
            </tr>
            <tr>
              <td align="left">err_1.1.35</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed parameter</td>
              <td align="left">unsupported gatewayLoggingProfile</td>
              <td align="left">415</td>
            </tr>
            <tr>
              <td align="left">err_1.1.36</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed parameter</td>
              <td align="left">unsupported gatewayAccessControlProfile</td>
              <td align="left">415</td>
            </tr>
            <tr>
              <td align="left">err_1.2.1</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch transferContextId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_1.2.2</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch sessionId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_1.2.3</td>
              <td align="left">Transfer Proposal/Receipt errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch hashTransferInitClaim</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_1.3.1</td>
              <td align="left">Transfer Commence errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch transferContextId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_1.3.2</td>
              <td align="left">Transfer Commence errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch sessionId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_1.3.3</td>
              <td align="left">Transfer Commence errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch hashTransferInitClaim</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_1.3.4</td>
              <td align="left">Transfer Commence errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch hashPrevMessage</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_1.4.1</td>
              <td align="left">ACK Commence errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch transferContextId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_1.4.2</td>
              <td align="left">ACK Commence errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch sessionId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_1.4.3</td>
              <td align="left">ACK Commence errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch hashPrevMessage</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_2.2.1</td>
              <td align="left">Lock Assertion errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch transferContextId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_2.2.2</td>
              <td align="left">Lock Assertion errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch sessionId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_2.2.3</td>
              <td align="left">Lock Assertion errors</td>
              <td align="left">badly formed message</td>
              <td align="left">unsupported lockAssertionClaimFormat</td>
              <td align="left">415</td>
            </tr>
            <tr>
              <td align="left">err_2.2.4</td>
              <td align="left">Lock Assertion errors</td>
              <td align="left">badly formed message</td>
              <td align="left">unsupported lockAssertionExpiration</td>
              <td align="left">415</td>
            </tr>
            <tr>
              <td align="left">err_2.2.5</td>
              <td align="left">Lock Assertion errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch hashPrevMessage</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_2.2.7</td>
              <td align="left">Lock Assertion errors</td>
              <td align="left">semantic error</td>
              <td align="left">asset not found</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_2.2.8</td>
              <td align="left">Lock Assertion errors</td>
              <td align="left">semantic error</td>
              <td align="left">asset already locked</td>
              <td align="left">409</td>
            </tr>
            <tr>
              <td align="left">err_2.2.9</td>
              <td align="left">Lock Assertion errors</td>
              <td align="left">semantic error</td>
              <td align="left">asset lock expired</td>
              <td align="left">410</td>
            </tr>
            <tr>
              <td align="left">err_2.4.1</td>
              <td align="left">Lock Assertion Receipt errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch transferContextId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_2.4.2</td>
              <td align="left">Lock Assertion Receipt errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch sessionId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_2.4.3</td>
              <td align="left">Lock Assertion Receipt errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch hashPrevMessage</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_3.1.1</td>
              <td align="left">Commit Preparation errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch transferContextId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_3.1.2</td>
              <td align="left">Commit Preparation errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch sessionId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_3.1.3</td>
              <td align="left">Commit Preparation errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch hashPrevMessage</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_3.3.1</td>
              <td align="left">Commit Ready errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch transferContextId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_3.3.2</td>
              <td align="left">Commit Ready errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch sessionId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_3.3.3</td>
              <td align="left">Commit Ready errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch hashPrevMessage</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_3.3.4</td>
              <td align="left">Commit Ready errors</td>
              <td align="left">badly formed message</td>
              <td align="left">unsupported mintAssertionFormat</td>
              <td align="left">415</td>
            </tr>
            <tr>
              <td align="left">err_3.5.1</td>
              <td align="left">Commit Final Assertion errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch transferContextId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_3.5.2</td>
              <td align="left">Commit Final Assertion errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch sessionId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_3.5.3</td>
              <td align="left">Commit Final Assertion errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch hashPrevMessage</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_3.5.4</td>
              <td align="left">Commit Final Assertion errors</td>
              <td align="left">badly formed message</td>
              <td align="left">unsupported burnAssertionClaimFormat</td>
              <td align="left">415</td>
            </tr>
            <tr>
              <td align="left">err_3.7.1</td>
              <td align="left">Commit Final Ack Receipt errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch transferContextId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_3.7.2</td>
              <td align="left">Commit Final Ack Receipt errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch sessionId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_3.7.3</td>
              <td align="left">Commit Final Ack Receipt errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch hashPrevMessage</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_3.7.4</td>
              <td align="left">Commit Final Ack Receipt errors</td>
              <td align="left">badly formed message</td>
              <td align="left">unsupported assignmentAssertionClaimFormat</td>
              <td align="left">415</td>
            </tr>
            <tr>
              <td align="left">err_3.9.1</td>
              <td align="left">Transfer Complete errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch transferContextId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_3.9.2</td>
              <td align="left">Transfer Complete errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch sessionId</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_3.9.3</td>
              <td align="left">Transfer Complete errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch hashPrevMessage</td>
              <td align="left">404</td>
            </tr>
            <tr>
              <td align="left">err_3.9.4</td>
              <td align="left">Transfer Complete errors</td>
              <td align="left">badly formed message</td>
              <td align="left">mismatch hashTransferCommence</td>
              <td align="left">404</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="effectiveness-of-session-aborts">
        <name>Effectiveness of Session Aborts</name>
        <t anchor="satp-abort-effectiveness-section">The effectiveness of a session-abort message on the state of the asset depends on where the abort message occurs in the SATP protocol flow in Figure 2.</t>
        <t>Note that a session-abort message maybe lost and never be received by the peer gateway. Gateways can crash prior to receiving an abort message.</t>
        <t>If gateway G2 transmits a session-abort message after gateway G1 performs a lock (msgtype:lock-assert-msg) on the asset in network NW1, the gateway G1 can always unlock the asset and restore its state.</t>
        <t>If either gateway G1 or gateway G2 transmits a session-abort message after gateway G1 sends a lock-assert message (msgtype:lock-assert-msg) but before G2 sends the commit ready message (msgtype:commit-ready-msg), the gateway G1 can always unlock the asset and restore its state in network NW1.</t>
        <t>Similarly, if either gateway G1 or gateway G2 transmits a session-abort message immediately after gateway G1 sends a commit-prepare message (msgtype:commit-prepare-msg) but before G2 sends the commit ready message (msgtype:commit-ready-msg), the gateway G2 can always reverse the changes made by G2 to NW2 (i.e. reverse the assignment-to-self of the minted asset).</t>
        <t>However, an abort message (occurring in either direction) after gateway G1 transmits the commit final message (msgtype:commit-final-msg) will not be effective. This is because G1 has already burned the asset in NW1 and G2 has already minted the asset in NW2 and has legally agreed to assign the asset to the appropriate beneficiary in NW2.</t>
        <t>In general, the termination of sessions or aborts occurring before the sender gateway G1 disables (burns) the asset in NW1 (in flow 3.4 in Figure 2) will incur a minimal cost in terms of computing resources or fees on the part of both gateways G1 and G2.</t>
      </section>
    </section>
    <section anchor="security-consideration">
      <name>Security Consideration</name>
      <t anchor="satp-Security-Consideration-section">Gateways may be of interest to attackers because they enable the transferal of digital assets across networks and therefore are an important function in the digital economy.</t>
      <ul spacing="normal">
        <li>
          <t>Disruptions in transfers and denial of service: Disruptions to a transfer session may cause not only resource waste (e.g. CPU usage), but in some cases may result in financial loss on the part of the gateway operator (e.g. fees charged by network). Denial-of-service attacks by third parties to a run of the protocol may result in the termination of the current run (e.g. time-outs at the SATP layer), and for new attempts to be conducted.</t>
        </li>
        <li>
          <t>Dishonest gateways: The SATP protocol requires gateways to sign messages related to the transfer layer, not only to provide message source authentication and integrity but also to maintain honesty on the part of the gateways. Gateway-operators may take-on legal and financial liabilities in certain jurisdictions by digitally signing messages. Dishonest gateways may intentionally delay the delivery of certain messages or intentionally fail (abort) the protocol run at certain crucial points <xref target="ARCH"/>.  Two such crucial points in the message flows are the following: (i) the commit-final-msg, where the sender G1 asserts it has extinguished (burned) the asset in the origin network, and (ii) the ack-prepare-msg where the receiver gateway G2 asserts it is ready to proceed with the final commitment. If gateway G1 intentionally drops the commit-final-msg (commit-final) such that gateway G2 times-out, then G2 may suffer financial loss due to roll-back costs in network NW2. Similarly, if G2 intentionally drops the ack-prepare-msg to signal that it is ready to proceed with the commitment (commit-ready), then gateway G1 may time-out and terminate the protocol run, causing resource waste at G1. Operators of gateways should utlize relevant tools to detect possible dishonest behavior of certain gateways, and select to have their gateways peer with other reliable gateways.</t>
        </li>
        <li>
          <t>Protection of gateway keys: It is crucial to protect the cryptographic keys utilized by gateways. This includes keys for secure session establishment (TLS1.3) and keys utilized for signing SATP messages. Loss of gateway keys may incur financial loss on the part of the gateway-operator. Implementation of gateways should consider utilizing tamper-resistant hardware to store and manage the relevant keys for gateways operational functions.</t>
        </li>
        <li>
          <t>Gateway identification: Mechanisms must be utilized to provide unique identifiers to gateway implementations to ensure global uniqueness and reachability. Existing identification mechanisms such a X509 certificates <xref target="RFC5280"/> and Verifiable Credentials <xref target="W3CVC"/> may be applied for gateway identification.</t>
        </li>
        <li>
          <t>Identification of networks: There needs to be mechanism for gateways to declare or disclose the asset networks it current serves. Combined with strong gateway identification, this allows remote gateways to quickly locate suitable gateways to peer with for the purposes of asset transfers.</t>
        </li>
      </ul>
    </section>
    <section anchor="iana-consideration">
      <name>IANA Consideration</name>
      <t anchor="satp-iana-consideration">The following request is being made to IANA.</t>
      <section anchor="urn-registration">
        <name>URN Registration</name>
        <t>URN:   Request to be assigned by IANA.</t>
        <t>Common Name:    urn:ietf:params:satp</t>
        <t>Registrant Contact: IESG</t>
        <t>Description: The secure asset transfer protocol (SATP) requires message types, error codes, and parameters to be defined within a unique
namespace to prevent collision.</t>
        <t>This specification will use the sub namespace urn:ietf:params:satp:core.</t>
        <t>Messages types (section <xref format="counter" target="satp-message-types"/>) will use the namespace urn:ietf:params:satp:core:msgtype, whereas error codes (section <xref format="counter" target="error-codes-section"/>)
will use the namespace urn:ietf:params:satp:core:error.</t>
      </section>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t anchor="satp-core-contributors">The authors would like to thank the following people for their input and support:</t>
      <t>Andre Augusto,
Denis Avrilionis,
Rafael Belchior,
Alexandru Chiriac,
Anthony Culligan,
Claire Facer,
Martin Gfeller,
Wes Hardaker,
David Millman,
Krishnasuri Narayanam,
Anais Ofranc,
Luke Riley,
John Robotham,
Orie Steele,
Yaron Scheffer,
Peter Somogyvari,
Weijia Zhang.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC7519">
          <front>
            <title>JSON Web Token (JWT)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7519"/>
          <seriesInfo name="DOI" value="10.17487/RFC7519"/>
        </reference>
        <reference anchor="RFC8259">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </reference>
        <reference anchor="RFC7515">
          <front>
            <title>JSON Web Signature (JWS)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Signature (JWS) represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures. Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and an IANA registry defined by that specification. Related encryption capabilities are described in the separate JSON Web Encryption (JWE) specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7515"/>
          <seriesInfo name="DOI" value="10.17487/RFC7515"/>
        </reference>
        <reference anchor="RFC7517">
          <front>
            <title>JSON Web Key (JWK)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. This specification also defines a JWK Set JSON data structure that represents a set of JWKs. Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and IANA registries established by that specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7517"/>
          <seriesInfo name="DOI" value="10.17487/RFC7517"/>
        </reference>
        <reference anchor="RFC6749">
          <front>
            <title>The OAuth 2.0 Authorization Framework</title>
            <author fullname="D. Hardt" initials="D." role="editor" surname="Hardt"/>
            <date month="October" year="2012"/>
            <abstract>
              <t>The OAuth 2.0 authorization framework enables a third-party application to obtain limited access to an HTTP service, either on behalf of a resource owner by orchestrating an approval interaction between the resource owner and the HTTP service, or by allowing the third-party application to obtain access on its own behalf. This specification replaces and obsoletes the OAuth 1.0 protocol described in RFC 5849. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6749"/>
          <seriesInfo name="DOI" value="10.17487/RFC6749"/>
        </reference>
        <reference anchor="RFC7518">
          <front>
            <title>JSON Web Algorithms (JWA)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>This specification registers cryptographic algorithms and identifiers to be used with the JSON Web Signature (JWS), JSON Web Encryption (JWE), and JSON Web Key (JWK) specifications. It defines several IANA registries for these identifiers.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7518"/>
          <seriesInfo name="DOI" value="10.17487/RFC7518"/>
        </reference>
        <reference anchor="REQ-LEVEL">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC4648">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <date month="October" year="2006"/>
            <abstract>
              <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes. It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4648"/>
          <seriesInfo name="DOI" value="10.17487/RFC4648"/>
        </reference>
        <reference anchor="DATETIME">
          <front>
            <title>Date and Time on the Internet: Timestamps</title>
            <author fullname="G. Klyne" initials="G." surname="Klyne"/>
            <author fullname="C. Newman" initials="C." surname="Newman"/>
            <date month="July" year="2002"/>
            <abstract>
              <t>This document defines a date and time format for use in Internet protocols that is a profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3339"/>
          <seriesInfo name="DOI" value="10.17487/RFC3339"/>
        </reference>
        <reference anchor="RFC9110">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="RFC5280">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="D. Cooper" initials="D." surname="Cooper"/>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="W. Polk" initials="W." surname="Polk"/>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet. An overview of this approach and model is provided as an introduction. The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms. Standard certificate extensions are described and two Internet-specific extensions are defined. A set of required certificate extensions is specified. The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions. An algorithm for X.509 certification path validation is described. An ASN.1 module and examples are provided in the appendices. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
        <reference anchor="RFC9457">
          <front>
            <title>Problem Details for HTTP APIs</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="E. Wilde" initials="E." surname="Wilde"/>
            <author fullname="S. Dalal" initials="S." surname="Dalal"/>
            <date month="July" year="2023"/>
            <abstract>
              <t>This document defines a "problem detail" to carry machine-readable details of errors in HTTP response content to avoid the need to define new error response formats for HTTP APIs.</t>
              <t>This document obsoletes RFC 7807.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9457"/>
          <seriesInfo name="DOI" value="10.17487/RFC9457"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="NIST" target="https://doi.org/10.6028/NIST.IR.8202">
          <front>
            <title>NIST Blockchain Technology Overview (NISTR-8202)</title>
            <author initials="D." surname="Yaga">
              <organization/>
            </author>
            <author initials="P." surname="Mell">
              <organization/>
            </author>
            <author initials="N." surname="Roby">
              <organization/>
            </author>
            <author initials="K." surname="Scarfone">
              <organization/>
            </author>
            <date year="2018" month="October"/>
          </front>
        </reference>
        <reference anchor="ETH" target="https://ethereum.org">
          <front>
            <title>Ethereum A next-generation smart contract and decentralized application platform</title>
            <author initials="V." surname="Buterin">
              <organization/>
            </author>
            <date year="2018"/>
          </front>
        </reference>
        <reference anchor="BTC" target="https://bitcoin.org/bitcoin.pdf">
          <front>
            <title>Bitcoin A Peer-to-Peer Electronic Cash System</title>
            <author initials="S." surname="Nakamoto">
              <organization/>
            </author>
            <date year="2008"/>
          </front>
        </reference>
        <reference anchor="XRP" target="https://ripple.com/files/ripple-consensus-whitepaper.pdf">
          <front>
            <title>The Ripple Protocol Consensus Algorithm</title>
            <author initials="D." surname="Schwartz">
              <organization/>
            </author>
            <author initials="N." surname="Youngs">
              <organization/>
            </author>
            <author initials="A." surname="Britto">
              <organization/>
            </author>
            <date year="2014"/>
          </front>
        </reference>
        <reference anchor="ECDSA" target="https://doi.org/10.6028/NIST.FIPS.186-5">
          <front>
            <title>Digital Signature Standard (FIPS 186-5)</title>
            <author>
              <organization/>
            </author>
            <date year="2023" month="February"/>
          </front>
        </reference>
        <reference anchor="MICA" target="https://www.esma.europa.eu/esmas-activities/digital-finance-and-innovation/markets-crypto-assets-regulation-mica">
          <front>
            <title>EU Directive on Markets in Crypto-Assets Regulation (MiCA)</title>
            <author initials="" surname="European Commission">
              <organization/>
            </author>
            <date year="2023" month="June"/>
          </front>
        </reference>
        <reference anchor="BELC" target="https://doi.org/10.1016/j.future.2021.11.004">
          <front>
            <title>Hermes a Fault-tolerant middleware for blockchain interoperability</title>
            <author initials="R." surname="Belchior">
              <organization/>
            </author>
            <author initials="A." surname="Vasconcelos">
              <organization/>
            </author>
            <author initials="M." surname="Correia">
              <organization/>
            </author>
            <author initials="T." surname="Hardjono">
              <organization/>
            </author>
            <date year="2024" month="April"/>
          </front>
        </reference>
        <reference anchor="W3CVC" target="https://www.w3.org/TR/vc-overview/">
          <front>
            <title>Verifiable Credentials Overview</title>
            <author initials="" surname="W3C">
              <organization/>
            </author>
            <date year="2025" month="September"/>
          </front>
        </reference>
        <reference anchor="ARCH" target="https://datatracker.ietf.org/doc/draft-ietf-satp-architecture/">
          <front>
            <title>Secure Asset Transfer (SAT) Interoperability Architecture</title>
            <author initials="T." surname="Hardjono">
              <organization/>
            </author>
            <author initials="M." surname="Hargreaves">
              <organization/>
            </author>
            <author initials="N." surname="Smith">
              <organization/>
            </author>
            <author initials="V." surname="Ramakrishna">
              <organization/>
            </author>
            <date year="2024" month="June"/>
          </front>
        </reference>
        <reference anchor="RFC9334">
          <front>
            <title>Remote ATtestation procedureS (RATS) Architecture</title>
            <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
            <author fullname="D. Thaler" initials="D." surname="Thaler"/>
            <author fullname="M. Richardson" initials="M." surname="Richardson"/>
            <author fullname="N. Smith" initials="N." surname="Smith"/>
            <author fullname="W. Pan" initials="W." surname="Pan"/>
            <date month="January" year="2023"/>
            <abstract>
              <t>In network protocol exchanges, it is often useful for one end of a communication to know whether the other end is in an intended operating state. This document provides an architectural overview of the entities involved that make such tests possible through the process of generating, conveying, and evaluating evidentiary Claims. It provides a model that is neutral toward processor architectures, the content of Claims, and protocols.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9334"/>
          <seriesInfo name="DOI" value="10.17487/RFC9334"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
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
Qj0Dw7yOd799jV49frEFoO9t1wbqhsByvkyZPPaAcpPkfa8DtDBsAitBh4x4
By3PHUeobAUGF9moDLaQY7jXxpy5No/H+Q4WT3q7oPjTW3I21FCtiWDx9rRp
RSmmUHwiLPi1+3bN3U2wR0RqE3QqsU3QpZklg4JniMvbv42Smi3WpSySWQmv
CS7jmCMaCIvr3SLSMb026L3/lVp0ZMHHRzDNUwh2p0VUHWGbHdzbF6Y5He5u
hELNqW+zntfRXeNlncdbVmHwtLCMFHYnnBEbJJQznZo6+apiDnTM6LRCcx70
c7rI2Jtjvgrqh7YnhqvQ7HQz5+dXxydNqQ1q2o4VM+jKfFC5IyVPFzim3HC3
NLwhprVf7PShUWUA0FWSvAnlhReVyAp2W4EtERNmCXcyyquyyTAuzzkK3ks/
vXQph1IyCoqm5hIbfqtjQpXGhR1phyYYs5FvFchbSSpOihhntZLynBl2xPZk
lvnBB5PwQM5Rnrdtw6ZDW8sbrRzllVz74n8t2VKmDN2obCYKbswEqRp03wW0
Pcf2D2xet0qYKhshtwWQK2CxjAcWqSYI751xsfDypjy1FYbkIn4bBzYpVSZ9
VyIFU9q9PKX9VKLQOv0AuTG5ww3yCmpUvU+6qfUZJLw8zSsXEJZQwEW2Mfmn
bTipZMC5mgMjYyNRf+M6q1SnJPVZAkip5DYTKzeOGKMuClokKOCvucJbu+D2
qSmb/siORsCY5aSTDUI3T8vVmWxTR56iVZhUp4J7w/1RInw7M7a0kiWnWmtK
+Rh2ch+ZjSbfykq+s7bF9CNibGllSUeAKtO1UtsM8bViItwVAE5uTAkPDiep
Mhgf4uAjcNqcRKjymY2iPFVEv09pJHvldEbaleM1EQwiO1/bnowCMBS8Nya7
ELkROeysmF7un4NTuoSXMB56qtiLkxGQmC1ZoTNV5HN+cgNcdOxeG8+CFjem
lS/bb0ZFF2uGrUbqzsAynbrPaJFmCohcD730m4Pvc8tImLll/HBhlSumotUq
nqPxs4+Mp2msZiksAY4vZb5S/6V+gkOUWm4nakHhhC+yTK02GfcpkSY5l1an
J+NL102jykGFOncWuzW9BebB5csTjSMvYUfk2daiHlLH/+6DgRUlQ1zZaKTU
quSCOPr+wqqioYxUFYK+8c4xvrjvk2TeOX5cf46mYx5d0NDbzzCeo6SioReH
98imcFrriGcKGzSYFLWfwKBHj3i0UtIMKl8ETY7kevzTJmK+i53hNRPM6K2K
7CdDiFhRR8/wqVI4DOnzoF7H1CwAxXqKvM/WHkwyIGdws0MBX1IoG+E0wITI
HrBpmqjjhO+qpJYjlg9apK7iNKPHMK+yvO869IeLRh8LdchBuo0TP4lgbspB
MqohnVtDoQDTftT0sA/m+1dvj75uwUf4/PLw7GX+WX9hnkI+gjqVsnz6pNvz
+aEJC34Flm5AT7pb8/dPz49+yFvk+YT0Nr1KRT1qKcEm0t4waIC2ay5LRc9e
07KpyVbeyvr74/OXP3AzGZ/kefuVAxI7f6gjl5de+5vUepcuFOBey9//9fSd
DIODoLlkYDSkrNtjA0Qvz18d6WROQA0c5LyiP+9qU3e4uSCTN6bNybTUzYEI
dyuFT+KeqXW8SiCcWDetOVe/ODDH2cCOXu1GKLjfRrkBxs6WYFZvwFLkww1r
bPwkwxI4alxqhTg45YIzCnLnSEEzZSs858+cF0/kx8Y1T5nW+SZbDR5UBzqJ
m3GzMEcJcouvTPjDTgyqQi7vPOz7lkw/XpXW4Jy4u6NfMcZN6UND8OYb+yj3
fLgtIArKsL3BEpugbPA3Vk45TEkdNtAq1RnQqeSG68xQS9G1En3bnOcqLhBc
aCkszGYUSQir2Mx2z1lBhVVN2lB92aMpauSQiz0uHsJojTH4LfyxLAyUejrv
zSSaoaOknNvo7nuhkNRxIjHOzsgRVXYXIZbol0+mX0te2Ajq4cZ464qGV0Vd
p3h7uG9eFVXnBaA4J8oPC0QBhFXvreRvc4M3qwTyzH5KK+gWR89fevcWnpDw
tJah2ttCOXuwiDdvzz2rRRltsTtmwxnzxbEesgUUEvgaTGOqs5erWv/K2zui
70tq2kG9A/lHPRxRZ/awl/MPFmYqsGEvTLvSDAAm8z4zhriFb84hQPche4WP
pK7y2CYni0iyZdo+zjV7faRgAHSoGZ+NNp6kjymsE90RJs3bhOtQHFKMzXZy
MmsitwV1y0tNPaV0q2O/JgU4QwDaOtehyrCFpM3vicE8uaK+6YE+k2rD3dF0
PF173dFRuK7wDOsNunMu1GuNfswDXYNtPLeKUewqg/Sirb+XdbyEydJLnzXQ
/Px7uksj0WuuTssZyw+MpJ6ibJORcSSnAIU2Pr+5A9ZgKm5Q0ym0L0hNtaKp
w7N6Gbi+J0TSMr6Qpm1hhNZKyM1fSz0OdOuMVh6530h1PCb3McHCRsTSME/3
B8AwELNJ6olLlaS6n2/eRkDcdxUqR4X3jlbD9eKykHJ3ISdVqJgTsSOyfbjA
zD/XMqCUJx25Ju3fGS1vy8t57FLBXsl5X/RYbunqXr/U8YCtgYgcHiyGA+zC
7OZqmyxL6aAU2w2GLX9jMUOMuoE4GTKmVwDBpvNfZDbpNiEqvij49lwtOvb2
w6ZztO4bvSvzHcDRKhi6G4uYoNbPGAFySiy9F4DaKNM5eLqsSIexcpTqypEs
ttF/L/S6alCO7Mpsujff9Xcgt2+Qyyn2MB61woY/mg6SGTtcHoSmCOn9WJy3
pv4oNvkPTMMu6lBvCBaWiRwG5pTzMOfCq9CjbuDm2PUrU5A0ja78D8q4V10S
qyYv7ObCyeQ5FfDO8zwlfQIApJm4zoDx0SxPU4VtbGhkoq+0i3amuGnm7Ic6
xiLd5It95BfbhBT6vJGGYTvUUMjtOna42fQ8Wqf596JX2cOIei/JP4SVX+7L
QJ3Oxw7+4/+Vf86Hmq/Na6aH0kfrf52vPN5kr1f82n7tLsMU/t1jmP1ep9f8
2G6zV7+TRwZ0m6pfFBr+8Kd224AhXn3skAWg9pu/JDT72AIDm3Np5OiIx6+L
m3b78OhrCxbBzfCL4uaXPA794tdfblnmM+KVeiQRNvtwKB40zCNBI58Ajj4R
YNtt39T+FQmwNAIASacETmqchDlov9RxKEUAeQN/P8dh8GDs3HtZJQIcsHRo
t7njlnTbUr8tAhzoU/IalJNfngANcvBunBvhxwPsnvQZi7ozNAjAU7xJRqYd
/iYY16Az4i3RuKG2bO3fGt2MCchD0m1/BbohQW4wIxs4+UV1nM8d5k8W40fo
p78R8pvlSi2nqnCt807ye0SmXvdPsoT70jdVMuMyrkTg+Pq3tmftzPI7e92m
5UgqNHJqNN5pF7rVhzK309x+lBVuj332ezWteEmhom6f3WHNVsP1vZB9mPfL
zntdl3yEKQeFTLTfrRySJqX6QhULRrfCD/1T21S1KURvgmO6Gl5l3PzI/CCG
pg2MySVqgdmdcefTCLgUGZ+6rZf46Kk5h7MnxRzFikaBB1VGe32xyZW/jEIp
7HIj4lWD68tzsNci1hUk5mYW9FVX9BikoFJqlTxoN4fMqymldOlJHqikHnJ2
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
4/8BYbw6idM+AQA=

-->

</rfc>
