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