/** * 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 NativeCurrency */ export interface NativeCurrency { /** * Number of decimal places the native currency supports * @type {number} * @memberof NativeCurrency */ decimals: number; /** * Display name of the native currency * @type {string} * @memberof NativeCurrency */ name: string; /** * Ticker symbol of the native currency * @type {string} * @memberof NativeCurrency */ symbol: string; /** * Denomination identifier used on Cosmos-based chains * @type {string} * @memberof NativeCurrency */ denom?: string; /** * URL of the native currency icon image * @type {string} * @memberof NativeCurrency */ iconUrl?: string; /** * Token identifier used by the pricing provider for price lookups * @type {string} * @memberof NativeCurrency */ pricingProviderTokenId?: string; } export declare function NativeCurrencyFromJSON(json: any): NativeCurrency; export declare function NativeCurrencyFromJSONTyped(json: any, ignoreDiscriminator: boolean): NativeCurrency; export declare function NativeCurrencyToJSON(value?: NativeCurrency | null): any;