/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * 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 SwapTronTransactionData */ export interface SwapTronTransactionData { /** * Hex-encoded serialized Tron raw_data protobuf (a TriggerSmartContract call to the swap router). This is the full signable transaction; the Tron signer derives the txID (sha256 of raw_data) and signs it. * @type {string} * @memberof SwapTronTransactionData */ rawDataHex: string; /** * Router contract address (base58), for display only * @type {string} * @memberof SwapTronTransactionData */ to: string; /** * Native TRX amount in sun (hex string, "0x0" if token-only) * @type {string} * @memberof SwapTronTransactionData */ value: string; } export declare function SwapTronTransactionDataFromJSON(json: any): SwapTronTransactionData; export declare function SwapTronTransactionDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): SwapTronTransactionData; export declare function SwapTronTransactionDataToJSON(value?: SwapTronTransactionData | null): any;