/** * 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 TransactionFeeEstimateResponse */ export interface TransactionFeeEstimateResponse { /** * Total estimated fee in the smallest unit of the native currency * @type {string} * @memberof TransactionFeeEstimateResponse */ estimatedFee: string; /** * Native currency symbol (ETH, SOL, BTC, SUI, etc.) * @type {string} * @memberof TransactionFeeEstimateResponse */ currency: string; /** * Number of decimals for the native currency * @type {number} * @memberof TransactionFeeEstimateResponse */ decimals?: number; /** * Estimated units of compute/space required (gas, compute units, vBytes, etc.) * @type {string} * @memberof TransactionFeeEstimateResponse */ units?: string; /** * Price per unit in the smallest denomination * @type {string} * @memberof TransactionFeeEstimateResponse */ unitPrice?: string; /** * Base fee component * @type {string} * @memberof TransactionFeeEstimateResponse */ baseFee?: string; /** * Priority/tip fee component * @type {string} * @memberof TransactionFeeEstimateResponse */ priorityFee?: string; /** * Maximum possible fee (for chains with variable pricing) * @type {string} * @memberof TransactionFeeEstimateResponse */ maxFee?: string; } export declare function TransactionFeeEstimateResponseFromJSON(json: any): TransactionFeeEstimateResponse; export declare function TransactionFeeEstimateResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionFeeEstimateResponse; export declare function TransactionFeeEstimateResponseToJSON(value?: TransactionFeeEstimateResponse | null): any;