Is it possible to specify the ledger id when using 'daml start'?

Hi team,
Is it possible to specify the ledger id when using

daml start

?

You can specify it either on the CLI via --sandbox-option=--ledgerid=abc (note the lack of spaces) or alternative specify it in your daml.yaml:

sandbox-options:
  - --ledgerid=abc
2 Likes

Thanks Moritz !

1 Like

What I needed today, thanks!