TSS Node Callback Mechanism

After the TSS Node has been successfully set up, it will automatically connect to Cobo Custody Web and listen for tasks sent by the Cobo Custody backend.

Currently, there are three types of tasks: key generation (KeyGen), transaction signing (KeySign), and soft key recovery (KeyReshare).

If the callback mechanism is not set up, the TSS Node will immediately execute each task upon receiving it from the Cobo Custody backend.

If the callback mechanism is set up, the TSS Node will send an approval request to the callback server upon receiving a task from the Cobo Custody backend. The TSS Node will execute the task only if it is approved by the callback server.

The TSS Node and the callback server connect via the HTTP communication protocol. Cobo Custody has also implemented the JSON Web Token (JWT) that is signed with the RS256 algorithm. For more information on JWT, please click here.

  • During TSS Node initialization, the TSS Node and the callback server will each generate and configure a RSA private/public key pair

  • When the TSS Node receives a task, it will construct CallbackRequest and generate the JWT token using its RSA private key

  • The TSS Node will send a request to the callback server via the HTTP POST method

  • The callback server will validate the JWT signature using the TSS Node's RSA public key

  • The callback server will construct CallbackRequest and sign it using its RSA private key before sending the JWT back to the TSS Node

  • Once the TSS Node receives the HTTP response, it will validate the JWT signature using the callback server's RSA public key

  • Once validated, the TSS Node will execute or reject the task based on the response from the callback server

To get started with the TSS Node callback mechanism, please refer to the following steps:

  1. Callback Server Requirements

  2. Callback Server Configuration

  3. TSS Node Configuration

  4. TSS Node & Callback Server Startup

Last updated