/** * 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 ChainSettlementConfig */ export interface ChainSettlementConfig { /** * * @type {ChainEnum} * @memberof ChainSettlementConfig */ chainName: ChainEnum; /** * * @type {string} * @memberof ChainSettlementConfig */ tokenAddress: string; /** * * @type {string} * @memberof ChainSettlementConfig */ chainId: string; /** * * @type {string} * @memberof ChainSettlementConfig */ symbol: string; /** * The number of decimals for the token * @type {number} * @memberof ChainSettlementConfig */ tokenDecimals: number; /** * Whether the token is the native token for the chain * @type {boolean} * @memberof ChainSettlementConfig */ isNative?: boolean; } export declare function ChainSettlementConfigFromJSON(json: any): ChainSettlementConfig; export declare function ChainSettlementConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChainSettlementConfig; export declare function ChainSettlementConfigToJSON(value?: ChainSettlementConfig | null): any;