How to check if parties have been properly created?
App Development3 posts323 views5 likesLast activity Jun 2022
RI
rikotacardsOP
Jun 2022Following 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!
JU
Julius_William
Jun 2022@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
RI
rikotacards
Jun 2022Thanks!