@ember-finance/sdk 1.0.24 → 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.
Files changed (208) hide show
  1. package/dist/src/vaults/api/models/apy-history.d.ts +6 -0
  2. package/dist/src/vaults/api/models/reported-apy.d.ts +6 -0
  3. package/dist/src/vaults/api/models/reward-token.d.ts +5 -5
  4. package/dist/src/vaults/api/v2/api.d.ts +13 -0
  5. package/dist/src/vaults/api/v2/api.js +31 -0
  6. package/dist/src/vaults/api/v2/apis/accounts-api.d.ts +351 -0
  7. package/dist/src/vaults/api/v2/apis/accounts-api.js +656 -0
  8. package/dist/src/vaults/api/v2/apis/vaults-api.d.ts +570 -0
  9. package/dist/src/vaults/api/v2/apis/vaults-api.js +1150 -0
  10. package/dist/src/vaults/api/v2/base.d.ts +66 -0
  11. package/dist/src/vaults/api/v2/base.js +66 -0
  12. package/dist/src/vaults/api/v2/common.d.ts +65 -0
  13. package/dist/src/vaults/api/v2/common.js +152 -0
  14. package/dist/src/vaults/api/v2/configuration.d.ts +91 -0
  15. package/dist/src/vaults/api/v2/configuration.js +49 -0
  16. package/dist/src/vaults/api/v2/index.d.ts +14 -0
  17. package/dist/src/vaults/api/v2/index.js +32 -0
  18. package/dist/src/vaults/api/v2/models/account-transaction-transaction-data.d.ts +22 -0
  19. package/dist/src/vaults/api/v2/models/account-transaction-transaction-data.js +15 -0
  20. package/dist/src/vaults/api/v2/models/account-transaction.d.ts +45 -0
  21. package/dist/src/vaults/api/v2/models/account-transaction.js +23 -0
  22. package/dist/src/vaults/api/v2/models/account-vault-position-history.d.ts +89 -0
  23. package/dist/src/vaults/api/v2/models/account-vault-position-history.js +20 -0
  24. package/dist/src/vaults/api/v2/models/account-withdrawal-request.d.ts +107 -0
  25. package/dist/src/vaults/api/v2/models/account-withdrawal-request.js +24 -0
  26. package/dist/src/vaults/api/v2/models/aggregated-account-position-history.d.ts +59 -0
  27. package/dist/src/vaults/api/v2/models/aggregated-account-position-history.js +20 -0
  28. package/dist/src/vaults/api/v2/models/apy-history-response.d.ts +73 -0
  29. package/dist/src/vaults/api/v2/models/apy-history-response.js +15 -0
  30. package/dist/src/vaults/api/v2/models/apy-history.d.ts +42 -0
  31. package/dist/src/vaults/api/v2/models/apy-history.js +15 -0
  32. package/dist/src/vaults/api/v2/models/asset.d.ts +66 -0
  33. package/dist/src/vaults/api/v2/models/asset.js +15 -0
  34. package/dist/src/vaults/api/v2/models/borrowed.d.ts +43 -0
  35. package/dist/src/vaults/api/v2/models/borrowed.js +15 -0
  36. package/dist/src/vaults/api/v2/models/chain-vault-details.d.ts +74 -0
  37. package/dist/src/vaults/api/v2/models/chain-vault-details.js +15 -0
  38. package/dist/src/vaults/api/v2/models/chain.d.ts +60 -0
  39. package/dist/src/vaults/api/v2/models/chain.js +21 -0
  40. package/dist/src/vaults/api/v2/models/coin-price.d.ts +36 -0
  41. package/dist/src/vaults/api/v2/models/coin-price.js +15 -0
  42. package/dist/src/vaults/api/v2/models/deposit-transaction.d.ts +68 -0
  43. package/dist/src/vaults/api/v2/models/deposit-transaction.js +15 -0
  44. package/dist/src/vaults/api/v2/models/ember-position.d.ts +31 -0
  45. package/dist/src/vaults/api/v2/models/ember-position.js +15 -0
  46. package/dist/src/vaults/api/v2/models/evm-contracts.d.ts +61 -0
  47. package/dist/src/vaults/api/v2/models/evm-contracts.js +15 -0
  48. package/dist/src/vaults/api/v2/models/evm-deposit-token.d.ts +66 -0
  49. package/dist/src/vaults/api/v2/models/evm-deposit-token.js +15 -0
  50. package/dist/src/vaults/api/v2/models/evm-price-feed.d.ts +54 -0
  51. package/dist/src/vaults/api/v2/models/evm-price-feed.js +15 -0
  52. package/dist/src/vaults/api/v2/models/evm-protocol-config.d.ts +48 -0
  53. package/dist/src/vaults/api/v2/models/evm-protocol-config.js +15 -0
  54. package/dist/src/vaults/api/v2/models/evm-protocol-info.d.ts +37 -0
  55. package/dist/src/vaults/api/v2/models/evm-protocol-info.js +15 -0
  56. package/dist/src/vaults/api/v2/models/evm-receipt-token.d.ts +72 -0
  57. package/dist/src/vaults/api/v2/models/evm-receipt-token.js +15 -0
  58. package/dist/src/vaults/api/v2/models/evm-vault.d.ts +114 -0
  59. package/dist/src/vaults/api/v2/models/evm-vault.js +15 -0
  60. package/dist/src/vaults/api/v2/models/exposure-coin.d.ts +37 -0
  61. package/dist/src/vaults/api/v2/models/exposure-coin.js +15 -0
  62. package/dist/src/vaults/api/v2/models/exposure-protocol.d.ts +66 -0
  63. package/dist/src/vaults/api/v2/models/exposure-protocol.js +15 -0
  64. package/dist/src/vaults/api/v2/models/exposure.d.ts +38 -0
  65. package/dist/src/vaults/api/v2/models/exposure.js +15 -0
  66. package/dist/src/vaults/api/v2/models/fee.d.ts +37 -0
  67. package/dist/src/vaults/api/v2/models/fee.js +15 -0
  68. package/dist/src/vaults/api/v2/models/fees.d.ts +42 -0
  69. package/dist/src/vaults/api/v2/models/fees.js +15 -0
  70. package/dist/src/vaults/api/v2/models/history-interval.d.ts +23 -0
  71. package/dist/src/vaults/api/v2/models/history-interval.js +27 -0
  72. package/dist/src/vaults/api/v2/models/index.d.ts +94 -0
  73. package/dist/src/vaults/api/v2/models/index.js +110 -0
  74. package/dist/src/vaults/api/v2/models/lp.d.ts +81 -0
  75. package/dist/src/vaults/api/v2/models/lp.js +15 -0
  76. package/dist/src/vaults/api/v2/models/manager.d.ts +42 -0
  77. package/dist/src/vaults/api/v2/models/manager.js +15 -0
  78. package/dist/src/vaults/api/v2/models/min-withdrawal-shares-updated-event.d.ts +42 -0
  79. package/dist/src/vaults/api/v2/models/min-withdrawal-shares-updated-event.js +15 -0
  80. package/dist/src/vaults/api/v2/models/perps.d.ts +31 -0
  81. package/dist/src/vaults/api/v2/models/perps.js +15 -0
  82. package/dist/src/vaults/api/v2/models/pnl-by-chain.d.ts +48 -0
  83. package/dist/src/vaults/api/v2/models/pnl-by-chain.js +15 -0
  84. package/dist/src/vaults/api/v2/models/pnl-history-interval.d.ts +22 -0
  85. package/dist/src/vaults/api/v2/models/pnl-history-interval.js +26 -0
  86. package/dist/src/vaults/api/v2/models/pnl-history.d.ts +48 -0
  87. package/dist/src/vaults/api/v2/models/pnl-history.js +15 -0
  88. package/dist/src/vaults/api/v2/models/poc-report-asset.d.ts +54 -0
  89. package/dist/src/vaults/api/v2/models/poc-report-asset.js +15 -0
  90. package/dist/src/vaults/api/v2/models/poc-report-assets.d.ts +37 -0
  91. package/dist/src/vaults/api/v2/models/poc-report-assets.js +15 -0
  92. package/dist/src/vaults/api/v2/models/poc-report-exchange.d.ts +43 -0
  93. package/dist/src/vaults/api/v2/models/poc-report-exchange.js +15 -0
  94. package/dist/src/vaults/api/v2/models/poc-report-exchanges.d.ts +37 -0
  95. package/dist/src/vaults/api/v2/models/poc-report-exchanges.js +15 -0
  96. package/dist/src/vaults/api/v2/models/poc-report-protocol.d.ts +36 -0
  97. package/dist/src/vaults/api/v2/models/poc-report-protocol.js +15 -0
  98. package/dist/src/vaults/api/v2/models/poc-report-token.d.ts +36 -0
  99. package/dist/src/vaults/api/v2/models/poc-report-token.js +15 -0
  100. package/dist/src/vaults/api/v2/models/poc-report-wallet.d.ts +80 -0
  101. package/dist/src/vaults/api/v2/models/poc-report-wallet.js +15 -0
  102. package/dist/src/vaults/api/v2/models/poc-report-wallets.d.ts +37 -0
  103. package/dist/src/vaults/api/v2/models/poc-report-wallets.js +15 -0
  104. package/dist/src/vaults/api/v2/models/position-history-interval.d.ts +22 -0
  105. package/dist/src/vaults/api/v2/models/position-history-interval.js +26 -0
  106. package/dist/src/vaults/api/v2/models/position-value.d.ts +89 -0
  107. package/dist/src/vaults/api/v2/models/position-value.js +20 -0
  108. package/dist/src/vaults/api/v2/models/position.d.ts +42 -0
  109. package/dist/src/vaults/api/v2/models/position.js +15 -0
  110. package/dist/src/vaults/api/v2/models/process-requests-summary-event.d.ts +78 -0
  111. package/dist/src/vaults/api/v2/models/process-requests-summary-event.js +15 -0
  112. package/dist/src/vaults/api/v2/models/proof-of-capital-report.d.ts +69 -0
  113. package/dist/src/vaults/api/v2/models/proof-of-capital-report.js +15 -0
  114. package/dist/src/vaults/api/v2/models/protocol-fee-collected-event.d.ts +60 -0
  115. package/dist/src/vaults/api/v2/models/protocol-fee-collected-event.js +15 -0
  116. package/dist/src/vaults/api/v2/models/protocol-pnl-history.d.ts +36 -0
  117. package/dist/src/vaults/api/v2/models/protocol-pnl-history.js +15 -0
  118. package/dist/src/vaults/api/v2/models/protocol-tvl-history.d.ts +30 -0
  119. package/dist/src/vaults/api/v2/models/protocol-tvl-history.js +15 -0
  120. package/dist/src/vaults/api/v2/models/protocol.d.ts +42 -0
  121. package/dist/src/vaults/api/v2/models/protocol.js +15 -0
  122. package/dist/src/vaults/api/v2/models/raw-event-event-data.d.ts +34 -0
  123. package/dist/src/vaults/api/v2/models/raw-event-event-data.js +15 -0
  124. package/dist/src/vaults/api/v2/models/raw-event.d.ts +63 -0
  125. package/dist/src/vaults/api/v2/models/raw-event.js +35 -0
  126. package/dist/src/vaults/api/v2/models/redeem-request-cancelled-transaction.d.ts +56 -0
  127. package/dist/src/vaults/api/v2/models/redeem-request-cancelled-transaction.js +15 -0
  128. package/dist/src/vaults/api/v2/models/redeem-request-processed-transaction.d.ts +68 -0
  129. package/dist/src/vaults/api/v2/models/redeem-request-processed-transaction.js +15 -0
  130. package/dist/src/vaults/api/v2/models/redeem-request-skipped-transaction.d.ts +56 -0
  131. package/dist/src/vaults/api/v2/models/redeem-request-skipped-transaction.js +15 -0
  132. package/dist/src/vaults/api/v2/models/redeem-request-transaction.d.ts +56 -0
  133. package/dist/src/vaults/api/v2/models/redeem-request-transaction.js +15 -0
  134. package/dist/src/vaults/api/v2/models/reported-apy.d.ts +42 -0
  135. package/dist/src/vaults/api/v2/models/reported-apy.js +15 -0
  136. package/dist/src/vaults/api/v2/models/request-processed-event.d.ts +78 -0
  137. package/dist/src/vaults/api/v2/models/request-processed-event.js +15 -0
  138. package/dist/src/vaults/api/v2/models/request-redeemed-event.d.ts +72 -0
  139. package/dist/src/vaults/api/v2/models/request-redeemed-event.js +15 -0
  140. package/dist/src/vaults/api/v2/models/reward-token.d.ts +48 -0
  141. package/dist/src/vaults/api/v2/models/reward-token.js +15 -0
  142. package/dist/src/vaults/api/v2/models/reward.d.ts +37 -0
  143. package/dist/src/vaults/api/v2/models/reward.js +15 -0
  144. package/dist/src/vaults/api/v2/models/share-price-history.d.ts +30 -0
  145. package/dist/src/vaults/api/v2/models/share-price-history.js +15 -0
  146. package/dist/src/vaults/api/v2/models/strategy-account.d.ts +49 -0
  147. package/dist/src/vaults/api/v2/models/strategy-account.js +15 -0
  148. package/dist/src/vaults/api/v2/models/strategy.d.ts +60 -0
  149. package/dist/src/vaults/api/v2/models/strategy.js +15 -0
  150. package/dist/src/vaults/api/v2/models/sub-account.d.ts +31 -0
  151. package/dist/src/vaults/api/v2/models/sub-account.js +15 -0
  152. package/dist/src/vaults/api/v2/models/sui-protocol-info.d.ts +41 -0
  153. package/dist/src/vaults/api/v2/models/sui-protocol-info.js +15 -0
  154. package/dist/src/vaults/api/v2/models/supplied.d.ts +43 -0
  155. package/dist/src/vaults/api/v2/models/supplied.js +15 -0
  156. package/dist/src/vaults/api/v2/models/tag.d.ts +60 -0
  157. package/dist/src/vaults/api/v2/models/tag.js +15 -0
  158. package/dist/src/vaults/api/v2/models/tvl-by-chain.d.ts +36 -0
  159. package/dist/src/vaults/api/v2/models/tvl-by-chain.js +15 -0
  160. package/dist/src/vaults/api/v2/models/tvl-history.d.ts +43 -0
  161. package/dist/src/vaults/api/v2/models/tvl-history.js +15 -0
  162. package/dist/src/vaults/api/v2/models/ultra-coin-info.d.ts +54 -0
  163. package/dist/src/vaults/api/v2/models/ultra-coin-info.js +15 -0
  164. package/dist/src/vaults/api/v2/models/update-vault-strategies.d.ts +61 -0
  165. package/dist/src/vaults/api/v2/models/update-vault-strategies.js +15 -0
  166. package/dist/src/vaults/api/v2/models/vault-admin-changed-event.d.ts +42 -0
  167. package/dist/src/vaults/api/v2/models/vault-admin-changed-event.js +15 -0
  168. package/dist/src/vaults/api/v2/models/vault-created-event.d.ts +60 -0
  169. package/dist/src/vaults/api/v2/models/vault-created-event.js +15 -0
  170. package/dist/src/vaults/api/v2/models/vault-deposit-event.d.ts +72 -0
  171. package/dist/src/vaults/api/v2/models/vault-deposit-event.js +15 -0
  172. package/dist/src/vaults/api/v2/models/vault-deposit-without-minting-shares-event.d.ts +60 -0
  173. package/dist/src/vaults/api/v2/models/vault-deposit-without-minting-shares-event.js +15 -0
  174. package/dist/src/vaults/api/v2/models/vault-detail.d.ts +196 -0
  175. package/dist/src/vaults/api/v2/models/vault-detail.js +22 -0
  176. package/dist/src/vaults/api/v2/models/vault-fee-percentage-updated-event.d.ts +42 -0
  177. package/dist/src/vaults/api/v2/models/vault-fee-percentage-updated-event.js +15 -0
  178. package/dist/src/vaults/api/v2/models/vault-info.d.ts +84 -0
  179. package/dist/src/vaults/api/v2/models/vault-info.js +15 -0
  180. package/dist/src/vaults/api/v2/models/vault-max-tvl-updated-event.d.ts +42 -0
  181. package/dist/src/vaults/api/v2/models/vault-max-tvl-updated-event.js +15 -0
  182. package/dist/src/vaults/api/v2/models/vault-operator-changed-event.d.ts +42 -0
  183. package/dist/src/vaults/api/v2/models/vault-operator-changed-event.js +15 -0
  184. package/dist/src/vaults/api/v2/models/vault-paused-status-updated-event.d.ts +36 -0
  185. package/dist/src/vaults/api/v2/models/vault-paused-status-updated-event.js +15 -0
  186. package/dist/src/vaults/api/v2/models/vault-platform-fee-charged-event.d.ts +48 -0
  187. package/dist/src/vaults/api/v2/models/vault-platform-fee-charged-event.js +15 -0
  188. package/dist/src/vaults/api/v2/models/vault-protocol.d.ts +42 -0
  189. package/dist/src/vaults/api/v2/models/vault-protocol.js +15 -0
  190. package/dist/src/vaults/api/v2/models/vault-rate-updated-event.d.ts +42 -0
  191. package/dist/src/vaults/api/v2/models/vault-rate-updated-event.js +15 -0
  192. package/dist/src/vaults/api/v2/models/vault-slice.d.ts +48 -0
  193. package/dist/src/vaults/api/v2/models/vault-slice.js +15 -0
  194. package/dist/src/vaults/api/v2/models/vault-sub-account-updated-event.d.ts +54 -0
  195. package/dist/src/vaults/api/v2/models/vault-sub-account-updated-event.js +15 -0
  196. package/dist/src/vaults/api/v2/models/vault-tag.d.ts +48 -0
  197. package/dist/src/vaults/api/v2/models/vault-tag.js +15 -0
  198. package/dist/src/vaults/api/v2/models/vault-withdrawal-without-redeeming-shares-event.d.ts +60 -0
  199. package/dist/src/vaults/api/v2/models/vault-withdrawal-without-redeeming-shares-event.js +15 -0
  200. package/dist/src/vaults/api/v2/models/vaults-deployment-config-config.d.ts +19 -0
  201. package/dist/src/vaults/api/v2/models/vaults-deployment-config-config.js +15 -0
  202. package/dist/src/vaults/api/v2/models/vaults-deployment-config.d.ts +42 -0
  203. package/dist/src/vaults/api/v2/models/vaults-deployment-config.js +20 -0
  204. package/dist/src/vaults/api/v2/models/vaults-stats.d.ts +42 -0
  205. package/dist/src/vaults/api/v2/models/vaults-stats.js +15 -0
  206. package/dist/src/vaults/api/v2/models/yield-aggregate-value.d.ts +48 -0
  207. package/dist/src/vaults/api/v2/models/yield-aggregate-value.js +15 -0
  208. package/package.json +3 -2
@@ -0,0 +1,72 @@
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 EvmReceiptToken
16
+ */
17
+ export interface EvmReceiptToken {
18
+ /**
19
+ * The proxy contract address
20
+ * @type {string}
21
+ * @memberof EvmReceiptToken
22
+ */
23
+ proxyAddress?: string;
24
+ /**
25
+ * The implementation contract address
26
+ * @type {string}
27
+ * @memberof EvmReceiptToken
28
+ */
29
+ implementationAddress?: string;
30
+ /**
31
+ * The owner address
32
+ * @type {string}
33
+ * @memberof EvmReceiptToken
34
+ */
35
+ ownerAddress?: string;
36
+ /**
37
+ * The token name
38
+ * @type {string}
39
+ * @memberof EvmReceiptToken
40
+ */
41
+ name?: string;
42
+ /**
43
+ * The token symbol
44
+ * @type {string}
45
+ * @memberof EvmReceiptToken
46
+ */
47
+ symbol?: string;
48
+ /**
49
+ * The token decimals
50
+ * @type {number}
51
+ * @memberof EvmReceiptToken
52
+ */
53
+ decimals?: number;
54
+ /**
55
+ * The contract version
56
+ * @type {string}
57
+ * @memberof EvmReceiptToken
58
+ */
59
+ version?: string;
60
+ /**
61
+ * The deployment timestamp
62
+ * @type {string}
63
+ * @memberof EvmReceiptToken
64
+ */
65
+ deployedAt?: string;
66
+ /**
67
+ * The block number at which the contract was deployed
68
+ * @type {number}
69
+ * @memberof EvmReceiptToken
70
+ */
71
+ deploymentBlockNumber?: number;
72
+ }
@@ -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,114 @@
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 EvmVault
16
+ */
17
+ export interface EvmVault {
18
+ /**
19
+ * The proxy contract address
20
+ * @type {string}
21
+ * @memberof EvmVault
22
+ */
23
+ proxyAddress?: string;
24
+ /**
25
+ * The implementation contract address
26
+ * @type {string}
27
+ * @memberof EvmVault
28
+ */
29
+ implementationAddress?: string;
30
+ /**
31
+ * The owner address
32
+ * @type {string}
33
+ * @memberof EvmVault
34
+ */
35
+ ownerAddress?: string;
36
+ /**
37
+ * The vault name
38
+ * @type {string}
39
+ * @memberof EvmVault
40
+ */
41
+ name?: string;
42
+ /**
43
+ * The base token address
44
+ * @type {string}
45
+ * @memberof EvmVault
46
+ */
47
+ baseToken?: string;
48
+ /**
49
+ * The receipt token address
50
+ * @type {string}
51
+ * @memberof EvmVault
52
+ */
53
+ receiptToken?: string;
54
+ /**
55
+ * The base token price feed address
56
+ * @type {string}
57
+ * @memberof EvmVault
58
+ */
59
+ baseTokenPriceFeed?: string;
60
+ /**
61
+ * The base token name
62
+ * @type {string}
63
+ * @memberof EvmVault
64
+ */
65
+ baseTokenName?: string;
66
+ /**
67
+ * The admin address
68
+ * @type {string}
69
+ * @memberof EvmVault
70
+ */
71
+ admin?: string;
72
+ /**
73
+ * The operator address
74
+ * @type {string}
75
+ * @memberof EvmVault
76
+ */
77
+ operator?: string;
78
+ /**
79
+ * The rate manager address
80
+ * @type {string}
81
+ * @memberof EvmVault
82
+ */
83
+ rateManager?: string;
84
+ /**
85
+ * The protocol config address
86
+ * @type {string}
87
+ * @memberof EvmVault
88
+ */
89
+ protocolConfig?: string;
90
+ /**
91
+ * The maximum TVL allowed
92
+ * @type {string}
93
+ * @memberof EvmVault
94
+ */
95
+ maxTVL?: string;
96
+ /**
97
+ * The contract version
98
+ * @type {string}
99
+ * @memberof EvmVault
100
+ */
101
+ version?: string;
102
+ /**
103
+ * The deployment timestamp
104
+ * @type {string}
105
+ * @memberof EvmVault
106
+ */
107
+ deployedAt?: string;
108
+ /**
109
+ * The block number at which the contract was deployed
110
+ * @type {number}
111
+ * @memberof EvmVault
112
+ */
113
+ deploymentBlockNumber?: number;
114
+ }
@@ -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 { Asset } from "./asset";
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ExposureCoin
17
+ */
18
+ export interface ExposureCoin {
19
+ /**
20
+ *
21
+ * @type {Asset}
22
+ * @memberof ExposureCoin
23
+ */
24
+ coin: Asset;
25
+ /**
26
+ * The amount of the coin in e9 in USDC
27
+ * @type {string}
28
+ * @memberof ExposureCoin
29
+ */
30
+ amountUsdE9: string;
31
+ /**
32
+ * The amount of the coin
33
+ * @type {string}
34
+ * @memberof ExposureCoin
35
+ */
36
+ amount: string;
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,66 @@
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 { Borrowed } from "./borrowed";
13
+ import type { Lp } from "./lp";
14
+ import type { Perps } from "./perps";
15
+ import type { Protocol } from "./protocol";
16
+ import type { Reward } from "./reward";
17
+ import type { Supplied } from "./supplied";
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface ExposureProtocol
22
+ */
23
+ export interface ExposureProtocol {
24
+ /**
25
+ *
26
+ * @type {Protocol}
27
+ * @memberof ExposureProtocol
28
+ */
29
+ protocol: Protocol;
30
+ /**
31
+ * The exposure of the protocol
32
+ * @type {string}
33
+ * @memberof ExposureProtocol
34
+ */
35
+ netValueUsdE9: string;
36
+ /**
37
+ * The lps of the protocol
38
+ * @type {Array<Lp>}
39
+ * @memberof ExposureProtocol
40
+ */
41
+ lps: Array<Lp>;
42
+ /**
43
+ * The borrowed of the protocol
44
+ * @type {Array<Borrowed>}
45
+ * @memberof ExposureProtocol
46
+ */
47
+ borrowed: Array<Borrowed>;
48
+ /**
49
+ * The supplied of the protocol
50
+ * @type {Array<Supplied>}
51
+ * @memberof ExposureProtocol
52
+ */
53
+ supplied: Array<Supplied>;
54
+ /**
55
+ * The rewards of the protocol
56
+ * @type {Array<Reward>}
57
+ * @memberof ExposureProtocol
58
+ */
59
+ rewards: Array<Reward>;
60
+ /**
61
+ *
62
+ * @type {Perps}
63
+ * @memberof ExposureProtocol
64
+ */
65
+ perps: Perps;
66
+ }
@@ -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,38 @@
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 { ExposureCoin } from "./exposure-coin";
13
+ import type { ExposureProtocol } from "./exposure-protocol";
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface Exposure
18
+ */
19
+ export interface Exposure {
20
+ /**
21
+ * The coins to which the account/vault is exposed
22
+ * @type {Array<ExposureCoin>}
23
+ * @memberof Exposure
24
+ */
25
+ coins: Array<ExposureCoin>;
26
+ /**
27
+ * The protocols to which the account/vault is exposed
28
+ * @type {Array<ExposureProtocol>}
29
+ * @memberof Exposure
30
+ */
31
+ protocols: Array<ExposureProtocol>;
32
+ /**
33
+ * The net account value of the account/vault in e9 in USDC
34
+ * @type {string}
35
+ * @memberof Exposure
36
+ */
37
+ netAccountValueUsdE9: string;
38
+ }
@@ -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 { Asset } from "./asset";
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface Fee
17
+ */
18
+ export interface Fee {
19
+ /**
20
+ *
21
+ * @type {Asset}
22
+ * @memberof Fee
23
+ */
24
+ coin: Asset;
25
+ /**
26
+ * The amount of the fee
27
+ * @type {string}
28
+ * @memberof Fee
29
+ */
30
+ amount: string;
31
+ /**
32
+ * The amount of the fee in e9 in USDC
33
+ * @type {string}
34
+ * @memberof Fee
35
+ */
36
+ amountUsdE9: string;
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,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 Fees
16
+ */
17
+ export interface Fees {
18
+ /**
19
+ * The start timestamp of the fees
20
+ * @type {number}
21
+ * @memberof Fees
22
+ */
23
+ startTimestampInMs: number;
24
+ /**
25
+ * The end timestamp of the fees
26
+ * @type {number}
27
+ * @memberof Fees
28
+ */
29
+ endTimestampInMs: number;
30
+ /**
31
+ * The fees in e9 in USDC
32
+ * @type {string}
33
+ * @memberof Fees
34
+ */
35
+ feesUsdE9: string;
36
+ /**
37
+ * The revenue in e9 in USDC
38
+ * @type {string}
39
+ * @memberof Fees
40
+ */
41
+ revenueUsdE9: 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,23 @@
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 HistoryInterval: {
18
+ readonly _1h: "1h";
19
+ readonly _1d: "1d";
20
+ readonly _1w: "1w";
21
+ readonly _1mon: "1mon";
22
+ };
23
+ export type HistoryInterval = (typeof HistoryInterval)[keyof typeof HistoryInterval];
@@ -0,0 +1,27 @@
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.HistoryInterval = void 0;
17
+ /**
18
+ *
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.HistoryInterval = {
23
+ _1h: "1h",
24
+ _1d: "1d",
25
+ _1w: "1w",
26
+ _1mon: "1mon"
27
+ };
@@ -0,0 +1,94 @@
1
+ export * from "./account-transaction";
2
+ export * from "./account-transaction-transaction-data";
3
+ export * from "./account-vault-position-history";
4
+ export * from "./account-withdrawal-request";
5
+ export * from "./aggregated-account-position-history";
6
+ export * from "./apy-history";
7
+ export * from "./apy-history-response";
8
+ export * from "./asset";
9
+ export * from "./borrowed";
10
+ export * from "./chain";
11
+ export * from "./chain-vault-details";
12
+ export * from "./coin-price";
13
+ export * from "./deposit-transaction";
14
+ export * from "./ember-position";
15
+ export * from "./evm-contracts";
16
+ export * from "./evm-deposit-token";
17
+ export * from "./evm-price-feed";
18
+ export * from "./evm-protocol-config";
19
+ export * from "./evm-protocol-info";
20
+ export * from "./evm-receipt-token";
21
+ export * from "./evm-vault";
22
+ export * from "./exposure";
23
+ export * from "./exposure-coin";
24
+ export * from "./exposure-protocol";
25
+ export * from "./fee";
26
+ export * from "./fees";
27
+ export * from "./history-interval";
28
+ export * from "./lp";
29
+ export * from "./manager";
30
+ export * from "./min-withdrawal-shares-updated-event";
31
+ export * from "./perps";
32
+ export * from "./pnl-by-chain";
33
+ export * from "./pnl-history";
34
+ export * from "./pnl-history-interval";
35
+ export * from "./poc-report-asset";
36
+ export * from "./poc-report-assets";
37
+ export * from "./poc-report-exchange";
38
+ export * from "./poc-report-exchanges";
39
+ export * from "./poc-report-protocol";
40
+ export * from "./poc-report-token";
41
+ export * from "./poc-report-wallet";
42
+ export * from "./poc-report-wallets";
43
+ export * from "./position";
44
+ export * from "./position-history-interval";
45
+ export * from "./position-value";
46
+ export * from "./process-requests-summary-event";
47
+ export * from "./proof-of-capital-report";
48
+ export * from "./protocol";
49
+ export * from "./protocol-fee-collected-event";
50
+ export * from "./protocol-pnl-history";
51
+ export * from "./protocol-tvl-history";
52
+ export * from "./raw-event";
53
+ export * from "./raw-event-event-data";
54
+ export * from "./redeem-request-cancelled-transaction";
55
+ export * from "./redeem-request-processed-transaction";
56
+ export * from "./redeem-request-skipped-transaction";
57
+ export * from "./redeem-request-transaction";
58
+ export * from "./reported-apy";
59
+ export * from "./request-processed-event";
60
+ export * from "./request-redeemed-event";
61
+ export * from "./reward";
62
+ export * from "./reward-token";
63
+ export * from "./share-price-history";
64
+ export * from "./strategy";
65
+ export * from "./strategy-account";
66
+ export * from "./sub-account";
67
+ export * from "./sui-protocol-info";
68
+ export * from "./supplied";
69
+ export * from "./tag";
70
+ export * from "./tvl-by-chain";
71
+ export * from "./tvl-history";
72
+ export * from "./ultra-coin-info";
73
+ export * from "./update-vault-strategies";
74
+ export * from "./vault-admin-changed-event";
75
+ export * from "./vault-created-event";
76
+ export * from "./vault-deposit-event";
77
+ export * from "./vault-deposit-without-minting-shares-event";
78
+ export * from "./vault-detail";
79
+ export * from "./vault-fee-percentage-updated-event";
80
+ export * from "./vault-info";
81
+ export * from "./vault-max-tvl-updated-event";
82
+ export * from "./vault-operator-changed-event";
83
+ export * from "./vault-paused-status-updated-event";
84
+ export * from "./vault-platform-fee-charged-event";
85
+ export * from "./vault-protocol";
86
+ export * from "./vault-rate-updated-event";
87
+ export * from "./vault-slice";
88
+ export * from "./vault-sub-account-updated-event";
89
+ export * from "./vault-tag";
90
+ export * from "./vault-withdrawal-without-redeeming-shares-event";
91
+ export * from "./vaults-deployment-config";
92
+ export * from "./vaults-deployment-config-config";
93
+ export * from "./vaults-stats";
94
+ export * from "./yield-aggregate-value";