UNPKG

@iota-pico/api

Version:
19 lines (18 loc) 438 B
/** * 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; }