/** * 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 SwapToken */ export interface SwapToken { /** * Token contract address * @type {string} * @memberof SwapToken */ address: string; /** * Chain ID where the token resides * @type {string} * @memberof SwapToken */ chainId: string; /** * Unique key identifier for the token across chains * @type {string} * @memberof SwapToken */ coinKey?: string; /** * Number of decimal places the token supports * @type {number} * @memberof SwapToken */ decimals: number; /** * URL of the token logo image * @type {string} * @memberof SwapToken */ logoURI?: string; /** * Display name of the token * @type {string} * @memberof SwapToken */ name: string; /** * Current price of the token in USD * @type {string} * @memberof SwapToken */ priceUSD?: string; /** * Ticker symbol of the token * @type {string} * @memberof SwapToken */ symbol: string; } export declare function SwapTokenFromJSON(json: any): SwapToken; export declare function SwapTokenFromJSONTyped(json: any, ignoreDiscriminator: boolean): SwapToken; export declare function SwapTokenToJSON(value?: SwapToken | null): any;