/** * 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 TokenBalance */ export interface TokenBalance { /** * Network identifier where the token balance resides * @type {number} * @memberof TokenBalance */ networkId?: number; /** * Valid blockchain wallet address, must be an alphanumeric string (underscores allowed for chains like Midnight) * @type {string} * @memberof TokenBalance */ address: string; /** * Display name of the token * @type {string} * @memberof TokenBalance */ name: string; /** * Ticker symbol of the token * @type {string} * @memberof TokenBalance */ symbol: string; /** * Number of decimal places the token supports * @type {number} * @memberof TokenBalance */ decimals: number; /** * URL of the token logo image * @type {string} * @memberof TokenBalance */ logoURI: string; /** * Human-readable token balance adjusted for decimals * @type {number} * @memberof TokenBalance */ balance: number; /** * Raw token balance in the smallest unit * @type {number} * @memberof TokenBalance */ rawBalance: number; /** * Current price per token in USD * @type {number} * @memberof TokenBalance */ price?: number; /** * Total market value of the balance in USD * @type {number} * @memberof TokenBalance */ marketValue?: number; /** * Size of the token's liquidity pool in USD * @type {number} * @memberof TokenBalance */ liquidityPoolSizeUsd?: number; /** * Total circulating supply of the token * @type {string} * @memberof TokenBalance */ totalSupply?: string; /** * Whether this is the chain's native token * @type {boolean} * @memberof TokenBalance */ isNative?: boolean; } export declare function TokenBalanceFromJSON(json: any): TokenBalance; export declare function TokenBalanceFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenBalance; export declare function TokenBalanceToJSON(value?: TokenBalance | null): any;