@iota-pico/api
Version:
IOTA Pico Framework API
13 lines (12 loc) • 422 B
TypeScript
import { ICommonResponse } from "./ICommonResponse";
/**
* Represents the response from getInclusionStates command.
* @interface
*/
export interface IGetInclusionStatesResponse extends ICommonResponse {
/**
* List of boolean values in the same order as the transaction list you submitted,
* thus you get a true/false whether a transaction is confirmed or not.
*/
states: boolean[];
}