@iota-pico/api
Version:
IOTA Pico Framework API
12 lines (11 loc) • 346 B
TypeScript
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[];
}