UNPKG

@iota-pico/api

Version:
12 lines (11 loc) 346 B
import { ICommonResponse } from "./ICommonResponse"; /** * Represents the response from wereAddressesSpentFrom command. * @interface */ export interface IWereAddressesSpentFromResponse extends ICommonResponse { /** * States which are true if the corresponding input address was spent from. */ states: boolean[]; }