UNPKG

@openzeppelin/relayer-sdk

Version:
49 lines (48 loc) 1.42 kB
/** * OpenZeppelin Relayer API * OpenZeppelin Relayer API * * The version of the OpenAPI document: 1.3.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 StellarFeeEstimateResult */ export interface StellarFeeEstimateResult { /** * Conversion rate from XLM to token (as string) * @type {string} * @memberof StellarFeeEstimateResult */ 'conversion_rate': string; /** * Estimated fee in token amount (raw units as string) * @type {string} * @memberof StellarFeeEstimateResult */ 'fee_in_token': string; /** * Estimated fee in token amount (decimal UI representation as string) * @type {string} * @memberof StellarFeeEstimateResult */ 'fee_in_token_ui': string; /** * Maximum fee in token amount (raw units as string). Only present for Soroban gas abstraction - includes slippage buffer. * @type {string} * @memberof StellarFeeEstimateResult */ 'max_fee_in_token'?: string | null; /** * Maximum fee in token amount (decimal UI representation as string). Only present for Soroban gas abstraction - includes slippage buffer. * @type {string} * @memberof StellarFeeEstimateResult */ 'max_fee_in_token_ui'?: string | null; }