feat: added new fields to env response

This commit is contained in:
Alex Kraiz
2023-10-24 14:08:06 +04:00
parent 5be2257350
commit ee281a34d1
2 changed files with 5 additions and 1 deletions

View File

@@ -7,11 +7,15 @@ const environmentResponseSchema = z.object({
chainId: z.number().int().nonnegative(),
nativeToken: z.string(),
OrionV3Factory: evmAddressSchema,
OrionV2Factory: evmAddressSchema,
OrionV3NFTManager: evmAddressSchema,
SwapRouter: evmAddressSchema,
OrionFarmV3: evmAddressSchema,
OrionFarmV2: evmAddressSchema,
OrionVoting: evmAddressSchema,
veORN: evmAddressSchema,
ORN: evmAddressSchema,
WETH9: evmAddressSchema,
}),
info: infoSchema,
});