/** * Endaoment API * The official Endaoment API & SDK endpoints * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface NdaoSdkTransaction */ export interface NdaoSdkTransaction { /** * The address this transaction will be sent to * @type {string} * @memberof NdaoSdkTransaction */ to: string; /** * The data this transaction will send to the destination contract * @type {string} * @memberof NdaoSdkTransaction */ data: string; /** * The ETH value, if any, this transaction will send along * @type {string} * @memberof NdaoSdkTransaction */ value: string; } /** * Check if a given object implements the NdaoSdkTransaction interface. */ export declare function instanceOfNdaoSdkTransaction(value: object): boolean; export declare function NdaoSdkTransactionFromJSON(json: any): NdaoSdkTransaction; export declare function NdaoSdkTransactionFromJSONTyped(json: any, ignoreDiscriminator: boolean): NdaoSdkTransaction; export declare function NdaoSdkTransactionToJSON(value?: NdaoSdkTransaction | null): any;