💼
Cobo MPC Co-Managed Custody
English
English
  • Cobo MPC Co-Managed Custody
    • MPC-TSS Technology
    • Quick Start Guide
      • Cobo Custody
        • Manage Account
          • Team (Only Visible to Admins)
          • Me (Team Members)
      • TSS Node Deployment
      • MPC Wallet Management on Cobo Custody Web
    • Web User Guide
      • Add TSS Node
      • Create MPC Wallet(s)
        • Send / Receive Wallet
          • Manage Coins
          • Create and Manage Wallet Addresses
          • Export Addresses
          • View Transactions
          • Configure Risk Control Policies
          • Manage API
          • Manage API Callbacks
          • Manage Settings
        • Web3 Wallet
          • Create and Manage Wallet Addresses
          • View NFTs
          • Access DApps
            • Cobo Connect
            • MetaMask Institutional
          • View Transactions
          • Manage Coins
          • Configure Risk Control Policies
          • Manage API
          • Manage API Callbacks
          • Manage Settings
    • TSS Node User Guide
      • Network Requirements
      • Server Environment Preparation
        • SGX-Ready Server
        • Off-The-Shelf Server
        • Apple MacBook
      • TSS Node Deployment
        • TSS Node Package
        • TSS Node Initialization
        • TSS Node Startup
        • TSS Node on Cobo Custody Web & MPC Root Extended Public Key Derivation
      • TSS Node Callback
        • TSS Node Callback Mechanism
        • Callback Server Requirements
          • Callback Server Examples
        • Callback Server Configuration
        • TSS Node Configuration & Callback Server Startup
      • TSS Node Update
      • TSS Node Release Notes
      • Appendix
        • TSS Node Configuration Methods
        • TSS Node Command Lines
        • TSS Node Risk Control
    • MPC Key Share User Guide
      • MPC Key Share Management
        • Backup
        • Restore
      • Disaster Recovery
        • Soft Key Recovery
        • Hard Key Recovery
        • Third Party Key Recovery
    • Supported Tokens and Chains
Powered by GitBook
LogoLogo
On this page
  • TSS Node Configuration
  • TSS Node & Callback Server Startup
  1. Cobo MPC Co-Managed Custody
  2. TSS Node User Guide
  3. TSS Node Callback

TSS Node Configuration & Callback Server Startup

TSS Node Configuration

You’ll need to complete the following steps on the server where the TSS Node is deployed.

  • Copy the callback server’s RSA public key file to the configs directory of the TSS Node

cobo-tss-node-generic
├── configs
│   ├── callback-server-pub.key
│   └── cobo-tss-node-config.yaml
  • Modify the cobo-tss-node-config.yaml file

    • cb_server

      • service_address indicates the callback server address

        • pubkey_path indicates the file path of the callback server’s RSA

    • token_expire_minutes indicates the timeout period of the JWT (unit: minutes)

    • retry_time indicates the number of retries if the callback request fails

    • sleep_seconds indicates the time interval between each retry (unit: minutes)

You can configure multiple callback servers. The following output uses two callback servers as an example:

callback:
  cb_server:
    - service_address: http://callback-server-01:8080/v1/check
      pubkey_path: configs/callback-server-pub-01.key
    - service_address: http://callback-server-02:8080/v1/check
      pubkey_path: configs/callback-server-pub-02.key
  token_expire_minutes: 2 
  retry_times: 60
  sleep_seconds: 60

TSS Node & Callback Server Startup

Once the aforementioned configuration has been completed, you can start up the callback server and the TSS Node.

PreviousCallback Server ConfigurationNextTSS Node Update

Last updated 2 years ago