From 5ca1a8f92be19f00067f188c1833b96a1bcb519d Mon Sep 17 00:00:00 2001 From: Alien Deployer Date: Thu, 20 Jun 2024 23:09:13 +0300 Subject: [PATCH] 0.7.2: almFee --- package.json | 2 +- src/api.types.ts | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 1e92d72..9d8fc20 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@stabilitydao/stability", - "version": "0.7.1", + "version": "0.7.2", "description": "Stability Integration Library", "main": "out/index.js", "types": "out/index.d.ts", diff --git a/src/api.types.ts b/src/api.types.ts index e183147..536d0f0 100644 --- a/src/api.types.ts +++ b/src/api.types.ts @@ -98,6 +98,12 @@ export type Vault = { }[]; }; almRebalanceRawData?: string[][]; + almFee?: { + income: number; + deposit: number; + withdraw: number; + rebalance: number; + }; risk?: Risk; };