/** * 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 ChainConfiguration */ export interface ChainConfiguration { /** * Name of the blockchain network * @type {string} * @memberof ChainConfiguration */ name: string; /** * Whether this chain is enabled for embedded wallets * @type {boolean} * @memberof ChainConfiguration */ enabled: boolean; /** * Whether this is the primary chain for the environment * @type {boolean} * @memberof ChainConfiguration */ primary: boolean; } export declare function ChainConfigurationFromJSON(json: any): ChainConfiguration; export declare function ChainConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChainConfiguration; export declare function ChainConfigurationToJSON(value?: ChainConfiguration | null): any;