How can I get a participant’s Canton configuration while in a remote console?
- In the remote console, run
<participant name>.health.dump()
. - On your host machine unzip the
canton-dump-*.zip
file. - Extract the
config
section from the extractedcanton-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