Skip to main content
Integrating Proof of Transfer capability into a Canton Network Explorer gives users a seamless interface to verify transaction statuses natively, while preserving privacy.

Integration Blueprint

To provide a seamless customer journey, the Explorer handles incoming payload information—an UpdateID and a Transfer Object payload—usually supplied via direct user copy-pasting or automated routing via a platform referral URL parameter. The platform then submits this data payload to the DA Registry API to render an indisputable confirmation receipt.

Step-by-Step Implementation Flow

Follow this workflow sequence to build the verification stack inside your network explorer ecosystem.
1

1. Configure the Target Inbound Route

Create a dedicated, public route in your application routing profile (e.g., /verify-transfer) designated to handle incoming cryptographic verification payloads. Ensure the handler is equipped to extract query string components seamlessly if redirected from external wallet histories.
2

2. Construct the Payload Input Form Interface

Design a clean input card component. If parameters are present in the URL path, auto-populate the data fields for the user. If blank, provide a structured text area box allowing the user to paste their raw transaction JSON payload manually.
3

3. Query the DA Registry Endpoint

Dispatch an asynchronous network request from your application frontend layer directly to the live DA Registry network service infrastructure node using the structured body schemas.
Curl Request Signature
4

4. Parse Outcomes & Render Visual Verification Status

Read the structured enum value returned from the API service. Update the client view container to reflect the deterministic ledger evaluation output cleanly using descriptive status layouts.

API Request Schema Specifications

Your interface layer must accurately frame the request body definitions before transmitting data packages to the network node validation server.

Technical Payload Fields

updateId
string
required
The unique cryptographic ledger hash tracking indicator marking the target execution sequence window.
transfer
object
required
The private core transaction details package required to process cryptographic balance sheet verification.

UI Component States & Response Handling

To ensure alignment with network expectations, map the direct string responses from the DA Registry API into intuitive, color-coded dashboard indicators for your end users.

Rendering UI Target: Balanced Verification Badge

The transaction variables are authenticated against the ledger state and indicate successful contract finalization.
Response Sample
Interface Suggestion: Render a prominent checkmark module highlighting an “Indisputably Settled” receipt statement. Users can confidently treat this transaction as settled.