@iota-pico/api
Version:
IOTA Pico Framework API
13 lines (12 loc) • 382 B
TypeScript
import { ICommonResponse } from "./ICommonResponse";
/**
* Represents the response from attachToTangle command.
* @interface
*/
export interface IAttachToTangleResponse extends ICommonResponse {
/**
* The returned tryte value, the last 243 trytes basically consist
* of the: trunkTransaction + branchTransaction + nonce.
*/
trytes: string[];
}