Get participant config while in a remote console?

How can I get a participant’s Canton configuration while in a remote console?

  1. In the remote console, run <participant name>.health.dump().
  2. On your host machine unzip the canton-dump-*.zip file.
  3. Extract the config section from the extracted canton-dump-*.json file.

The following works on my Mac:

unzip -p canton-dump-2024-08-30T17-56-09.263294Z.zip "*.json" \
    | jq -r .config \
    | less
1 Like