UNPKG

@digitalasset/daml-ledger

Version:
20 lines (19 loc) 417 B
/** * Example: * * ``` * { * ledgerId: 'my-sandbox' * } * ``` * * To express values in a more concise way, you can have a look at the {@link ValueHelpers}. */ export interface GetLedgerIdentityResponse { /** * The identifier of the ledger exposed by the server. * * Requests submitted with the wrong ledger ID will result in ``NOT_FOUND`` gRPC errors. */ ledgerId: string; }