/** * 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'; /** * * @export * @interface CustomNetworkRequest */ export interface CustomNetworkRequest { /** * * @type {ChainEnum} * @memberof CustomNetworkRequest */ networkType: ChainEnum; /** * Name of the custom network * @type {string} * @memberof CustomNetworkRequest */ chainName: string; /** * Chain ID of the network * @type {string} * @memberof CustomNetworkRequest */ chainId: string; /** * * @type {string} * @memberof CustomNetworkRequest */ rpcUrl: string; /** * * @type {string} * @memberof CustomNetworkRequest */ blockExplorerUrl: string; /** * * @type {string} * @memberof CustomNetworkRequest */ iconUrl: string; /** * Full name of the native currency * @type {string} * @memberof CustomNetworkRequest */ nativeCurrencyName: string; /** * Symbol of the native currency * @type {string} * @memberof CustomNetworkRequest */ nativeCurrencySymbol: string; /** * * @type {string} * @memberof CustomNetworkRequest */ nativeCurrencyIconUrl: string; /** * Number of decimals for the native currency * @type {number} * @memberof CustomNetworkRequest */ nativeCurrencyDecimals: number; } export declare function CustomNetworkRequestFromJSON(json: any): CustomNetworkRequest; export declare function CustomNetworkRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomNetworkRequest; export declare function CustomNetworkRequestToJSON(value?: CustomNetworkRequest | null): any;