UNPKG

@iota-pico/api

Version:
23 lines (22 loc) 511 B
/** * Represents the request for findTransactions command. * @interface */ export interface IFindTransactionsRequest { /** * List of bundle hashes. The hashes need to be extended to 81chars by padding the hash with 9's. */ bundles?: string[]; /** * List of addresses. */ addresses?: string[]; /** * List of transaction tags. */ tags?: string[]; /** * List of approvees of a transaction. */ approvees?: string[]; }