feature: up version

This commit is contained in:
Mikhail Gladchenko
2023-10-19 08:47:45 +01:00
parent 4ca6ea669d
commit efa4c0b93a
3 changed files with 3 additions and 5 deletions

View File

@@ -20,7 +20,8 @@ const basicPoolInfo = z.object({
maxAPR: z.number().nonnegative(),
avgAPR: z.number().nonnegative(),
maxBoost: z.number().nonnegative().int(),
feeRate: z.array(z.number().nonnegative()),
// This is a crutch. In the nearest future Yury will update his model and OR condition need to be removed
feeRate: z.array(z.number().nonnegative()).or(z.number().nonnegative()),
});
export default basicPoolInfo;

View File

@@ -45,9 +45,6 @@ const poolOfListPoolSchema = z.object({
...basicPoolInfo.shape,
// This is a crutch. In the nearest future Yury will update his model and this feeRate can be deleted
feeRate: z.number().nonnegative(),
type: z.string().nonempty(),
});