OP-3702 Update governancePoolsSchema

This commit is contained in:
Dmitry Leleko
2023-04-10 15:06:14 +03:00
parent 27abc439e6
commit 9b4c7bb665
2 changed files with 7 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@orionprotocol/sdk",
"version": "0.18.7-rc1",
"version": "0.18.7-rc2",
"description": "Orion Protocol SDK",
"main": "./lib/index.cjs",
"module": "./lib/index.js",

View File

@@ -11,10 +11,12 @@ const governancePoolsSchema = z.array(
farm_address: z.string(),
pool_tokens: z.tuple([z.string(), z.string()]),
pool_rewards: z.array(z.string()),
liquidity_locked: z.number(),
base_apy: z.number(),
max_apy: z.number(),
reward_per_week: z.number(),
tvl: z.number(),
base_apr: z.number(),
max_apr: z.number(),
reward_per_period: z.number(),
weight: z.number(),
liquidity: z.number(),
})
);