@ember-finance/sdk 1.0.23 → 1.0.24
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.
- package/dist/src/vaults/api/apis/vaults-api.d.ts +42 -4
- package/dist/src/vaults/api/apis/vaults-api.js +84 -7
- package/dist/src/vaults/api/models/apy-history-v2.d.ts +25 -1
- package/dist/src/vaults/api/models/index.d.ts +9 -0
- package/dist/src/vaults/api/models/index.js +9 -0
- package/dist/src/vaults/api/models/poc-report-asset.d.ts +54 -0
- package/dist/src/vaults/api/models/poc-report-asset.js +15 -0
- package/dist/src/vaults/api/models/poc-report-assets.d.ts +37 -0
- package/dist/src/vaults/api/models/poc-report-assets.js +15 -0
- package/dist/src/vaults/api/models/poc-report-exchange.d.ts +43 -0
- package/dist/src/vaults/api/models/poc-report-exchange.js +15 -0
- package/dist/src/vaults/api/models/poc-report-exchanges.d.ts +37 -0
- package/dist/src/vaults/api/models/poc-report-exchanges.js +15 -0
- package/dist/src/vaults/api/models/poc-report-protocol.d.ts +36 -0
- package/dist/src/vaults/api/models/poc-report-protocol.js +15 -0
- package/dist/src/vaults/api/models/poc-report-token.d.ts +36 -0
- package/dist/src/vaults/api/models/poc-report-token.js +15 -0
- package/dist/src/vaults/api/models/poc-report-wallet.d.ts +80 -0
- package/dist/src/vaults/api/models/poc-report-wallet.js +15 -0
- package/dist/src/vaults/api/models/poc-report-wallets.d.ts +37 -0
- package/dist/src/vaults/api/models/poc-report-wallets.js +15 -0
- package/dist/src/vaults/api/models/proof-of-capital-report.d.ts +69 -0
- package/dist/src/vaults/api/models/proof-of-capital-report.js +15 -0
- package/dist/src/vaults/api/models/vault-detail.d.ts +6 -0
- package/package.json +1 -1
|
@@ -20,6 +20,7 @@ import type { Fees } from "../models";
|
|
|
20
20
|
import type { HistoryInterval } from "../models";
|
|
21
21
|
import type { PnlHistory } from "../models";
|
|
22
22
|
import type { PnlHistoryInterval } from "../models";
|
|
23
|
+
import type { ProofOfCapitalReport } from "../models";
|
|
23
24
|
import type { ProtocolInfo } from "../models";
|
|
24
25
|
import type { RawEvent } from "../models";
|
|
25
26
|
import type { SharePriceHistory } from "../models";
|
|
@@ -125,6 +126,14 @@ export declare const VaultsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
125
126
|
* @throws {RequiredError}
|
|
126
127
|
*/
|
|
127
128
|
getVaultPnlHistory: (vaultId: string, limit?: number, interval?: PnlHistoryInterval, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
129
|
+
/**
|
|
130
|
+
*
|
|
131
|
+
* @summary Get the proof of capital of the vault
|
|
132
|
+
* @param {string} vaultId The id of the vault
|
|
133
|
+
* @param {*} [options] Override http request option.
|
|
134
|
+
* @throws {RequiredError}
|
|
135
|
+
*/
|
|
136
|
+
getVaultProofOfCapital: (vaultId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
128
137
|
/**
|
|
129
138
|
*
|
|
130
139
|
* @summary Get the share price history of the vault (1h, 1d, 1w, 1mon) descending by time
|
|
@@ -158,10 +167,11 @@ export declare const VaultsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
158
167
|
* @summary Get details for all vaults or a specific vault
|
|
159
168
|
* @param {string} [vaultId] The ID of the vault
|
|
160
169
|
* @param {string} [receiptCoinSymbol] The receipt coin symbol of the vault
|
|
170
|
+
* @param {boolean} [includeHidden] Whether to include hidden vaults
|
|
161
171
|
* @param {*} [options] Override http request option.
|
|
162
172
|
* @throws {RequiredError}
|
|
163
173
|
*/
|
|
164
|
-
getVaults: (vaultId?: string, receiptCoinSymbol?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
174
|
+
getVaults: (vaultId?: string, receiptCoinSymbol?: string, includeHidden?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
165
175
|
/**
|
|
166
176
|
*
|
|
167
177
|
* @summary Get protocol info to initialize sdk
|
|
@@ -281,6 +291,14 @@ export declare const VaultsApiFp: (configuration?: Configuration) => {
|
|
|
281
291
|
* @throws {RequiredError}
|
|
282
292
|
*/
|
|
283
293
|
getVaultPnlHistory(vaultId: string, limit?: number, interval?: PnlHistoryInterval, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PnlHistory>>>;
|
|
294
|
+
/**
|
|
295
|
+
*
|
|
296
|
+
* @summary Get the proof of capital of the vault
|
|
297
|
+
* @param {string} vaultId The id of the vault
|
|
298
|
+
* @param {*} [options] Override http request option.
|
|
299
|
+
* @throws {RequiredError}
|
|
300
|
+
*/
|
|
301
|
+
getVaultProofOfCapital(vaultId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProofOfCapitalReport>>;
|
|
284
302
|
/**
|
|
285
303
|
*
|
|
286
304
|
* @summary Get the share price history of the vault (1h, 1d, 1w, 1mon) descending by time
|
|
@@ -314,10 +332,11 @@ export declare const VaultsApiFp: (configuration?: Configuration) => {
|
|
|
314
332
|
* @summary Get details for all vaults or a specific vault
|
|
315
333
|
* @param {string} [vaultId] The ID of the vault
|
|
316
334
|
* @param {string} [receiptCoinSymbol] The receipt coin symbol of the vault
|
|
335
|
+
* @param {boolean} [includeHidden] Whether to include hidden vaults
|
|
317
336
|
* @param {*} [options] Override http request option.
|
|
318
337
|
* @throws {RequiredError}
|
|
319
338
|
*/
|
|
320
|
-
getVaults(vaultId?: string, receiptCoinSymbol?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<VaultDetail>>>;
|
|
339
|
+
getVaults(vaultId?: string, receiptCoinSymbol?: string, includeHidden?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<VaultDetail>>>;
|
|
321
340
|
/**
|
|
322
341
|
*
|
|
323
342
|
* @summary Get protocol info to initialize sdk
|
|
@@ -437,6 +456,14 @@ export declare const VaultsApiFactory: (configuration?: Configuration, basePath?
|
|
|
437
456
|
* @throws {RequiredError}
|
|
438
457
|
*/
|
|
439
458
|
getVaultPnlHistory(vaultId: string, limit?: number, interval?: PnlHistoryInterval, options?: RawAxiosRequestConfig): AxiosPromise<Array<PnlHistory>>;
|
|
459
|
+
/**
|
|
460
|
+
*
|
|
461
|
+
* @summary Get the proof of capital of the vault
|
|
462
|
+
* @param {string} vaultId The id of the vault
|
|
463
|
+
* @param {*} [options] Override http request option.
|
|
464
|
+
* @throws {RequiredError}
|
|
465
|
+
*/
|
|
466
|
+
getVaultProofOfCapital(vaultId: string, options?: RawAxiosRequestConfig): AxiosPromise<ProofOfCapitalReport>;
|
|
440
467
|
/**
|
|
441
468
|
*
|
|
442
469
|
* @summary Get the share price history of the vault (1h, 1d, 1w, 1mon) descending by time
|
|
@@ -470,10 +497,11 @@ export declare const VaultsApiFactory: (configuration?: Configuration, basePath?
|
|
|
470
497
|
* @summary Get details for all vaults or a specific vault
|
|
471
498
|
* @param {string} [vaultId] The ID of the vault
|
|
472
499
|
* @param {string} [receiptCoinSymbol] The receipt coin symbol of the vault
|
|
500
|
+
* @param {boolean} [includeHidden] Whether to include hidden vaults
|
|
473
501
|
* @param {*} [options] Override http request option.
|
|
474
502
|
* @throws {RequiredError}
|
|
475
503
|
*/
|
|
476
|
-
getVaults(vaultId?: string, receiptCoinSymbol?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<VaultDetail>>;
|
|
504
|
+
getVaults(vaultId?: string, receiptCoinSymbol?: string, includeHidden?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Array<VaultDetail>>;
|
|
477
505
|
/**
|
|
478
506
|
*
|
|
479
507
|
* @summary Get protocol info to initialize sdk
|
|
@@ -605,6 +633,15 @@ export declare class VaultsApi extends BaseAPI {
|
|
|
605
633
|
* @memberof VaultsApi
|
|
606
634
|
*/
|
|
607
635
|
getVaultPnlHistory(vaultId: string, limit?: number, interval?: PnlHistoryInterval, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PnlHistory[], any, {}>>;
|
|
636
|
+
/**
|
|
637
|
+
*
|
|
638
|
+
* @summary Get the proof of capital of the vault
|
|
639
|
+
* @param {string} vaultId The id of the vault
|
|
640
|
+
* @param {*} [options] Override http request option.
|
|
641
|
+
* @throws {RequiredError}
|
|
642
|
+
* @memberof VaultsApi
|
|
643
|
+
*/
|
|
644
|
+
getVaultProofOfCapital(vaultId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProofOfCapitalReport, any, {}>>;
|
|
608
645
|
/**
|
|
609
646
|
*
|
|
610
647
|
* @summary Get the share price history of the vault (1h, 1d, 1w, 1mon) descending by time
|
|
@@ -641,11 +678,12 @@ export declare class VaultsApi extends BaseAPI {
|
|
|
641
678
|
* @summary Get details for all vaults or a specific vault
|
|
642
679
|
* @param {string} [vaultId] The ID of the vault
|
|
643
680
|
* @param {string} [receiptCoinSymbol] The receipt coin symbol of the vault
|
|
681
|
+
* @param {boolean} [includeHidden] Whether to include hidden vaults
|
|
644
682
|
* @param {*} [options] Override http request option.
|
|
645
683
|
* @throws {RequiredError}
|
|
646
684
|
* @memberof VaultsApi
|
|
647
685
|
*/
|
|
648
|
-
getVaults(vaultId?: string, receiptCoinSymbol?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VaultDetail[], any, {}>>;
|
|
686
|
+
getVaults(vaultId?: string, receiptCoinSymbol?: string, includeHidden?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VaultDetail[], any, {}>>;
|
|
649
687
|
/**
|
|
650
688
|
*
|
|
651
689
|
* @summary Get protocol info to initialize sdk
|
|
@@ -405,6 +405,38 @@ const VaultsApiAxiosParamCreator = function (configuration) {
|
|
|
405
405
|
options: localVarRequestOptions
|
|
406
406
|
};
|
|
407
407
|
},
|
|
408
|
+
/**
|
|
409
|
+
*
|
|
410
|
+
* @summary Get the proof of capital of the vault
|
|
411
|
+
* @param {string} vaultId The id of the vault
|
|
412
|
+
* @param {*} [options] Override http request option.
|
|
413
|
+
* @throws {RequiredError}
|
|
414
|
+
*/
|
|
415
|
+
getVaultProofOfCapital: async (vaultId, options = {}) => {
|
|
416
|
+
// verify required parameter 'vaultId' is not null or undefined
|
|
417
|
+
(0, common_1.assertParamExists)("getVaultProofOfCapital", "vaultId", vaultId);
|
|
418
|
+
const localVarPath = `/api/v1/vaults/poc/{vaultId}`.replace(`{${"vaultId"}}`, encodeURIComponent(String(vaultId)));
|
|
419
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
420
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
421
|
+
let baseOptions;
|
|
422
|
+
if (configuration) {
|
|
423
|
+
baseOptions = configuration.baseOptions;
|
|
424
|
+
}
|
|
425
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
426
|
+
const localVarHeaderParameter = {};
|
|
427
|
+
const localVarQueryParameter = {};
|
|
428
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
429
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
430
|
+
localVarRequestOptions.headers = {
|
|
431
|
+
...localVarHeaderParameter,
|
|
432
|
+
...headersFromBaseOptions,
|
|
433
|
+
...options.headers
|
|
434
|
+
};
|
|
435
|
+
return {
|
|
436
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
437
|
+
options: localVarRequestOptions
|
|
438
|
+
};
|
|
439
|
+
},
|
|
408
440
|
/**
|
|
409
441
|
*
|
|
410
442
|
* @summary Get the share price history of the vault (1h, 1d, 1w, 1mon) descending by time
|
|
@@ -522,10 +554,11 @@ const VaultsApiAxiosParamCreator = function (configuration) {
|
|
|
522
554
|
* @summary Get details for all vaults or a specific vault
|
|
523
555
|
* @param {string} [vaultId] The ID of the vault
|
|
524
556
|
* @param {string} [receiptCoinSymbol] The receipt coin symbol of the vault
|
|
557
|
+
* @param {boolean} [includeHidden] Whether to include hidden vaults
|
|
525
558
|
* @param {*} [options] Override http request option.
|
|
526
559
|
* @throws {RequiredError}
|
|
527
560
|
*/
|
|
528
|
-
getVaults: async (vaultId, receiptCoinSymbol, options = {}) => {
|
|
561
|
+
getVaults: async (vaultId, receiptCoinSymbol, includeHidden, options = {}) => {
|
|
529
562
|
const localVarPath = `/api/v1/vaults`;
|
|
530
563
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
531
564
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -542,6 +575,9 @@ const VaultsApiAxiosParamCreator = function (configuration) {
|
|
|
542
575
|
if (receiptCoinSymbol !== undefined) {
|
|
543
576
|
localVarQueryParameter["receiptCoinSymbol"] = receiptCoinSymbol;
|
|
544
577
|
}
|
|
578
|
+
if (includeHidden !== undefined) {
|
|
579
|
+
localVarQueryParameter["includeHidden"] = includeHidden;
|
|
580
|
+
}
|
|
545
581
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
546
582
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
547
583
|
localVarRequestOptions.headers = {
|
|
@@ -799,6 +835,19 @@ const VaultsApiFp = function (configuration) {
|
|
|
799
835
|
const localVarOperationServerBasePath = base_1.operationServerMap["VaultsApi.getVaultPnlHistory"]?.[localVarOperationServerIndex]?.url;
|
|
800
836
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
801
837
|
},
|
|
838
|
+
/**
|
|
839
|
+
*
|
|
840
|
+
* @summary Get the proof of capital of the vault
|
|
841
|
+
* @param {string} vaultId The id of the vault
|
|
842
|
+
* @param {*} [options] Override http request option.
|
|
843
|
+
* @throws {RequiredError}
|
|
844
|
+
*/
|
|
845
|
+
async getVaultProofOfCapital(vaultId, options) {
|
|
846
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVaultProofOfCapital(vaultId, options);
|
|
847
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
848
|
+
const localVarOperationServerBasePath = base_1.operationServerMap["VaultsApi.getVaultProofOfCapital"]?.[localVarOperationServerIndex]?.url;
|
|
849
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
850
|
+
},
|
|
802
851
|
/**
|
|
803
852
|
*
|
|
804
853
|
* @summary Get the share price history of the vault (1h, 1d, 1w, 1mon) descending by time
|
|
@@ -847,11 +896,12 @@ const VaultsApiFp = function (configuration) {
|
|
|
847
896
|
* @summary Get details for all vaults or a specific vault
|
|
848
897
|
* @param {string} [vaultId] The ID of the vault
|
|
849
898
|
* @param {string} [receiptCoinSymbol] The receipt coin symbol of the vault
|
|
899
|
+
* @param {boolean} [includeHidden] Whether to include hidden vaults
|
|
850
900
|
* @param {*} [options] Override http request option.
|
|
851
901
|
* @throws {RequiredError}
|
|
852
902
|
*/
|
|
853
|
-
async getVaults(vaultId, receiptCoinSymbol, options) {
|
|
854
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getVaults(vaultId, receiptCoinSymbol, options);
|
|
903
|
+
async getVaults(vaultId, receiptCoinSymbol, includeHidden, options) {
|
|
904
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVaults(vaultId, receiptCoinSymbol, includeHidden, options);
|
|
855
905
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
856
906
|
const localVarOperationServerBasePath = base_1.operationServerMap["VaultsApi.getVaults"]?.[localVarOperationServerIndex]
|
|
857
907
|
?.url;
|
|
@@ -1035,6 +1085,18 @@ const VaultsApiFactory = function (configuration, basePath, axios) {
|
|
|
1035
1085
|
.getVaultPnlHistory(vaultId, limit, interval, options)
|
|
1036
1086
|
.then(request => request(axios, basePath));
|
|
1037
1087
|
},
|
|
1088
|
+
/**
|
|
1089
|
+
*
|
|
1090
|
+
* @summary Get the proof of capital of the vault
|
|
1091
|
+
* @param {string} vaultId The id of the vault
|
|
1092
|
+
* @param {*} [options] Override http request option.
|
|
1093
|
+
* @throws {RequiredError}
|
|
1094
|
+
*/
|
|
1095
|
+
getVaultProofOfCapital(vaultId, options) {
|
|
1096
|
+
return localVarFp
|
|
1097
|
+
.getVaultProofOfCapital(vaultId, options)
|
|
1098
|
+
.then(request => request(axios, basePath));
|
|
1099
|
+
},
|
|
1038
1100
|
/**
|
|
1039
1101
|
*
|
|
1040
1102
|
* @summary Get the share price history of the vault (1h, 1d, 1w, 1mon) descending by time
|
|
@@ -1080,12 +1142,13 @@ const VaultsApiFactory = function (configuration, basePath, axios) {
|
|
|
1080
1142
|
* @summary Get details for all vaults or a specific vault
|
|
1081
1143
|
* @param {string} [vaultId] The ID of the vault
|
|
1082
1144
|
* @param {string} [receiptCoinSymbol] The receipt coin symbol of the vault
|
|
1145
|
+
* @param {boolean} [includeHidden] Whether to include hidden vaults
|
|
1083
1146
|
* @param {*} [options] Override http request option.
|
|
1084
1147
|
* @throws {RequiredError}
|
|
1085
1148
|
*/
|
|
1086
|
-
getVaults(vaultId, receiptCoinSymbol, options) {
|
|
1149
|
+
getVaults(vaultId, receiptCoinSymbol, includeHidden, options) {
|
|
1087
1150
|
return localVarFp
|
|
1088
|
-
.getVaults(vaultId, receiptCoinSymbol, options)
|
|
1151
|
+
.getVaults(vaultId, receiptCoinSymbol, includeHidden, options)
|
|
1089
1152
|
.then(request => request(axios, basePath));
|
|
1090
1153
|
},
|
|
1091
1154
|
/**
|
|
@@ -1273,6 +1336,19 @@ class VaultsApi extends base_1.BaseAPI {
|
|
|
1273
1336
|
.getVaultPnlHistory(vaultId, limit, interval, options)
|
|
1274
1337
|
.then(request => request(this.axios, this.basePath));
|
|
1275
1338
|
}
|
|
1339
|
+
/**
|
|
1340
|
+
*
|
|
1341
|
+
* @summary Get the proof of capital of the vault
|
|
1342
|
+
* @param {string} vaultId The id of the vault
|
|
1343
|
+
* @param {*} [options] Override http request option.
|
|
1344
|
+
* @throws {RequiredError}
|
|
1345
|
+
* @memberof VaultsApi
|
|
1346
|
+
*/
|
|
1347
|
+
getVaultProofOfCapital(vaultId, options) {
|
|
1348
|
+
return (0, exports.VaultsApiFp)(this.configuration)
|
|
1349
|
+
.getVaultProofOfCapital(vaultId, options)
|
|
1350
|
+
.then(request => request(this.axios, this.basePath));
|
|
1351
|
+
}
|
|
1276
1352
|
/**
|
|
1277
1353
|
*
|
|
1278
1354
|
* @summary Get the share price history of the vault (1h, 1d, 1w, 1mon) descending by time
|
|
@@ -1321,13 +1397,14 @@ class VaultsApi extends base_1.BaseAPI {
|
|
|
1321
1397
|
* @summary Get details for all vaults or a specific vault
|
|
1322
1398
|
* @param {string} [vaultId] The ID of the vault
|
|
1323
1399
|
* @param {string} [receiptCoinSymbol] The receipt coin symbol of the vault
|
|
1400
|
+
* @param {boolean} [includeHidden] Whether to include hidden vaults
|
|
1324
1401
|
* @param {*} [options] Override http request option.
|
|
1325
1402
|
* @throws {RequiredError}
|
|
1326
1403
|
* @memberof VaultsApi
|
|
1327
1404
|
*/
|
|
1328
|
-
getVaults(vaultId, receiptCoinSymbol, options) {
|
|
1405
|
+
getVaults(vaultId, receiptCoinSymbol, includeHidden, options) {
|
|
1329
1406
|
return (0, exports.VaultsApiFp)(this.configuration)
|
|
1330
|
-
.getVaults(vaultId, receiptCoinSymbol, options)
|
|
1407
|
+
.getVaults(vaultId, receiptCoinSymbol, includeHidden, options)
|
|
1331
1408
|
.then(request => request(this.axios, this.basePath));
|
|
1332
1409
|
}
|
|
1333
1410
|
/**
|
|
@@ -41,7 +41,31 @@ export interface ApyHistoryV2 {
|
|
|
41
41
|
*/
|
|
42
42
|
avg90dTotalApyE9: string;
|
|
43
43
|
/**
|
|
44
|
-
* The
|
|
44
|
+
* The average deposit (vault supply) apy of the vault over the last 7 days
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof ApyHistoryV2
|
|
47
|
+
*/
|
|
48
|
+
avg7dDepositApyE9: string;
|
|
49
|
+
/**
|
|
50
|
+
* The average deposit (vault supply) apy of the vault over the last 30 days
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof ApyHistoryV2
|
|
53
|
+
*/
|
|
54
|
+
avg30dDepositApyE9: string;
|
|
55
|
+
/**
|
|
56
|
+
* The average deposit (vault supply) apy of the vault over the last 60 days
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof ApyHistoryV2
|
|
59
|
+
*/
|
|
60
|
+
avg60dDepositApyE9: string;
|
|
61
|
+
/**
|
|
62
|
+
* The average deposit (vault supply) apy of the vault over the last 90 days
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof ApyHistoryV2
|
|
65
|
+
*/
|
|
66
|
+
avg90dDepositApyE9: string;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
45
69
|
* @type {Array<ApyHistory>}
|
|
46
70
|
* @memberof ApyHistoryV2
|
|
47
71
|
*/
|
|
@@ -21,11 +21,20 @@ export * from "./min-withdrawal-shares-updated-event";
|
|
|
21
21
|
export * from "./perps";
|
|
22
22
|
export * from "./pnl-history";
|
|
23
23
|
export * from "./pnl-history-interval";
|
|
24
|
+
export * from "./poc-report-asset";
|
|
25
|
+
export * from "./poc-report-assets";
|
|
26
|
+
export * from "./poc-report-exchange";
|
|
27
|
+
export * from "./poc-report-exchanges";
|
|
28
|
+
export * from "./poc-report-protocol";
|
|
29
|
+
export * from "./poc-report-token";
|
|
30
|
+
export * from "./poc-report-wallet";
|
|
31
|
+
export * from "./poc-report-wallets";
|
|
24
32
|
export * from "./position";
|
|
25
33
|
export * from "./position-history";
|
|
26
34
|
export * from "./position-history-interval";
|
|
27
35
|
export * from "./position-value";
|
|
28
36
|
export * from "./process-requests-summary-event";
|
|
37
|
+
export * from "./proof-of-capital-report";
|
|
29
38
|
export * from "./protocol";
|
|
30
39
|
export * from "./protocol-fee-collected-event";
|
|
31
40
|
export * from "./protocol-info";
|
|
@@ -37,11 +37,20 @@ __exportStar(require("./min-withdrawal-shares-updated-event"), exports);
|
|
|
37
37
|
__exportStar(require("./perps"), exports);
|
|
38
38
|
__exportStar(require("./pnl-history"), exports);
|
|
39
39
|
__exportStar(require("./pnl-history-interval"), exports);
|
|
40
|
+
__exportStar(require("./poc-report-asset"), exports);
|
|
41
|
+
__exportStar(require("./poc-report-assets"), exports);
|
|
42
|
+
__exportStar(require("./poc-report-exchange"), exports);
|
|
43
|
+
__exportStar(require("./poc-report-exchanges"), exports);
|
|
44
|
+
__exportStar(require("./poc-report-protocol"), exports);
|
|
45
|
+
__exportStar(require("./poc-report-token"), exports);
|
|
46
|
+
__exportStar(require("./poc-report-wallet"), exports);
|
|
47
|
+
__exportStar(require("./poc-report-wallets"), exports);
|
|
40
48
|
__exportStar(require("./position"), exports);
|
|
41
49
|
__exportStar(require("./position-history"), exports);
|
|
42
50
|
__exportStar(require("./position-history-interval"), exports);
|
|
43
51
|
__exportStar(require("./position-value"), exports);
|
|
44
52
|
__exportStar(require("./process-requests-summary-event"), exports);
|
|
53
|
+
__exportStar(require("./proof-of-capital-report"), exports);
|
|
45
54
|
__exportStar(require("./protocol"), exports);
|
|
46
55
|
__exportStar(require("./protocol-fee-collected-event"), exports);
|
|
47
56
|
__exportStar(require("./protocol-info"), exports);
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ember Protocol Vaults API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PocReportAsset
|
|
16
|
+
*/
|
|
17
|
+
export interface PocReportAsset {
|
|
18
|
+
/**
|
|
19
|
+
* The holding name or identifier (e.g., Ethereum)
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PocReportAsset
|
|
22
|
+
*/
|
|
23
|
+
name: string;
|
|
24
|
+
/**
|
|
25
|
+
* The asset symbol (e.g., ETH, USDC)
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PocReportAsset
|
|
28
|
+
*/
|
|
29
|
+
symbol: string;
|
|
30
|
+
/**
|
|
31
|
+
* The blockchain network
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PocReportAsset
|
|
34
|
+
*/
|
|
35
|
+
chain: string;
|
|
36
|
+
/**
|
|
37
|
+
* The wallet or contract address
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof PocReportAsset
|
|
40
|
+
*/
|
|
41
|
+
address: string;
|
|
42
|
+
/**
|
|
43
|
+
* The value in e9 USD
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof PocReportAsset
|
|
46
|
+
*/
|
|
47
|
+
valueUsdE9: string;
|
|
48
|
+
/**
|
|
49
|
+
* The percentage of total TVL in e9
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof PocReportAsset
|
|
52
|
+
*/
|
|
53
|
+
percentageE9: string;
|
|
54
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Ember Protocol Vaults API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ember Protocol Vaults API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { PocReportAsset } from "./poc-report-asset";
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface PocReportAssets
|
|
17
|
+
*/
|
|
18
|
+
export interface PocReportAssets {
|
|
19
|
+
/**
|
|
20
|
+
* The total value of this category in e9 USD
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof PocReportAssets
|
|
23
|
+
*/
|
|
24
|
+
valueUsdE9: string;
|
|
25
|
+
/**
|
|
26
|
+
* The percentage of total TVL in e9 (e.g., 1500000 = 0.15%)
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof PocReportAssets
|
|
29
|
+
*/
|
|
30
|
+
percentageE9: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Array<PocReportAsset>}
|
|
34
|
+
* @memberof PocReportAssets
|
|
35
|
+
*/
|
|
36
|
+
assets: Array<PocReportAsset>;
|
|
37
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Ember Protocol Vaults API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ember Protocol Vaults API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { PocReportToken } from "./poc-report-token";
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface PocReportExchange
|
|
17
|
+
*/
|
|
18
|
+
export interface PocReportExchange {
|
|
19
|
+
/**
|
|
20
|
+
* The exchange name (e.g., Bybit, Hyperliquid, OKX)
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof PocReportExchange
|
|
23
|
+
*/
|
|
24
|
+
exchange: string;
|
|
25
|
+
/**
|
|
26
|
+
* The total value in e9 USD
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof PocReportExchange
|
|
29
|
+
*/
|
|
30
|
+
valueUsdE9: string;
|
|
31
|
+
/**
|
|
32
|
+
* The percentage of total TVL in e9 (e.g., 130700000 = 13.07%)
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof PocReportExchange
|
|
35
|
+
*/
|
|
36
|
+
percentageE9: string;
|
|
37
|
+
/**
|
|
38
|
+
* Optional breakdown of holdings on this exchange
|
|
39
|
+
* @type {Array<PocReportToken>}
|
|
40
|
+
* @memberof PocReportExchange
|
|
41
|
+
*/
|
|
42
|
+
tokens?: Array<PocReportToken>;
|
|
43
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Ember Protocol Vaults API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ember Protocol Vaults API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { PocReportExchange } from "./poc-report-exchange";
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface PocReportExchanges
|
|
17
|
+
*/
|
|
18
|
+
export interface PocReportExchanges {
|
|
19
|
+
/**
|
|
20
|
+
* The total value of this category in e9 USD
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof PocReportExchanges
|
|
23
|
+
*/
|
|
24
|
+
valueUsdE9: string;
|
|
25
|
+
/**
|
|
26
|
+
* The percentage of total TVL in e9 (e.g., 154400000 = 15.44%)
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof PocReportExchanges
|
|
29
|
+
*/
|
|
30
|
+
percentageE9: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Array<PocReportExchange>}
|
|
34
|
+
* @memberof PocReportExchanges
|
|
35
|
+
*/
|
|
36
|
+
exchanges: Array<PocReportExchange>;
|
|
37
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Ember Protocol Vaults API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ember Protocol Vaults API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PocReportProtocol
|
|
16
|
+
*/
|
|
17
|
+
export interface PocReportProtocol {
|
|
18
|
+
/**
|
|
19
|
+
* The protocol name
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PocReportProtocol
|
|
22
|
+
*/
|
|
23
|
+
name: string;
|
|
24
|
+
/**
|
|
25
|
+
* The value in e9 USD
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PocReportProtocol
|
|
28
|
+
*/
|
|
29
|
+
valueUsdE9: string;
|
|
30
|
+
/**
|
|
31
|
+
* The percentage of total TVL in e9
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PocReportProtocol
|
|
34
|
+
*/
|
|
35
|
+
percentageE9: string;
|
|
36
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Ember Protocol Vaults API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ember Protocol Vaults API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PocReportToken
|
|
16
|
+
*/
|
|
17
|
+
export interface PocReportToken {
|
|
18
|
+
/**
|
|
19
|
+
* The token name
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PocReportToken
|
|
22
|
+
*/
|
|
23
|
+
name: string;
|
|
24
|
+
/**
|
|
25
|
+
* The value in e9 USD
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PocReportToken
|
|
28
|
+
*/
|
|
29
|
+
valueUsdE9: string;
|
|
30
|
+
/**
|
|
31
|
+
* The percentage of total TVL in e9
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PocReportToken
|
|
34
|
+
*/
|
|
35
|
+
percentageE9: string;
|
|
36
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Ember Protocol Vaults API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ember Protocol Vaults API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { PocReportProtocol } from "./poc-report-protocol";
|
|
13
|
+
import type { PocReportToken } from "./poc-report-token";
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface PocReportWallet
|
|
18
|
+
*/
|
|
19
|
+
export interface PocReportWallet {
|
|
20
|
+
/**
|
|
21
|
+
* The custodian or wallet name (e.g., Fireblocks 1, Flare)
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof PocReportWallet
|
|
24
|
+
*/
|
|
25
|
+
name: string;
|
|
26
|
+
/**
|
|
27
|
+
* The blockchain network identifier (e.g., ethereum, sui)
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof PocReportWallet
|
|
30
|
+
*/
|
|
31
|
+
chain: string;
|
|
32
|
+
/**
|
|
33
|
+
* The human-readable blockchain name (e.g., Ethereum, Sui)
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof PocReportWallet
|
|
36
|
+
*/
|
|
37
|
+
chainName: string;
|
|
38
|
+
/**
|
|
39
|
+
* The wallet address
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof PocReportWallet
|
|
42
|
+
*/
|
|
43
|
+
address: string;
|
|
44
|
+
/**
|
|
45
|
+
* The name of the blockchain explorer (e.g., Debank, Etherscan)
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof PocReportWallet
|
|
48
|
+
*/
|
|
49
|
+
explorerName?: string;
|
|
50
|
+
/**
|
|
51
|
+
* URL to view the wallet on a blockchain explorer
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof PocReportWallet
|
|
54
|
+
*/
|
|
55
|
+
explorerUrl?: string;
|
|
56
|
+
/**
|
|
57
|
+
* The total value in e9 USD
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof PocReportWallet
|
|
60
|
+
*/
|
|
61
|
+
valueUsdE9: string;
|
|
62
|
+
/**
|
|
63
|
+
* The percentage of total TVL in e9 (e.g., 478000000 = 47.80%)
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof PocReportWallet
|
|
66
|
+
*/
|
|
67
|
+
percentageE9: string;
|
|
68
|
+
/**
|
|
69
|
+
* Optional breakdown of tokens within this wallet
|
|
70
|
+
* @type {Array<PocReportToken>}
|
|
71
|
+
* @memberof PocReportWallet
|
|
72
|
+
*/
|
|
73
|
+
tokens?: Array<PocReportToken>;
|
|
74
|
+
/**
|
|
75
|
+
* Optional breakdown of protocol positions within this wallet
|
|
76
|
+
* @type {Array<PocReportProtocol>}
|
|
77
|
+
* @memberof PocReportWallet
|
|
78
|
+
*/
|
|
79
|
+
protocols?: Array<PocReportProtocol>;
|
|
80
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Ember Protocol Vaults API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ember Protocol Vaults API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { PocReportWallet } from "./poc-report-wallet";
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface PocReportWallets
|
|
17
|
+
*/
|
|
18
|
+
export interface PocReportWallets {
|
|
19
|
+
/**
|
|
20
|
+
* The total value of this category in e9 USD
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof PocReportWallets
|
|
23
|
+
*/
|
|
24
|
+
valueUsdE9: string;
|
|
25
|
+
/**
|
|
26
|
+
* The percentage of total TVL in e9 (e.g., 844100000 = 84.41%)
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof PocReportWallets
|
|
29
|
+
*/
|
|
30
|
+
percentageE9: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Array<PocReportWallet>}
|
|
34
|
+
* @memberof PocReportWallets
|
|
35
|
+
*/
|
|
36
|
+
wallets: Array<PocReportWallet>;
|
|
37
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Ember Protocol Vaults API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ember Protocol Vaults API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { PocReportAssets } from "./poc-report-assets";
|
|
13
|
+
import type { PocReportExchanges } from "./poc-report-exchanges";
|
|
14
|
+
import type { PocReportWallets } from "./poc-report-wallets";
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface ProofOfCapitalReport
|
|
19
|
+
*/
|
|
20
|
+
export interface ProofOfCapitalReport {
|
|
21
|
+
/**
|
|
22
|
+
* The timestamp of the report in milliseconds
|
|
23
|
+
* @type {number}
|
|
24
|
+
* @memberof ProofOfCapitalReport
|
|
25
|
+
*/
|
|
26
|
+
generatedAt: number;
|
|
27
|
+
/**
|
|
28
|
+
* The system NAV in e9 USD
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof ProofOfCapitalReport
|
|
31
|
+
*/
|
|
32
|
+
systemNavUsdE9: string;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {PocReportWallets}
|
|
36
|
+
* @memberof ProofOfCapitalReport
|
|
37
|
+
*/
|
|
38
|
+
wallets: PocReportWallets;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {PocReportExchanges}
|
|
42
|
+
* @memberof ProofOfCapitalReport
|
|
43
|
+
*/
|
|
44
|
+
exchanges: PocReportExchanges;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {PocReportAssets}
|
|
48
|
+
* @memberof ProofOfCapitalReport
|
|
49
|
+
*/
|
|
50
|
+
awaitingDeploymentAssets: PocReportAssets;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {PocReportAssets}
|
|
54
|
+
* @memberof ProofOfCapitalReport
|
|
55
|
+
*/
|
|
56
|
+
reservedForLiquidityBuffer: PocReportAssets;
|
|
57
|
+
/**
|
|
58
|
+
* The total withdrawable value in e9 USD
|
|
59
|
+
* @type {string}
|
|
60
|
+
* @memberof ProofOfCapitalReport
|
|
61
|
+
*/
|
|
62
|
+
totalWithdrawableUsdE9: string;
|
|
63
|
+
/**
|
|
64
|
+
* The health ratio of the vault
|
|
65
|
+
* @type {string}
|
|
66
|
+
* @memberof ProofOfCapitalReport
|
|
67
|
+
*/
|
|
68
|
+
healthRatio: string;
|
|
69
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Ember Protocol Vaults API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -202,6 +202,12 @@ export interface VaultDetail {
|
|
|
202
202
|
* @memberof VaultDetail
|
|
203
203
|
*/
|
|
204
204
|
minWithdrawalSharesE9: string;
|
|
205
|
+
/**
|
|
206
|
+
* The minimum withdrawal shares of the vault in token decimals
|
|
207
|
+
* @type {string}
|
|
208
|
+
* @memberof VaultDetail
|
|
209
|
+
*/
|
|
210
|
+
minWithdrawalShares: string;
|
|
205
211
|
}
|
|
206
212
|
export declare const VaultDetailStatusEnum: {
|
|
207
213
|
readonly Active: "active";
|