/** * 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 { NetworkConfiguration } from './NetworkConfiguration'; /** * * @export * @interface NetworkConfigurationResponse */ export interface NetworkConfigurationResponse { /** * Name of the blockchain family (e.g. EVM, Solana) * @type {string} * @memberof NetworkConfigurationResponse */ chainName?: string; /** * List of network configurations for this chain * @type {Array} * @memberof NetworkConfigurationResponse */ networks?: Array; } export declare function NetworkConfigurationResponseFromJSON(json: any): NetworkConfigurationResponse; export declare function NetworkConfigurationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): NetworkConfigurationResponse; export declare function NetworkConfigurationResponseToJSON(value?: NetworkConfigurationResponse | null): any;