@digitalasset/daml-ledger
Version:
DAML Ledger API Node.js bindings
18 lines (17 loc) • 355 B
TypeScript
/**
* Example:
*
* ```
* {
* transactionId: 'some-tx-id'
* }
* ```
*
* To express values in a more concise way, you can have a look at the {@link ValueHelpers}.
*/
export interface SubmitAndWaitForTransactionIdResponse {
/**
* The id of the transaction that resulted from the submitted command.
*/
transactionId: string;
}