@digitalasset/daml-ledger
Version:
DAML Ledger API Node.js bindings
27 lines (26 loc) • 512 B
TypeScript
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>;
}