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!