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(),