/** * 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 Asset */ export interface Asset { /** * * @type {string} * @memberof Asset */ address: string | null; /** * Numeric identifier of the blockchain network * @type {number} * @memberof Asset */ chainId?: number; /** * Human-readable name of the blockchain network * @type {string} * @memberof Asset */ chainName: string; /** * Number of decimal places used by the token * @type {number} * @memberof Asset */ decimals: number; /** * URL of the token logo image * @type {string} * @memberof Asset */ logoUrl: string; /** * Display name of the token or asset * @type {string} * @memberof Asset */ name: string; /** * Ticker symbol of the token (e.g. ETH, USDC) * @type {string} * @memberof Asset */ symbol: string; /** * Classification of the asset (e.g. ERC20, NATIVE) * @type {string} * @memberof Asset */ type: string; } export declare function AssetFromJSON(json: any): Asset; export declare function AssetFromJSONTyped(json: any, ignoreDiscriminator: boolean): Asset; export declare function AssetToJSON(value?: Asset | null): any;