@ember-finance/sdk 1.0.25 → 1.0.26
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/v2/api.d.ts +13 -0
- package/dist/src/vaults/api/v2/api.js +31 -0
- package/dist/src/vaults/api/v2/apis/accounts-api.d.ts +351 -0
- package/dist/src/vaults/api/v2/apis/accounts-api.js +656 -0
- package/dist/src/vaults/api/v2/apis/vaults-api.d.ts +570 -0
- package/dist/src/vaults/api/v2/apis/vaults-api.js +1150 -0
- package/dist/src/vaults/api/v2/base.d.ts +66 -0
- package/dist/src/vaults/api/v2/base.js +66 -0
- package/dist/src/vaults/api/v2/common.d.ts +65 -0
- package/dist/src/vaults/api/v2/common.js +152 -0
- package/dist/src/vaults/api/v2/configuration.d.ts +91 -0
- package/dist/src/vaults/api/v2/configuration.js +49 -0
- package/dist/src/vaults/api/v2/index.d.ts +14 -0
- package/dist/src/vaults/api/v2/index.js +32 -0
- package/dist/src/vaults/api/v2/models/account-transaction-transaction-data.d.ts +22 -0
- package/dist/src/vaults/api/v2/models/account-transaction-transaction-data.js +15 -0
- package/dist/src/vaults/api/v2/models/account-transaction.d.ts +45 -0
- package/dist/src/vaults/api/v2/models/account-transaction.js +23 -0
- package/dist/src/vaults/api/v2/models/account-vault-position-history.d.ts +89 -0
- package/dist/src/vaults/api/v2/models/account-vault-position-history.js +20 -0
- package/dist/src/vaults/api/v2/models/account-withdrawal-request.d.ts +107 -0
- package/dist/src/vaults/api/v2/models/account-withdrawal-request.js +24 -0
- package/dist/src/vaults/api/v2/models/aggregated-account-position-history.d.ts +59 -0
- package/dist/src/vaults/api/v2/models/aggregated-account-position-history.js +20 -0
- package/dist/src/vaults/api/v2/models/apy-history-response.d.ts +73 -0
- package/dist/src/vaults/api/v2/models/apy-history-response.js +15 -0
- package/dist/src/vaults/api/v2/models/apy-history.d.ts +42 -0
- package/dist/src/vaults/api/v2/models/apy-history.js +15 -0
- package/dist/src/vaults/api/v2/models/asset.d.ts +66 -0
- package/dist/src/vaults/api/v2/models/asset.js +15 -0
- package/dist/src/vaults/api/v2/models/borrowed.d.ts +43 -0
- package/dist/src/vaults/api/v2/models/borrowed.js +15 -0
- package/dist/src/vaults/api/v2/models/chain-vault-details.d.ts +74 -0
- package/dist/src/vaults/api/v2/models/chain-vault-details.js +15 -0
- package/dist/src/vaults/api/v2/models/chain.d.ts +60 -0
- package/dist/src/vaults/api/v2/models/chain.js +21 -0
- package/dist/src/vaults/api/v2/models/coin-price.d.ts +36 -0
- package/dist/src/vaults/api/v2/models/coin-price.js +15 -0
- package/dist/src/vaults/api/v2/models/deposit-transaction.d.ts +68 -0
- package/dist/src/vaults/api/v2/models/deposit-transaction.js +15 -0
- package/dist/src/vaults/api/v2/models/ember-position.d.ts +31 -0
- package/dist/src/vaults/api/v2/models/ember-position.js +15 -0
- package/dist/src/vaults/api/v2/models/evm-contracts.d.ts +61 -0
- package/dist/src/vaults/api/v2/models/evm-contracts.js +15 -0
- package/dist/src/vaults/api/v2/models/evm-deposit-token.d.ts +66 -0
- package/dist/src/vaults/api/v2/models/evm-deposit-token.js +15 -0
- package/dist/src/vaults/api/v2/models/evm-price-feed.d.ts +54 -0
- package/dist/src/vaults/api/v2/models/evm-price-feed.js +15 -0
- package/dist/src/vaults/api/v2/models/evm-protocol-config.d.ts +48 -0
- package/dist/src/vaults/api/v2/models/evm-protocol-config.js +15 -0
- package/dist/src/vaults/api/v2/models/evm-protocol-info.d.ts +37 -0
- package/dist/src/vaults/api/v2/models/evm-protocol-info.js +15 -0
- package/dist/src/vaults/api/v2/models/evm-receipt-token.d.ts +72 -0
- package/dist/src/vaults/api/v2/models/evm-receipt-token.js +15 -0
- package/dist/src/vaults/api/v2/models/evm-vault.d.ts +114 -0
- package/dist/src/vaults/api/v2/models/evm-vault.js +15 -0
- package/dist/src/vaults/api/v2/models/exposure-coin.d.ts +37 -0
- package/dist/src/vaults/api/v2/models/exposure-coin.js +15 -0
- package/dist/src/vaults/api/v2/models/exposure-protocol.d.ts +66 -0
- package/dist/src/vaults/api/v2/models/exposure-protocol.js +15 -0
- package/dist/src/vaults/api/v2/models/exposure.d.ts +38 -0
- package/dist/src/vaults/api/v2/models/exposure.js +15 -0
- package/dist/src/vaults/api/v2/models/fee.d.ts +37 -0
- package/dist/src/vaults/api/v2/models/fee.js +15 -0
- package/dist/src/vaults/api/v2/models/fees.d.ts +42 -0
- package/dist/src/vaults/api/v2/models/fees.js +15 -0
- package/dist/src/vaults/api/v2/models/history-interval.d.ts +23 -0
- package/dist/src/vaults/api/v2/models/history-interval.js +27 -0
- package/dist/src/vaults/api/v2/models/index.d.ts +94 -0
- package/dist/src/vaults/api/v2/models/index.js +110 -0
- package/dist/src/vaults/api/v2/models/lp.d.ts +81 -0
- package/dist/src/vaults/api/v2/models/lp.js +15 -0
- package/dist/src/vaults/api/v2/models/manager.d.ts +42 -0
- package/dist/src/vaults/api/v2/models/manager.js +15 -0
- package/dist/src/vaults/api/v2/models/min-withdrawal-shares-updated-event.d.ts +42 -0
- package/dist/src/vaults/api/v2/models/min-withdrawal-shares-updated-event.js +15 -0
- package/dist/src/vaults/api/v2/models/perps.d.ts +31 -0
- package/dist/src/vaults/api/v2/models/perps.js +15 -0
- package/dist/src/vaults/api/v2/models/pnl-by-chain.d.ts +48 -0
- package/dist/src/vaults/api/v2/models/pnl-by-chain.js +15 -0
- package/dist/src/vaults/api/v2/models/pnl-history-interval.d.ts +22 -0
- package/dist/src/vaults/api/v2/models/pnl-history-interval.js +26 -0
- package/dist/src/vaults/api/v2/models/pnl-history.d.ts +48 -0
- package/dist/src/vaults/api/v2/models/pnl-history.js +15 -0
- package/dist/src/vaults/api/v2/models/poc-report-asset.d.ts +54 -0
- package/dist/src/vaults/api/v2/models/poc-report-asset.js +15 -0
- package/dist/src/vaults/api/v2/models/poc-report-assets.d.ts +37 -0
- package/dist/src/vaults/api/v2/models/poc-report-assets.js +15 -0
- package/dist/src/vaults/api/v2/models/poc-report-exchange.d.ts +43 -0
- package/dist/src/vaults/api/v2/models/poc-report-exchange.js +15 -0
- package/dist/src/vaults/api/v2/models/poc-report-exchanges.d.ts +37 -0
- package/dist/src/vaults/api/v2/models/poc-report-exchanges.js +15 -0
- package/dist/src/vaults/api/v2/models/poc-report-protocol.d.ts +36 -0
- package/dist/src/vaults/api/v2/models/poc-report-protocol.js +15 -0
- package/dist/src/vaults/api/v2/models/poc-report-token.d.ts +36 -0
- package/dist/src/vaults/api/v2/models/poc-report-token.js +15 -0
- package/dist/src/vaults/api/v2/models/poc-report-wallet.d.ts +80 -0
- package/dist/src/vaults/api/v2/models/poc-report-wallet.js +15 -0
- package/dist/src/vaults/api/v2/models/poc-report-wallets.d.ts +37 -0
- package/dist/src/vaults/api/v2/models/poc-report-wallets.js +15 -0
- package/dist/src/vaults/api/v2/models/position-history-interval.d.ts +22 -0
- package/dist/src/vaults/api/v2/models/position-history-interval.js +26 -0
- package/dist/src/vaults/api/v2/models/position-value.d.ts +89 -0
- package/dist/src/vaults/api/v2/models/position-value.js +20 -0
- package/dist/src/vaults/api/v2/models/position.d.ts +42 -0
- package/dist/src/vaults/api/v2/models/position.js +15 -0
- package/dist/src/vaults/api/v2/models/process-requests-summary-event.d.ts +78 -0
- package/dist/src/vaults/api/v2/models/process-requests-summary-event.js +15 -0
- package/dist/src/vaults/api/v2/models/proof-of-capital-report.d.ts +69 -0
- package/dist/src/vaults/api/v2/models/proof-of-capital-report.js +15 -0
- package/dist/src/vaults/api/v2/models/protocol-fee-collected-event.d.ts +60 -0
- package/dist/src/vaults/api/v2/models/protocol-fee-collected-event.js +15 -0
- package/dist/src/vaults/api/v2/models/protocol-pnl-history.d.ts +36 -0
- package/dist/src/vaults/api/v2/models/protocol-pnl-history.js +15 -0
- package/dist/src/vaults/api/v2/models/protocol-tvl-history.d.ts +30 -0
- package/dist/src/vaults/api/v2/models/protocol-tvl-history.js +15 -0
- package/dist/src/vaults/api/v2/models/protocol.d.ts +42 -0
- package/dist/src/vaults/api/v2/models/protocol.js +15 -0
- package/dist/src/vaults/api/v2/models/raw-event-event-data.d.ts +34 -0
- package/dist/src/vaults/api/v2/models/raw-event-event-data.js +15 -0
- package/dist/src/vaults/api/v2/models/raw-event.d.ts +63 -0
- package/dist/src/vaults/api/v2/models/raw-event.js +35 -0
- package/dist/src/vaults/api/v2/models/redeem-request-cancelled-transaction.d.ts +56 -0
- package/dist/src/vaults/api/v2/models/redeem-request-cancelled-transaction.js +15 -0
- package/dist/src/vaults/api/v2/models/redeem-request-processed-transaction.d.ts +68 -0
- package/dist/src/vaults/api/v2/models/redeem-request-processed-transaction.js +15 -0
- package/dist/src/vaults/api/v2/models/redeem-request-skipped-transaction.d.ts +56 -0
- package/dist/src/vaults/api/v2/models/redeem-request-skipped-transaction.js +15 -0
- package/dist/src/vaults/api/v2/models/redeem-request-transaction.d.ts +56 -0
- package/dist/src/vaults/api/v2/models/redeem-request-transaction.js +15 -0
- package/dist/src/vaults/api/v2/models/reported-apy.d.ts +42 -0
- package/dist/src/vaults/api/v2/models/reported-apy.js +15 -0
- package/dist/src/vaults/api/v2/models/request-processed-event.d.ts +78 -0
- package/dist/src/vaults/api/v2/models/request-processed-event.js +15 -0
- package/dist/src/vaults/api/v2/models/request-redeemed-event.d.ts +72 -0
- package/dist/src/vaults/api/v2/models/request-redeemed-event.js +15 -0
- package/dist/src/vaults/api/v2/models/reward-token.d.ts +48 -0
- package/dist/src/vaults/api/v2/models/reward-token.js +15 -0
- package/dist/src/vaults/api/v2/models/reward.d.ts +37 -0
- package/dist/src/vaults/api/v2/models/reward.js +15 -0
- package/dist/src/vaults/api/v2/models/share-price-history.d.ts +30 -0
- package/dist/src/vaults/api/v2/models/share-price-history.js +15 -0
- package/dist/src/vaults/api/v2/models/strategy-account.d.ts +49 -0
- package/dist/src/vaults/api/v2/models/strategy-account.js +15 -0
- package/dist/src/vaults/api/v2/models/strategy.d.ts +60 -0
- package/dist/src/vaults/api/v2/models/strategy.js +15 -0
- package/dist/src/vaults/api/v2/models/sub-account.d.ts +31 -0
- package/dist/src/vaults/api/v2/models/sub-account.js +15 -0
- package/dist/src/vaults/api/v2/models/sui-protocol-info.d.ts +41 -0
- package/dist/src/vaults/api/v2/models/sui-protocol-info.js +15 -0
- package/dist/src/vaults/api/v2/models/supplied.d.ts +43 -0
- package/dist/src/vaults/api/v2/models/supplied.js +15 -0
- package/dist/src/vaults/api/v2/models/tag.d.ts +60 -0
- package/dist/src/vaults/api/v2/models/tag.js +15 -0
- package/dist/src/vaults/api/v2/models/tvl-by-chain.d.ts +36 -0
- package/dist/src/vaults/api/v2/models/tvl-by-chain.js +15 -0
- package/dist/src/vaults/api/v2/models/tvl-history.d.ts +43 -0
- package/dist/src/vaults/api/v2/models/tvl-history.js +15 -0
- package/dist/src/vaults/api/v2/models/ultra-coin-info.d.ts +54 -0
- package/dist/src/vaults/api/v2/models/ultra-coin-info.js +15 -0
- package/dist/src/vaults/api/v2/models/update-vault-strategies.d.ts +61 -0
- package/dist/src/vaults/api/v2/models/update-vault-strategies.js +15 -0
- package/dist/src/vaults/api/v2/models/vault-admin-changed-event.d.ts +42 -0
- package/dist/src/vaults/api/v2/models/vault-admin-changed-event.js +15 -0
- package/dist/src/vaults/api/v2/models/vault-created-event.d.ts +60 -0
- package/dist/src/vaults/api/v2/models/vault-created-event.js +15 -0
- package/dist/src/vaults/api/v2/models/vault-deposit-event.d.ts +72 -0
- package/dist/src/vaults/api/v2/models/vault-deposit-event.js +15 -0
- package/dist/src/vaults/api/v2/models/vault-deposit-without-minting-shares-event.d.ts +60 -0
- package/dist/src/vaults/api/v2/models/vault-deposit-without-minting-shares-event.js +15 -0
- package/dist/src/vaults/api/v2/models/vault-detail.d.ts +196 -0
- package/dist/src/vaults/api/v2/models/vault-detail.js +22 -0
- package/dist/src/vaults/api/v2/models/vault-fee-percentage-updated-event.d.ts +42 -0
- package/dist/src/vaults/api/v2/models/vault-fee-percentage-updated-event.js +15 -0
- package/dist/src/vaults/api/v2/models/vault-info.d.ts +84 -0
- package/dist/src/vaults/api/v2/models/vault-info.js +15 -0
- package/dist/src/vaults/api/v2/models/vault-max-tvl-updated-event.d.ts +42 -0
- package/dist/src/vaults/api/v2/models/vault-max-tvl-updated-event.js +15 -0
- package/dist/src/vaults/api/v2/models/vault-operator-changed-event.d.ts +42 -0
- package/dist/src/vaults/api/v2/models/vault-operator-changed-event.js +15 -0
- package/dist/src/vaults/api/v2/models/vault-paused-status-updated-event.d.ts +36 -0
- package/dist/src/vaults/api/v2/models/vault-paused-status-updated-event.js +15 -0
- package/dist/src/vaults/api/v2/models/vault-platform-fee-charged-event.d.ts +48 -0
- package/dist/src/vaults/api/v2/models/vault-platform-fee-charged-event.js +15 -0
- package/dist/src/vaults/api/v2/models/vault-protocol.d.ts +42 -0
- package/dist/src/vaults/api/v2/models/vault-protocol.js +15 -0
- package/dist/src/vaults/api/v2/models/vault-rate-updated-event.d.ts +42 -0
- package/dist/src/vaults/api/v2/models/vault-rate-updated-event.js +15 -0
- package/dist/src/vaults/api/v2/models/vault-slice.d.ts +48 -0
- package/dist/src/vaults/api/v2/models/vault-slice.js +15 -0
- package/dist/src/vaults/api/v2/models/vault-sub-account-updated-event.d.ts +54 -0
- package/dist/src/vaults/api/v2/models/vault-sub-account-updated-event.js +15 -0
- package/dist/src/vaults/api/v2/models/vault-tag.d.ts +48 -0
- package/dist/src/vaults/api/v2/models/vault-tag.js +15 -0
- package/dist/src/vaults/api/v2/models/vault-withdrawal-without-redeeming-shares-event.d.ts +60 -0
- package/dist/src/vaults/api/v2/models/vault-withdrawal-without-redeeming-shares-event.js +15 -0
- package/dist/src/vaults/api/v2/models/vaults-deployment-config-config.d.ts +19 -0
- package/dist/src/vaults/api/v2/models/vaults-deployment-config-config.js +15 -0
- package/dist/src/vaults/api/v2/models/vaults-deployment-config.d.ts +42 -0
- package/dist/src/vaults/api/v2/models/vaults-deployment-config.js +20 -0
- package/dist/src/vaults/api/v2/models/vaults-stats.d.ts +42 -0
- package/dist/src/vaults/api/v2/models/vaults-stats.js +15 -0
- package/dist/src/vaults/api/v2/models/yield-aggregate-value.d.ts +48 -0
- package/dist/src/vaults/api/v2/models/yield-aggregate-value.js +15 -0
- package/package.json +3 -2
|
@@ -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,22 @@
|
|
|
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
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare const PositionHistoryInterval: {
|
|
18
|
+
readonly _1d: "1d";
|
|
19
|
+
readonly _1w: "1w";
|
|
20
|
+
readonly _1mon: "1mon";
|
|
21
|
+
};
|
|
22
|
+
export type PositionHistoryInterval = (typeof PositionHistoryInterval)[keyof typeof PositionHistoryInterval];
|
|
@@ -0,0 +1,26 @@
|
|
|
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 });
|
|
16
|
+
exports.PositionHistoryInterval = void 0;
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
exports.PositionHistoryInterval = {
|
|
23
|
+
_1d: "1d",
|
|
24
|
+
_1w: "1w",
|
|
25
|
+
_1mon: "1mon"
|
|
26
|
+
};
|
|
@@ -0,0 +1,89 @@
|
|
|
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 PositionValue
|
|
16
|
+
*/
|
|
17
|
+
export interface PositionValue {
|
|
18
|
+
/**
|
|
19
|
+
* The id of the vault
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PositionValue
|
|
22
|
+
*/
|
|
23
|
+
vaultId: string;
|
|
24
|
+
/**
|
|
25
|
+
* The position value of the account in e9 in USDC
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PositionValue
|
|
28
|
+
*/
|
|
29
|
+
positionValueUsdE9: string;
|
|
30
|
+
/**
|
|
31
|
+
* The position value of the account in terms of deposit coin amount
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PositionValue
|
|
34
|
+
*/
|
|
35
|
+
positionValueInCoinAmount: string;
|
|
36
|
+
/**
|
|
37
|
+
* The shares of the account
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof PositionValue
|
|
40
|
+
*/
|
|
41
|
+
shares: string;
|
|
42
|
+
/**
|
|
43
|
+
* The unrealized yield value of the account in e9 in USDC
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof PositionValue
|
|
46
|
+
*/
|
|
47
|
+
unrealizedYieldUsdE9: string;
|
|
48
|
+
/**
|
|
49
|
+
* The unrealized yield of the account in terms of deposit coin amount
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof PositionValue
|
|
52
|
+
*/
|
|
53
|
+
unrealizedYieldInCoinAmount: string;
|
|
54
|
+
/**
|
|
55
|
+
* The realized yield value of the account in e9 in USDC
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof PositionValue
|
|
58
|
+
*/
|
|
59
|
+
realizedYieldUsdE9: string;
|
|
60
|
+
/**
|
|
61
|
+
* The realized yield of the account in terms of deposit coin amount
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof PositionValue
|
|
64
|
+
*/
|
|
65
|
+
realizedYieldInCoinAmount: string;
|
|
66
|
+
/**
|
|
67
|
+
* The total yield value of the account in e9 in USDC
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof PositionValue
|
|
70
|
+
*/
|
|
71
|
+
totalYieldUsdE9: string;
|
|
72
|
+
/**
|
|
73
|
+
* The total yield of the account in terms of deposit coin amount
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof PositionValue
|
|
76
|
+
*/
|
|
77
|
+
totalYieldInCoinAmount: string;
|
|
78
|
+
/**
|
|
79
|
+
* The status of the position
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof PositionValue
|
|
82
|
+
*/
|
|
83
|
+
status: PositionValueStatusEnum;
|
|
84
|
+
}
|
|
85
|
+
export declare const PositionValueStatusEnum: {
|
|
86
|
+
readonly Sync: "SYNC";
|
|
87
|
+
readonly OutOfSync: "OUT_OF_SYNC";
|
|
88
|
+
};
|
|
89
|
+
export type PositionValueStatusEnum = (typeof PositionValueStatusEnum)[keyof typeof PositionValueStatusEnum];
|
|
@@ -0,0 +1,20 @@
|
|
|
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 });
|
|
16
|
+
exports.PositionValueStatusEnum = void 0;
|
|
17
|
+
exports.PositionValueStatusEnum = {
|
|
18
|
+
Sync: "SYNC",
|
|
19
|
+
OutOfSync: "OUT_OF_SYNC"
|
|
20
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
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 Position
|
|
16
|
+
*/
|
|
17
|
+
export interface Position {
|
|
18
|
+
/**
|
|
19
|
+
* The symbol of the position
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof Position
|
|
22
|
+
*/
|
|
23
|
+
symbol: string;
|
|
24
|
+
/**
|
|
25
|
+
* The size of the position in e9
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof Position
|
|
28
|
+
*/
|
|
29
|
+
sizeE9: string;
|
|
30
|
+
/**
|
|
31
|
+
* The side of the position
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof Position
|
|
34
|
+
*/
|
|
35
|
+
side: string;
|
|
36
|
+
/**
|
|
37
|
+
* The margin of the position in e9
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof Position
|
|
40
|
+
*/
|
|
41
|
+
marginE9: string;
|
|
42
|
+
}
|
|
@@ -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,78 @@
|
|
|
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 ProcessRequestsSummaryEvent
|
|
16
|
+
*/
|
|
17
|
+
export interface ProcessRequestsSummaryEvent {
|
|
18
|
+
/**
|
|
19
|
+
* The id of the vault
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ProcessRequestsSummaryEvent
|
|
22
|
+
*/
|
|
23
|
+
vaultId?: string;
|
|
24
|
+
/**
|
|
25
|
+
* The total number of requests processed
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ProcessRequestsSummaryEvent
|
|
28
|
+
*/
|
|
29
|
+
totalRequestProcessed?: string;
|
|
30
|
+
/**
|
|
31
|
+
* The number of requests skipped
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ProcessRequestsSummaryEvent
|
|
34
|
+
*/
|
|
35
|
+
requestsSkipped?: string;
|
|
36
|
+
/**
|
|
37
|
+
* The total number of shares burnt
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ProcessRequestsSummaryEvent
|
|
40
|
+
*/
|
|
41
|
+
totalSharesBurnt?: string;
|
|
42
|
+
/**
|
|
43
|
+
* The total amount withdrawn
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ProcessRequestsSummaryEvent
|
|
46
|
+
*/
|
|
47
|
+
totalAmountWithdrawn?: string;
|
|
48
|
+
/**
|
|
49
|
+
* The total number of shares in circulation
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof ProcessRequestsSummaryEvent
|
|
52
|
+
*/
|
|
53
|
+
totalSharesInCirculation?: string;
|
|
54
|
+
/**
|
|
55
|
+
* The rate of the vault
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof ProcessRequestsSummaryEvent
|
|
58
|
+
*/
|
|
59
|
+
rate?: string;
|
|
60
|
+
/**
|
|
61
|
+
* The number of requests cancelled
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof ProcessRequestsSummaryEvent
|
|
64
|
+
*/
|
|
65
|
+
requestsCancelled?: string;
|
|
66
|
+
/**
|
|
67
|
+
* The total number of shares pending to burn
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof ProcessRequestsSummaryEvent
|
|
70
|
+
*/
|
|
71
|
+
totalSharesPendingToBurn?: string;
|
|
72
|
+
/**
|
|
73
|
+
* The sequence number of the event
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof ProcessRequestsSummaryEvent
|
|
76
|
+
*/
|
|
77
|
+
sequenceNumber?: string;
|
|
78
|
+
}
|
|
@@ -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 });
|