UNPKG

@iota-pico/api

Version:
13 lines (12 loc) 382 B
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[]; }