/** * 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. */ import { ChainEnum } from './ChainEnum'; /** * The custom network configuration details * @export * @interface CustomNetworkResponseCustomNetwork */ export interface CustomNetworkResponseCustomNetwork { /** * * @type {string} * @memberof CustomNetworkResponseCustomNetwork */ id: string; /** * * @type {ChainEnum} * @memberof CustomNetworkResponseCustomNetwork */ networkType: ChainEnum; /** * * @type {string} * @memberof CustomNetworkResponseCustomNetwork */ chainName: string; /** * * @type {string} * @memberof CustomNetworkResponseCustomNetwork */ chainId: string; /** * * @type {string} * @memberof CustomNetworkResponseCustomNetwork */ rpcUrl: string; /** * * @type {string} * @memberof CustomNetworkResponseCustomNetwork */ blockExplorerUrl: string; /** * * @type {string} * @memberof CustomNetworkResponseCustomNetwork */ iconUrl: string; /** * * @type {string} * @memberof CustomNetworkResponseCustomNetwork */ nativeCurrencyName: string; /** * * @type {string} * @memberof CustomNetworkResponseCustomNetwork */ nativeCurrencySymbol: string; /** * * @type {string} * @memberof CustomNetworkResponseCustomNetwork */ nativeCurrencyIconUrl: string; /** * * @type {number} * @memberof CustomNetworkResponseCustomNetwork */ nativeCurrencyDecimals: number; } export declare function CustomNetworkResponseCustomNetworkFromJSON(json: any): CustomNetworkResponseCustomNetwork; export declare function CustomNetworkResponseCustomNetworkFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomNetworkResponseCustomNetwork; export declare function CustomNetworkResponseCustomNetworkToJSON(value?: CustomNetworkResponseCustomNetwork | null): any;