@iota-pico/api
Version:
IOTA Pico Framework API
16 lines (15 loc) • 389 B
TypeScript
import { ICommonResponse } from "./ICommonResponse";
/**
* Represents the response from getTransactionsToApprove command.
* @interface
*/
export interface IGetTransactionsToApproveResponse extends ICommonResponse {
/**
* The trunk transaction.
*/
trunkTransaction: string;
/**
* The branch transaction.
*/
branchTransaction: string;
}