TSS Node Configuration Methods

cobo-tss-node currently supports two configuration methods

  • Command lines as the one shown below:

    • ./tss-node.sh start --ws-url=ws://ws.example.com/ws

  • Configuration files

  • Configuration files > command lines

Modifying configuration file

Under the configs directory, copy and paste the file cobo-tss-node-config.yaml.template. Then, rename it to cobo-tss-node-config.yaml. The directory will be as follows:

cobo-tss-node-generic
├── configs
│   ├── cobo-tss-node-config.yaml
│   └── cobo-tss-node-config.yaml.template (default configuration file template)
└── tss-node.sh (startup script)

Edit the cobo-tss-node-config.yaml file by removing the remark of the configuration item that needs to be modified and then update its content.

The following uses modifying "env" to "production" as an example:

env: production  # development; production
#db:
#  path: db/secrets.db
#  key_file: configs/password.key  # (optional) load password from file
#callback:

Description

Please note that no configuration is required for the TSS Node. All configuration items below will be optional:

Last updated