Onboard External Party
This tutorial demonstrates how to onboard an external party using the Ledger API.
Prerequisites
This tutorial uses openssl to create keys on the file system, which is not secure for production use.
From the artifact directory, start Canton using the command:
A runnable script external_party_onboarding.sh located in the examples/08-interactive-submission directory of the Canton artifact puts together the steps in this tutorial as an example. Run the script from the same directory where you started Canton such that the script can find the canton_ports.json file which contains the port configuration of the running Canton instance, or invoke the script with the hostname and port of the Ledger API using the command line argument -p1 <host>:<port>. Note that the script supports a few command line arguments, which you can see by inspecting the code.To obtain a Canton artifact refer to the getting started section.
Onboarding
The onboarding steps are:
- Create a private key using openssl for the external party.
- Determine the available synchronizer-id.
- Create the topology transaction to define a new external party.
- Sign the topology transaction.
- Upload the signed topology transaction to the Ledger API.
First, determine the available synchronizer-ids using the v2/connected-synchronizers endpoint, assuming that there is exactly one. The party allocation must be repeated for each synchronizer-id the party should be hosted on.
Run this command from the same directory where you started Canton such that the command can find the canton_ports.json file which contains the port configuration of the running Canton instance.
Next, create a private Ed25519 key for the external party (other types of keys are supported as well). The public key is then extracted in DER format and the binary DER format converted to base64.
Use the convenience endpoint /v2/parties/external/generate-topology to generate the topology transactions required to onboard the external party. This is fine if the node is trusted. In other scenarios, the transactions should be built manually or inspected before signing, including recomputing the hash.
The convenience endpoint returns the generated topology transactions together with the computed party-id for the new party and the fingerprint of the public key. In addition, it also returns a multi-hash, which is a commitment to the entire set of transactions.
Do not make assumptions on the number of onboarding transactions returned by the endpoint as it is subject to change. To deserialize and inspect the transaction, check out the external party topology transaction tutorial.
Sign the hash and convert the signature to base64:
The transactions can be signed one by one, or together as one hash, as done here.
Using the signature and the data from the previous step, submit the topology transactions and the signature to the ledger API to complete the onboarding of the new external party:
When allocating parties on a single node like here, the allocate endpoint is synchronous, meaning it returns only when the party is allocated. The party should now appear on the Ledger API:
Onboard Multi-Hosted External Party
This tutorial demonstrates how to onboard an external party using the Ledger API which is hosted on multiple validators. It is a simple extension to the onboard external party tutorial.
Prerequisites
Make sure that you have completed the onboard external party tutorial and still have a running Canton example instance.
Run The Script
The example script used in the previous tutorial also supports onboarding a multi-hosted external party. It will onboard by default on two nodes if invoked with the --multi-hosted command line argument.
The Details of the Script
The flag --multi-hosted will pass the second participant id into the generate-topology request through the
field. This will cause the generated topology transaction to include the additional participant id in the hosting relation ship. Other options are fields such as observingParticipantUids, confirmationThreshold and more. If not configured, then the confirmation threshold will be set to the number of confirming nodes.
The generated topology transactions then just need to be uploaded to the Ledger API of the second participant:
You can try this out on the Canton console if you have two participants connected to the same synchronizer. In the following example, you will use the participant1 to create the hosting proposal for an internal party. This way, you don’t need to deal with creating signatures for the topology transactions externally. The approval of the proposal will be done using participant2.
First, create a hosting proposal using participant1:
Then, list the proposals on participant2. The new proposal should appear shortly:
This will show the pending proposal, awaiting the signature of the second participant. The proposal is identified by the transaction hash txHash, which can be obtained from the output of the previous command:
Authorize the proposal using the console command topology.transactions.authorize:
This will add the signature of participant2 to the proposal. Because the proposal is now fully signed, the party will appear as being hosted on both nodes: