@ember-finance/sdk 1.2.1 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -29,7 +29,7 @@ export interface VaultDetail {
29
29
  */
30
30
  id: string;
31
31
  /**
32
- *
32
+ * Short name/symbol of the vault
33
33
  * @type {string}
34
34
  * @memberof VaultDetail
35
35
  */
@@ -133,17 +133,17 @@ export interface VaultDetail {
133
133
  */
134
134
  weeklyPerformanceFeeBpsE9: string;
135
135
  /**
136
- *
136
+ * The management fee percentage of the vault in e18 form
137
137
  * @type {string}
138
138
  * @memberof VaultDetail
139
139
  */
140
140
  managementFeePercentE18: string;
141
141
  /**
142
- *
142
+ * The rate of the vault in e18 form
143
143
  * @type {string}
144
144
  * @memberof VaultDetail
145
145
  */
146
- rateE18?: string;
146
+ rateE18: string;
147
147
  /**
148
148
  * The maximum deposits allowed of the vault in e18 form
149
149
  * @type {string}
@@ -151,7 +151,7 @@ export interface VaultDetail {
151
151
  */
152
152
  maxDepositsAllowedE18?: string;
153
153
  /**
154
- *
154
+ * The withdrawal period in days
155
155
  * @type {number}
156
156
  * @memberof VaultDetail
157
157
  */
@@ -169,13 +169,13 @@ export interface VaultDetail {
169
169
  */
170
170
  rewards: Array<RewardToken>;
171
171
  /**
172
- * The aggregatedtotal deposits of the vault equivalent to USD in e9
172
+ * The aggregated total deposits of the vault equivalent to USD in e9
173
173
  * @type {string}
174
174
  * @memberof VaultDetail
175
175
  */
176
176
  totalDepositsInUsdE9: string;
177
177
  /**
178
- * The aggregated total deposits of the vault in e18 form
178
+ * The aggregated total deposits of the vault in e9 form
179
179
  * @type {string}
180
180
  * @memberof VaultDetail
181
181
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ember-finance/sdk",
3
3
  "description": "Ember Protocol SDK",
4
- "version": "1.2.1",
4
+ "version": "1.2.2",
5
5
  "module": "./dist/index.js",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",