@iota-pico/api
Version:
IOTA Pico Framework API
19 lines (18 loc) • 438 B
TypeScript
/**
* Represents the request for getTransactionsToApprove command.
* @interface
*/
export interface IGetTransactionsToApproveRequest {
/**
* Number of bundles to go back to determine the transactions for approval.
*/
depth: number;
/**
* The reference to include in the lookup.
*/
reference?: string;
/**
* The number of walks to perform.
*/
numWalks?: number;
}