How to check if parties have been properly created?

Following the steps in create-daml-app, I’d like to simply check if the script that was run properly created the parties.

setup = do
  public <- createPublic
  let aliases = ["Alice", "Bob", "Charlie", "Ron"]
  forA_ aliases $ \alias -> createTestUser $ TestUser alias public

Is there a CLI command for this? Thanks!

@rikotacards Once you run your local ledger and the script to create parties, you should be able to check the parties available using

daml ledger list-parties
4 Likes

Thanks!

1 Like