UNPKG

@digitalasset/daml-ledger

Version:
27 lines (26 loc) 512 B
import { PartyDetails } from "./PartyDetails"; /** * Example: * * ``` * { * partyDetails: [ * { * party: 'alice', * displayName: 'Alice', * isLocal: false * }, * { * party: 'bob', * isLocal: false * } * ] * } * ``` */ export interface ListKnownPartiesResponse { /** * The details of all DAML parties hosted by the participant. Required */ partyDetails: Array<PartyDetails>; }