/** * 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 WalletTransactionFee */ export interface WalletTransactionFee { /** * Fee amount in the smallest native denomination (wei for EVM chains, lamports for SVM chains). * @type {string} * @memberof WalletTransactionFee */ amount?: string; /** * Whether the fee was paid by a third party. * @type {boolean} * @memberof WalletTransactionFee */ sponsored?: boolean; /** * Address of the entity that paid the fee. Only present when sponsored is true. * @type {string} * @memberof WalletTransactionFee */ sponsor?: string; /** * EVM only. Amount of gas actually consumed by the transaction. * @type {string} * @memberof WalletTransactionFee */ gasUsed?: string; /** * EVM only. Effective gas price paid in wei (base fee + priority fee for EIP-1559 transactions). * @type {string} * @memberof WalletTransactionFee */ gasPrice?: string; } export declare function WalletTransactionFeeFromJSON(json: any): WalletTransactionFee; export declare function WalletTransactionFeeFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletTransactionFee; export declare function WalletTransactionFeeToJSON(value?: WalletTransactionFee | null): any;