feature: added new field to Pool V2 info scheme

This commit is contained in:
Mikhail Gladchenko
2023-10-20 09:42:21 +01:00
parent 4be3405dd8
commit 063678d298
2 changed files with 2 additions and 1 deletions

View File

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

View File

@@ -21,6 +21,7 @@ const poolInfoSchema = z.object({
liquidity1: z.number(),
token0Price: z.number(),
token1Price: z.number(),
userLPBalance: z.number(),
totalLPSupply: z.number(),
totalLPStake: z.number(),
totalLPStakeInUSD: z.number(),