@xoxno/types 1.0.406 → 1.0.407
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.
|
@@ -57,6 +57,7 @@ export declare class StellarCreateMarketEvent {
|
|
|
57
57
|
slope3: string;
|
|
58
58
|
midUtilization: string;
|
|
59
59
|
optimalUtilization: string;
|
|
60
|
+
maxUtilization?: string;
|
|
60
61
|
reserveFactor: number;
|
|
61
62
|
marketAddress: string;
|
|
62
63
|
config: AssetConfigRawDto;
|
|
@@ -70,6 +71,7 @@ export declare class StellarUpdateMarketParamsEvent {
|
|
|
70
71
|
slope3Ray: string;
|
|
71
72
|
midUtilizationRay: string;
|
|
72
73
|
optimalUtilizationRay: string;
|
|
74
|
+
maxUtilizationRay?: string;
|
|
73
75
|
reserveFactorBps: number;
|
|
74
76
|
}
|
|
75
77
|
export declare class StellarUpdateMarketStateBatchEvent {
|
|
@@ -94,6 +96,8 @@ export declare class StellarUpdateAssetConfigEvent {
|
|
|
94
96
|
export declare class StellarUpdateAssetOracleEvent {
|
|
95
97
|
asset: string;
|
|
96
98
|
oracle: StellarLendingOracleUpdateStruct;
|
|
99
|
+
minSanityPriceWad?: string;
|
|
100
|
+
maxSanityPriceWad?: string;
|
|
97
101
|
}
|
|
98
102
|
export declare class StellarUpdateEModeCategoryEvent {
|
|
99
103
|
category: StellarEventEModeCategory;
|
|
@@ -271,6 +271,10 @@ __decorate([
|
|
|
271
271
|
(0, swagger_1.ApiProperty)({ description: 'Optimal utilization, RAY decimal string' }),
|
|
272
272
|
__metadata("design:type", String)
|
|
273
273
|
], StellarCreateMarketEvent.prototype, "optimalUtilization", void 0);
|
|
274
|
+
__decorate([
|
|
275
|
+
(0, swagger_1.ApiProperty)({ type: String, required: false, description: 'Max utilization, RAY decimal string' }),
|
|
276
|
+
__metadata("design:type", String)
|
|
277
|
+
], StellarCreateMarketEvent.prototype, "maxUtilization", void 0);
|
|
274
278
|
__decorate([
|
|
275
279
|
(0, swagger_1.ApiProperty)({ type: 'integer', description: 'Reserve factor, bps' }),
|
|
276
280
|
__metadata("design:type", Number)
|
|
@@ -325,6 +329,10 @@ __decorate([
|
|
|
325
329
|
(0, swagger_1.ApiProperty)({ description: 'Optimal utilization, RAY decimal string' }),
|
|
326
330
|
__metadata("design:type", String)
|
|
327
331
|
], StellarUpdateMarketParamsEvent.prototype, "optimalUtilizationRay", void 0);
|
|
332
|
+
__decorate([
|
|
333
|
+
(0, swagger_1.ApiProperty)({ type: String, required: false, description: 'Max utilization, RAY decimal string' }),
|
|
334
|
+
__metadata("design:type", String)
|
|
335
|
+
], StellarUpdateMarketParamsEvent.prototype, "maxUtilizationRay", void 0);
|
|
328
336
|
__decorate([
|
|
329
337
|
(0, swagger_1.ApiProperty)({ type: 'integer', description: 'Reserve factor, bps' }),
|
|
330
338
|
__metadata("design:type", Number)
|
|
@@ -425,6 +433,14 @@ __decorate([
|
|
|
425
433
|
}),
|
|
426
434
|
__metadata("design:type", lending_oracle_1.StellarLendingOracleUpdateStruct)
|
|
427
435
|
], StellarUpdateAssetOracleEvent.prototype, "oracle", void 0);
|
|
436
|
+
__decorate([
|
|
437
|
+
(0, swagger_1.ApiProperty)({ type: String, required: false, description: 'Inclusive lower sanity bound, USD WAD decimal string' }),
|
|
438
|
+
__metadata("design:type", String)
|
|
439
|
+
], StellarUpdateAssetOracleEvent.prototype, "minSanityPriceWad", void 0);
|
|
440
|
+
__decorate([
|
|
441
|
+
(0, swagger_1.ApiProperty)({ type: String, required: false, description: 'Inclusive upper sanity bound, USD WAD decimal string' }),
|
|
442
|
+
__metadata("design:type", String)
|
|
443
|
+
], StellarUpdateAssetOracleEvent.prototype, "maxSanityPriceWad", void 0);
|
|
428
444
|
// ---------- topic: config:emode_category ----------
|
|
429
445
|
class StellarUpdateEModeCategoryEvent {
|
|
430
446
|
}
|