From 4feb13fc695852f596f86933e523a6febdffea90 Mon Sep 17 00:00:00 2001 From: Mikhail Gladchenko Date: Fri, 5 Jul 2024 14:24:03 +0100 Subject: [PATCH] feat: updated infoSchema --- src/services/BlockchainService/schemas/infoSchema.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/services/BlockchainService/schemas/infoSchema.ts b/src/services/BlockchainService/schemas/infoSchema.ts index 472a895..257b0b7 100644 --- a/src/services/BlockchainService/schemas/infoSchema.ts +++ b/src/services/BlockchainService/schemas/infoSchema.ts @@ -1,5 +1,5 @@ import { z } from 'zod'; -import { makePartial } from '../../../utils/index.js'; +import { makePartial } from '../../../utils'; const internalFeeAssetSchema = z.object({ type: z.enum(['percent', 'plain']), @@ -10,8 +10,9 @@ const internalFeeAssetSchema = z.object({ const infoSchema = z.object({ chainId: z.number(), chainName: z.string(), - exchangeContractAddress: z.string(), swapExecutorContractAddress: z.string(), + libValidatorContractAddress: z.string(), + exchangeContractAddress: z.string(), oracleContractAddress: z.string(), matcherAddress: z.string(), orderFeePercent: z.number(),