/** * 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 EndaomentSdkTransaction */ export interface EndaomentSdkTransaction { /** * The address this transaction will be sent to * @type {string} * @memberof EndaomentSdkTransaction */ to: string; /** * The data this transaction will send to the destination contract * @type {string} * @memberof EndaomentSdkTransaction */ data: string; /** * The ETH value, if any, this transaction will send along * @type {string} * @memberof EndaomentSdkTransaction */ value: string; } /** * Check if a given object implements the EndaomentSdkTransaction interface. */ export declare function instanceOfEndaomentSdkTransaction(value: object): boolean; export declare function EndaomentSdkTransactionFromJSON(json: any): EndaomentSdkTransaction; export declare function EndaomentSdkTransactionFromJSONTyped(json: any, ignoreDiscriminator: boolean): EndaomentSdkTransaction; export declare function EndaomentSdkTransactionToJSON(value?: EndaomentSdkTransaction | null): any;