@xoxno/types 1.0.247 → 1.0.248
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.
|
@@ -16,4 +16,9 @@ export declare class LendingMarketAnalyticsGraph {
|
|
|
16
16
|
minBorrowAmount: number[];
|
|
17
17
|
maxBorrowAmount: number[];
|
|
18
18
|
avgBorrowAmount: number[];
|
|
19
|
+
twapSupplyApy: number;
|
|
20
|
+
twapBorrowApy: number;
|
|
21
|
+
twapUtilizationRate: number;
|
|
22
|
+
twapSupplyAmount: number;
|
|
23
|
+
twapBorrowAmount: number;
|
|
19
24
|
}
|
|
@@ -169,3 +169,38 @@ __decorate([
|
|
|
169
169
|
}),
|
|
170
170
|
__metadata("design:type", Array)
|
|
171
171
|
], LendingMarketAnalyticsGraph.prototype, "avgBorrowAmount", void 0);
|
|
172
|
+
__decorate([
|
|
173
|
+
(0, swagger_1.ApiProperty)({
|
|
174
|
+
description: 'TWAP supply APY for each the time range',
|
|
175
|
+
example: 1.2,
|
|
176
|
+
}),
|
|
177
|
+
__metadata("design:type", Number)
|
|
178
|
+
], LendingMarketAnalyticsGraph.prototype, "twapSupplyApy", void 0);
|
|
179
|
+
__decorate([
|
|
180
|
+
(0, swagger_1.ApiProperty)({
|
|
181
|
+
description: 'TWAP borrow APY for each the time range',
|
|
182
|
+
example: 1.2,
|
|
183
|
+
}),
|
|
184
|
+
__metadata("design:type", Number)
|
|
185
|
+
], LendingMarketAnalyticsGraph.prototype, "twapBorrowApy", void 0);
|
|
186
|
+
__decorate([
|
|
187
|
+
(0, swagger_1.ApiProperty)({
|
|
188
|
+
description: 'TWAP utilization rate for each the time range',
|
|
189
|
+
example: 1.2,
|
|
190
|
+
}),
|
|
191
|
+
__metadata("design:type", Number)
|
|
192
|
+
], LendingMarketAnalyticsGraph.prototype, "twapUtilizationRate", void 0);
|
|
193
|
+
__decorate([
|
|
194
|
+
(0, swagger_1.ApiProperty)({
|
|
195
|
+
description: 'TWAP supply amount for each the time range',
|
|
196
|
+
example: 1.2,
|
|
197
|
+
}),
|
|
198
|
+
__metadata("design:type", Number)
|
|
199
|
+
], LendingMarketAnalyticsGraph.prototype, "twapSupplyAmount", void 0);
|
|
200
|
+
__decorate([
|
|
201
|
+
(0, swagger_1.ApiProperty)({
|
|
202
|
+
description: 'TWAP borrow amount for each the time range',
|
|
203
|
+
example: 1.2,
|
|
204
|
+
}),
|
|
205
|
+
__metadata("design:type", Number)
|
|
206
|
+
], LendingMarketAnalyticsGraph.prototype, "twapBorrowAmount", void 0);
|