@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.
Files changed (205) hide show
  1. package/dist/src/vaults/api/v2/api.d.ts +13 -0
  2. package/dist/src/vaults/api/v2/api.js +31 -0
  3. package/dist/src/vaults/api/v2/apis/accounts-api.d.ts +351 -0
  4. package/dist/src/vaults/api/v2/apis/accounts-api.js +656 -0
  5. package/dist/src/vaults/api/v2/apis/vaults-api.d.ts +570 -0
  6. package/dist/src/vaults/api/v2/apis/vaults-api.js +1150 -0
  7. package/dist/src/vaults/api/v2/base.d.ts +66 -0
  8. package/dist/src/vaults/api/v2/base.js +66 -0
  9. package/dist/src/vaults/api/v2/common.d.ts +65 -0
  10. package/dist/src/vaults/api/v2/common.js +152 -0
  11. package/dist/src/vaults/api/v2/configuration.d.ts +91 -0
  12. package/dist/src/vaults/api/v2/configuration.js +49 -0
  13. package/dist/src/vaults/api/v2/index.d.ts +14 -0
  14. package/dist/src/vaults/api/v2/index.js +32 -0
  15. package/dist/src/vaults/api/v2/models/account-transaction-transaction-data.d.ts +22 -0
  16. package/dist/src/vaults/api/v2/models/account-transaction-transaction-data.js +15 -0
  17. package/dist/src/vaults/api/v2/models/account-transaction.d.ts +45 -0
  18. package/dist/src/vaults/api/v2/models/account-transaction.js +23 -0
  19. package/dist/src/vaults/api/v2/models/account-vault-position-history.d.ts +89 -0
  20. package/dist/src/vaults/api/v2/models/account-vault-position-history.js +20 -0
  21. package/dist/src/vaults/api/v2/models/account-withdrawal-request.d.ts +107 -0
  22. package/dist/src/vaults/api/v2/models/account-withdrawal-request.js +24 -0
  23. package/dist/src/vaults/api/v2/models/aggregated-account-position-history.d.ts +59 -0
  24. package/dist/src/vaults/api/v2/models/aggregated-account-position-history.js +20 -0
  25. package/dist/src/vaults/api/v2/models/apy-history-response.d.ts +73 -0
  26. package/dist/src/vaults/api/v2/models/apy-history-response.js +15 -0
  27. package/dist/src/vaults/api/v2/models/apy-history.d.ts +42 -0
  28. package/dist/src/vaults/api/v2/models/apy-history.js +15 -0
  29. package/dist/src/vaults/api/v2/models/asset.d.ts +66 -0
  30. package/dist/src/vaults/api/v2/models/asset.js +15 -0
  31. package/dist/src/vaults/api/v2/models/borrowed.d.ts +43 -0
  32. package/dist/src/vaults/api/v2/models/borrowed.js +15 -0
  33. package/dist/src/vaults/api/v2/models/chain-vault-details.d.ts +74 -0
  34. package/dist/src/vaults/api/v2/models/chain-vault-details.js +15 -0
  35. package/dist/src/vaults/api/v2/models/chain.d.ts +60 -0
  36. package/dist/src/vaults/api/v2/models/chain.js +21 -0
  37. package/dist/src/vaults/api/v2/models/coin-price.d.ts +36 -0
  38. package/dist/src/vaults/api/v2/models/coin-price.js +15 -0
  39. package/dist/src/vaults/api/v2/models/deposit-transaction.d.ts +68 -0
  40. package/dist/src/vaults/api/v2/models/deposit-transaction.js +15 -0
  41. package/dist/src/vaults/api/v2/models/ember-position.d.ts +31 -0
  42. package/dist/src/vaults/api/v2/models/ember-position.js +15 -0
  43. package/dist/src/vaults/api/v2/models/evm-contracts.d.ts +61 -0
  44. package/dist/src/vaults/api/v2/models/evm-contracts.js +15 -0
  45. package/dist/src/vaults/api/v2/models/evm-deposit-token.d.ts +66 -0
  46. package/dist/src/vaults/api/v2/models/evm-deposit-token.js +15 -0
  47. package/dist/src/vaults/api/v2/models/evm-price-feed.d.ts +54 -0
  48. package/dist/src/vaults/api/v2/models/evm-price-feed.js +15 -0
  49. package/dist/src/vaults/api/v2/models/evm-protocol-config.d.ts +48 -0
  50. package/dist/src/vaults/api/v2/models/evm-protocol-config.js +15 -0
  51. package/dist/src/vaults/api/v2/models/evm-protocol-info.d.ts +37 -0
  52. package/dist/src/vaults/api/v2/models/evm-protocol-info.js +15 -0
  53. package/dist/src/vaults/api/v2/models/evm-receipt-token.d.ts +72 -0
  54. package/dist/src/vaults/api/v2/models/evm-receipt-token.js +15 -0
  55. package/dist/src/vaults/api/v2/models/evm-vault.d.ts +114 -0
  56. package/dist/src/vaults/api/v2/models/evm-vault.js +15 -0
  57. package/dist/src/vaults/api/v2/models/exposure-coin.d.ts +37 -0
  58. package/dist/src/vaults/api/v2/models/exposure-coin.js +15 -0
  59. package/dist/src/vaults/api/v2/models/exposure-protocol.d.ts +66 -0
  60. package/dist/src/vaults/api/v2/models/exposure-protocol.js +15 -0
  61. package/dist/src/vaults/api/v2/models/exposure.d.ts +38 -0
  62. package/dist/src/vaults/api/v2/models/exposure.js +15 -0
  63. package/dist/src/vaults/api/v2/models/fee.d.ts +37 -0
  64. package/dist/src/vaults/api/v2/models/fee.js +15 -0
  65. package/dist/src/vaults/api/v2/models/fees.d.ts +42 -0
  66. package/dist/src/vaults/api/v2/models/fees.js +15 -0
  67. package/dist/src/vaults/api/v2/models/history-interval.d.ts +23 -0
  68. package/dist/src/vaults/api/v2/models/history-interval.js +27 -0
  69. package/dist/src/vaults/api/v2/models/index.d.ts +94 -0
  70. package/dist/src/vaults/api/v2/models/index.js +110 -0
  71. package/dist/src/vaults/api/v2/models/lp.d.ts +81 -0
  72. package/dist/src/vaults/api/v2/models/lp.js +15 -0
  73. package/dist/src/vaults/api/v2/models/manager.d.ts +42 -0
  74. package/dist/src/vaults/api/v2/models/manager.js +15 -0
  75. package/dist/src/vaults/api/v2/models/min-withdrawal-shares-updated-event.d.ts +42 -0
  76. package/dist/src/vaults/api/v2/models/min-withdrawal-shares-updated-event.js +15 -0
  77. package/dist/src/vaults/api/v2/models/perps.d.ts +31 -0
  78. package/dist/src/vaults/api/v2/models/perps.js +15 -0
  79. package/dist/src/vaults/api/v2/models/pnl-by-chain.d.ts +48 -0
  80. package/dist/src/vaults/api/v2/models/pnl-by-chain.js +15 -0
  81. package/dist/src/vaults/api/v2/models/pnl-history-interval.d.ts +22 -0
  82. package/dist/src/vaults/api/v2/models/pnl-history-interval.js +26 -0
  83. package/dist/src/vaults/api/v2/models/pnl-history.d.ts +48 -0
  84. package/dist/src/vaults/api/v2/models/pnl-history.js +15 -0
  85. package/dist/src/vaults/api/v2/models/poc-report-asset.d.ts +54 -0
  86. package/dist/src/vaults/api/v2/models/poc-report-asset.js +15 -0
  87. package/dist/src/vaults/api/v2/models/poc-report-assets.d.ts +37 -0
  88. package/dist/src/vaults/api/v2/models/poc-report-assets.js +15 -0
  89. package/dist/src/vaults/api/v2/models/poc-report-exchange.d.ts +43 -0
  90. package/dist/src/vaults/api/v2/models/poc-report-exchange.js +15 -0
  91. package/dist/src/vaults/api/v2/models/poc-report-exchanges.d.ts +37 -0
  92. package/dist/src/vaults/api/v2/models/poc-report-exchanges.js +15 -0
  93. package/dist/src/vaults/api/v2/models/poc-report-protocol.d.ts +36 -0
  94. package/dist/src/vaults/api/v2/models/poc-report-protocol.js +15 -0
  95. package/dist/src/vaults/api/v2/models/poc-report-token.d.ts +36 -0
  96. package/dist/src/vaults/api/v2/models/poc-report-token.js +15 -0
  97. package/dist/src/vaults/api/v2/models/poc-report-wallet.d.ts +80 -0
  98. package/dist/src/vaults/api/v2/models/poc-report-wallet.js +15 -0
  99. package/dist/src/vaults/api/v2/models/poc-report-wallets.d.ts +37 -0
  100. package/dist/src/vaults/api/v2/models/poc-report-wallets.js +15 -0
  101. package/dist/src/vaults/api/v2/models/position-history-interval.d.ts +22 -0
  102. package/dist/src/vaults/api/v2/models/position-history-interval.js +26 -0
  103. package/dist/src/vaults/api/v2/models/position-value.d.ts +89 -0
  104. package/dist/src/vaults/api/v2/models/position-value.js +20 -0
  105. package/dist/src/vaults/api/v2/models/position.d.ts +42 -0
  106. package/dist/src/vaults/api/v2/models/position.js +15 -0
  107. package/dist/src/vaults/api/v2/models/process-requests-summary-event.d.ts +78 -0
  108. package/dist/src/vaults/api/v2/models/process-requests-summary-event.js +15 -0
  109. package/dist/src/vaults/api/v2/models/proof-of-capital-report.d.ts +69 -0
  110. package/dist/src/vaults/api/v2/models/proof-of-capital-report.js +15 -0
  111. package/dist/src/vaults/api/v2/models/protocol-fee-collected-event.d.ts +60 -0
  112. package/dist/src/vaults/api/v2/models/protocol-fee-collected-event.js +15 -0
  113. package/dist/src/vaults/api/v2/models/protocol-pnl-history.d.ts +36 -0
  114. package/dist/src/vaults/api/v2/models/protocol-pnl-history.js +15 -0
  115. package/dist/src/vaults/api/v2/models/protocol-tvl-history.d.ts +30 -0
  116. package/dist/src/vaults/api/v2/models/protocol-tvl-history.js +15 -0
  117. package/dist/src/vaults/api/v2/models/protocol.d.ts +42 -0
  118. package/dist/src/vaults/api/v2/models/protocol.js +15 -0
  119. package/dist/src/vaults/api/v2/models/raw-event-event-data.d.ts +34 -0
  120. package/dist/src/vaults/api/v2/models/raw-event-event-data.js +15 -0
  121. package/dist/src/vaults/api/v2/models/raw-event.d.ts +63 -0
  122. package/dist/src/vaults/api/v2/models/raw-event.js +35 -0
  123. package/dist/src/vaults/api/v2/models/redeem-request-cancelled-transaction.d.ts +56 -0
  124. package/dist/src/vaults/api/v2/models/redeem-request-cancelled-transaction.js +15 -0
  125. package/dist/src/vaults/api/v2/models/redeem-request-processed-transaction.d.ts +68 -0
  126. package/dist/src/vaults/api/v2/models/redeem-request-processed-transaction.js +15 -0
  127. package/dist/src/vaults/api/v2/models/redeem-request-skipped-transaction.d.ts +56 -0
  128. package/dist/src/vaults/api/v2/models/redeem-request-skipped-transaction.js +15 -0
  129. package/dist/src/vaults/api/v2/models/redeem-request-transaction.d.ts +56 -0
  130. package/dist/src/vaults/api/v2/models/redeem-request-transaction.js +15 -0
  131. package/dist/src/vaults/api/v2/models/reported-apy.d.ts +42 -0
  132. package/dist/src/vaults/api/v2/models/reported-apy.js +15 -0
  133. package/dist/src/vaults/api/v2/models/request-processed-event.d.ts +78 -0
  134. package/dist/src/vaults/api/v2/models/request-processed-event.js +15 -0
  135. package/dist/src/vaults/api/v2/models/request-redeemed-event.d.ts +72 -0
  136. package/dist/src/vaults/api/v2/models/request-redeemed-event.js +15 -0
  137. package/dist/src/vaults/api/v2/models/reward-token.d.ts +48 -0
  138. package/dist/src/vaults/api/v2/models/reward-token.js +15 -0
  139. package/dist/src/vaults/api/v2/models/reward.d.ts +37 -0
  140. package/dist/src/vaults/api/v2/models/reward.js +15 -0
  141. package/dist/src/vaults/api/v2/models/share-price-history.d.ts +30 -0
  142. package/dist/src/vaults/api/v2/models/share-price-history.js +15 -0
  143. package/dist/src/vaults/api/v2/models/strategy-account.d.ts +49 -0
  144. package/dist/src/vaults/api/v2/models/strategy-account.js +15 -0
  145. package/dist/src/vaults/api/v2/models/strategy.d.ts +60 -0
  146. package/dist/src/vaults/api/v2/models/strategy.js +15 -0
  147. package/dist/src/vaults/api/v2/models/sub-account.d.ts +31 -0
  148. package/dist/src/vaults/api/v2/models/sub-account.js +15 -0
  149. package/dist/src/vaults/api/v2/models/sui-protocol-info.d.ts +41 -0
  150. package/dist/src/vaults/api/v2/models/sui-protocol-info.js +15 -0
  151. package/dist/src/vaults/api/v2/models/supplied.d.ts +43 -0
  152. package/dist/src/vaults/api/v2/models/supplied.js +15 -0
  153. package/dist/src/vaults/api/v2/models/tag.d.ts +60 -0
  154. package/dist/src/vaults/api/v2/models/tag.js +15 -0
  155. package/dist/src/vaults/api/v2/models/tvl-by-chain.d.ts +36 -0
  156. package/dist/src/vaults/api/v2/models/tvl-by-chain.js +15 -0
  157. package/dist/src/vaults/api/v2/models/tvl-history.d.ts +43 -0
  158. package/dist/src/vaults/api/v2/models/tvl-history.js +15 -0
  159. package/dist/src/vaults/api/v2/models/ultra-coin-info.d.ts +54 -0
  160. package/dist/src/vaults/api/v2/models/ultra-coin-info.js +15 -0
  161. package/dist/src/vaults/api/v2/models/update-vault-strategies.d.ts +61 -0
  162. package/dist/src/vaults/api/v2/models/update-vault-strategies.js +15 -0
  163. package/dist/src/vaults/api/v2/models/vault-admin-changed-event.d.ts +42 -0
  164. package/dist/src/vaults/api/v2/models/vault-admin-changed-event.js +15 -0
  165. package/dist/src/vaults/api/v2/models/vault-created-event.d.ts +60 -0
  166. package/dist/src/vaults/api/v2/models/vault-created-event.js +15 -0
  167. package/dist/src/vaults/api/v2/models/vault-deposit-event.d.ts +72 -0
  168. package/dist/src/vaults/api/v2/models/vault-deposit-event.js +15 -0
  169. package/dist/src/vaults/api/v2/models/vault-deposit-without-minting-shares-event.d.ts +60 -0
  170. package/dist/src/vaults/api/v2/models/vault-deposit-without-minting-shares-event.js +15 -0
  171. package/dist/src/vaults/api/v2/models/vault-detail.d.ts +196 -0
  172. package/dist/src/vaults/api/v2/models/vault-detail.js +22 -0
  173. package/dist/src/vaults/api/v2/models/vault-fee-percentage-updated-event.d.ts +42 -0
  174. package/dist/src/vaults/api/v2/models/vault-fee-percentage-updated-event.js +15 -0
  175. package/dist/src/vaults/api/v2/models/vault-info.d.ts +84 -0
  176. package/dist/src/vaults/api/v2/models/vault-info.js +15 -0
  177. package/dist/src/vaults/api/v2/models/vault-max-tvl-updated-event.d.ts +42 -0
  178. package/dist/src/vaults/api/v2/models/vault-max-tvl-updated-event.js +15 -0
  179. package/dist/src/vaults/api/v2/models/vault-operator-changed-event.d.ts +42 -0
  180. package/dist/src/vaults/api/v2/models/vault-operator-changed-event.js +15 -0
  181. package/dist/src/vaults/api/v2/models/vault-paused-status-updated-event.d.ts +36 -0
  182. package/dist/src/vaults/api/v2/models/vault-paused-status-updated-event.js +15 -0
  183. package/dist/src/vaults/api/v2/models/vault-platform-fee-charged-event.d.ts +48 -0
  184. package/dist/src/vaults/api/v2/models/vault-platform-fee-charged-event.js +15 -0
  185. package/dist/src/vaults/api/v2/models/vault-protocol.d.ts +42 -0
  186. package/dist/src/vaults/api/v2/models/vault-protocol.js +15 -0
  187. package/dist/src/vaults/api/v2/models/vault-rate-updated-event.d.ts +42 -0
  188. package/dist/src/vaults/api/v2/models/vault-rate-updated-event.js +15 -0
  189. package/dist/src/vaults/api/v2/models/vault-slice.d.ts +48 -0
  190. package/dist/src/vaults/api/v2/models/vault-slice.js +15 -0
  191. package/dist/src/vaults/api/v2/models/vault-sub-account-updated-event.d.ts +54 -0
  192. package/dist/src/vaults/api/v2/models/vault-sub-account-updated-event.js +15 -0
  193. package/dist/src/vaults/api/v2/models/vault-tag.d.ts +48 -0
  194. package/dist/src/vaults/api/v2/models/vault-tag.js +15 -0
  195. package/dist/src/vaults/api/v2/models/vault-withdrawal-without-redeeming-shares-event.d.ts +60 -0
  196. package/dist/src/vaults/api/v2/models/vault-withdrawal-without-redeeming-shares-event.js +15 -0
  197. package/dist/src/vaults/api/v2/models/vaults-deployment-config-config.d.ts +19 -0
  198. package/dist/src/vaults/api/v2/models/vaults-deployment-config-config.js +15 -0
  199. package/dist/src/vaults/api/v2/models/vaults-deployment-config.d.ts +42 -0
  200. package/dist/src/vaults/api/v2/models/vaults-deployment-config.js +20 -0
  201. package/dist/src/vaults/api/v2/models/vaults-stats.d.ts +42 -0
  202. package/dist/src/vaults/api/v2/models/vaults-stats.js +15 -0
  203. package/dist/src/vaults/api/v2/models/yield-aggregate-value.d.ts +48 -0
  204. package/dist/src/vaults/api/v2/models/yield-aggregate-value.js +15 -0
  205. package/package.json +3 -2
@@ -0,0 +1,110 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./account-transaction"), exports);
18
+ __exportStar(require("./account-transaction-transaction-data"), exports);
19
+ __exportStar(require("./account-vault-position-history"), exports);
20
+ __exportStar(require("./account-withdrawal-request"), exports);
21
+ __exportStar(require("./aggregated-account-position-history"), exports);
22
+ __exportStar(require("./apy-history"), exports);
23
+ __exportStar(require("./apy-history-response"), exports);
24
+ __exportStar(require("./asset"), exports);
25
+ __exportStar(require("./borrowed"), exports);
26
+ __exportStar(require("./chain"), exports);
27
+ __exportStar(require("./chain-vault-details"), exports);
28
+ __exportStar(require("./coin-price"), exports);
29
+ __exportStar(require("./deposit-transaction"), exports);
30
+ __exportStar(require("./ember-position"), exports);
31
+ __exportStar(require("./evm-contracts"), exports);
32
+ __exportStar(require("./evm-deposit-token"), exports);
33
+ __exportStar(require("./evm-price-feed"), exports);
34
+ __exportStar(require("./evm-protocol-config"), exports);
35
+ __exportStar(require("./evm-protocol-info"), exports);
36
+ __exportStar(require("./evm-receipt-token"), exports);
37
+ __exportStar(require("./evm-vault"), exports);
38
+ __exportStar(require("./exposure"), exports);
39
+ __exportStar(require("./exposure-coin"), exports);
40
+ __exportStar(require("./exposure-protocol"), exports);
41
+ __exportStar(require("./fee"), exports);
42
+ __exportStar(require("./fees"), exports);
43
+ __exportStar(require("./history-interval"), exports);
44
+ __exportStar(require("./lp"), exports);
45
+ __exportStar(require("./manager"), exports);
46
+ __exportStar(require("./min-withdrawal-shares-updated-event"), exports);
47
+ __exportStar(require("./perps"), exports);
48
+ __exportStar(require("./pnl-by-chain"), exports);
49
+ __exportStar(require("./pnl-history"), exports);
50
+ __exportStar(require("./pnl-history-interval"), exports);
51
+ __exportStar(require("./poc-report-asset"), exports);
52
+ __exportStar(require("./poc-report-assets"), exports);
53
+ __exportStar(require("./poc-report-exchange"), exports);
54
+ __exportStar(require("./poc-report-exchanges"), exports);
55
+ __exportStar(require("./poc-report-protocol"), exports);
56
+ __exportStar(require("./poc-report-token"), exports);
57
+ __exportStar(require("./poc-report-wallet"), exports);
58
+ __exportStar(require("./poc-report-wallets"), exports);
59
+ __exportStar(require("./position"), exports);
60
+ __exportStar(require("./position-history-interval"), exports);
61
+ __exportStar(require("./position-value"), exports);
62
+ __exportStar(require("./process-requests-summary-event"), exports);
63
+ __exportStar(require("./proof-of-capital-report"), exports);
64
+ __exportStar(require("./protocol"), exports);
65
+ __exportStar(require("./protocol-fee-collected-event"), exports);
66
+ __exportStar(require("./protocol-pnl-history"), exports);
67
+ __exportStar(require("./protocol-tvl-history"), exports);
68
+ __exportStar(require("./raw-event"), exports);
69
+ __exportStar(require("./raw-event-event-data"), exports);
70
+ __exportStar(require("./redeem-request-cancelled-transaction"), exports);
71
+ __exportStar(require("./redeem-request-processed-transaction"), exports);
72
+ __exportStar(require("./redeem-request-skipped-transaction"), exports);
73
+ __exportStar(require("./redeem-request-transaction"), exports);
74
+ __exportStar(require("./reported-apy"), exports);
75
+ __exportStar(require("./request-processed-event"), exports);
76
+ __exportStar(require("./request-redeemed-event"), exports);
77
+ __exportStar(require("./reward"), exports);
78
+ __exportStar(require("./reward-token"), exports);
79
+ __exportStar(require("./share-price-history"), exports);
80
+ __exportStar(require("./strategy"), exports);
81
+ __exportStar(require("./strategy-account"), exports);
82
+ __exportStar(require("./sub-account"), exports);
83
+ __exportStar(require("./sui-protocol-info"), exports);
84
+ __exportStar(require("./supplied"), exports);
85
+ __exportStar(require("./tag"), exports);
86
+ __exportStar(require("./tvl-by-chain"), exports);
87
+ __exportStar(require("./tvl-history"), exports);
88
+ __exportStar(require("./ultra-coin-info"), exports);
89
+ __exportStar(require("./update-vault-strategies"), exports);
90
+ __exportStar(require("./vault-admin-changed-event"), exports);
91
+ __exportStar(require("./vault-created-event"), exports);
92
+ __exportStar(require("./vault-deposit-event"), exports);
93
+ __exportStar(require("./vault-deposit-without-minting-shares-event"), exports);
94
+ __exportStar(require("./vault-detail"), exports);
95
+ __exportStar(require("./vault-fee-percentage-updated-event"), exports);
96
+ __exportStar(require("./vault-info"), exports);
97
+ __exportStar(require("./vault-max-tvl-updated-event"), exports);
98
+ __exportStar(require("./vault-operator-changed-event"), exports);
99
+ __exportStar(require("./vault-paused-status-updated-event"), exports);
100
+ __exportStar(require("./vault-platform-fee-charged-event"), exports);
101
+ __exportStar(require("./vault-protocol"), exports);
102
+ __exportStar(require("./vault-rate-updated-event"), exports);
103
+ __exportStar(require("./vault-slice"), exports);
104
+ __exportStar(require("./vault-sub-account-updated-event"), exports);
105
+ __exportStar(require("./vault-tag"), exports);
106
+ __exportStar(require("./vault-withdrawal-without-redeeming-shares-event"), exports);
107
+ __exportStar(require("./vaults-deployment-config"), exports);
108
+ __exportStar(require("./vaults-deployment-config-config"), exports);
109
+ __exportStar(require("./vaults-stats"), exports);
110
+ __exportStar(require("./yield-aggregate-value"), exports);
@@ -0,0 +1,81 @@
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
+ import type { Fee } from "./fee";
14
+ import type { Reward } from "./reward";
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface Lp
19
+ */
20
+ export interface Lp {
21
+ /**
22
+ *
23
+ * @type {Asset}
24
+ * @memberof Lp
25
+ */
26
+ coinA: Asset;
27
+ /**
28
+ *
29
+ * @type {Asset}
30
+ * @memberof Lp
31
+ */
32
+ coinB: Asset;
33
+ /**
34
+ * The amount of coin A
35
+ * @type {string}
36
+ * @memberof Lp
37
+ */
38
+ coinAAmount: string;
39
+ /**
40
+ * The amount of coin B
41
+ * @type {string}
42
+ * @memberof Lp
43
+ */
44
+ coinBAmount: string;
45
+ /**
46
+ * The amount of coin A in e9 in USDC
47
+ * @type {string}
48
+ * @memberof Lp
49
+ */
50
+ coinAAmountUsdE9: string;
51
+ /**
52
+ * The amount of coin B in e9 in USDC
53
+ * @type {string}
54
+ * @memberof Lp
55
+ */
56
+ coinBAmountUsdE9: string;
57
+ /**
58
+ * The apr of the lp in percentage
59
+ * @type {string}
60
+ * @memberof Lp
61
+ */
62
+ apy: string;
63
+ /**
64
+ * The name of the pool
65
+ * @type {string}
66
+ * @memberof Lp
67
+ */
68
+ poolName: string;
69
+ /**
70
+ * The rewards of the lp
71
+ * @type {Array<Reward>}
72
+ * @memberof Lp
73
+ */
74
+ rewards: Array<Reward>;
75
+ /**
76
+ * The fees of the lp
77
+ * @type {Array<Fee>}
78
+ * @memberof Lp
79
+ */
80
+ fees: Array<Fee>;
81
+ }
@@ -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 Manager
16
+ */
17
+ export interface Manager {
18
+ /**
19
+ * ID of the manager
20
+ * @type {string}
21
+ * @memberof Manager
22
+ */
23
+ id: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof Manager
28
+ */
29
+ name: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof Manager
34
+ */
35
+ logoUrl: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof Manager
40
+ */
41
+ websiteUrl: 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,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 MinWithdrawalSharesUpdatedEvent
16
+ */
17
+ export interface MinWithdrawalSharesUpdatedEvent {
18
+ /**
19
+ * The id of the vault
20
+ * @type {string}
21
+ * @memberof MinWithdrawalSharesUpdatedEvent
22
+ */
23
+ vaultId?: string;
24
+ /**
25
+ * The previous min withdrawal shares
26
+ * @type {string}
27
+ * @memberof MinWithdrawalSharesUpdatedEvent
28
+ */
29
+ previousMinWithdrawalShares?: string;
30
+ /**
31
+ * The new min withdrawal shares
32
+ * @type {string}
33
+ * @memberof MinWithdrawalSharesUpdatedEvent
34
+ */
35
+ newMinWithdrawalShares?: string;
36
+ /**
37
+ * The sequence number of the event
38
+ * @type {string}
39
+ * @memberof MinWithdrawalSharesUpdatedEvent
40
+ */
41
+ sequenceNumber?: 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,31 @@
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 { Position } from "./position";
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface Perps
17
+ */
18
+ export interface Perps {
19
+ /**
20
+ * Available balance in e9 in USDC
21
+ * @type {string}
22
+ * @memberof Perps
23
+ */
24
+ effectiveBalanceE9: string;
25
+ /**
26
+ * The positions of the perps
27
+ * @type {Array<Position>}
28
+ * @memberof Perps
29
+ */
30
+ positions: Array<Position>;
31
+ }
@@ -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,48 @@
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 PnlByChain
16
+ */
17
+ export interface PnlByChain {
18
+ /**
19
+ * The identifier of the chain
20
+ * @type {string}
21
+ * @memberof PnlByChain
22
+ */
23
+ chain: string;
24
+ /**
25
+ * The pnl in terms of usd
26
+ * @type {string}
27
+ * @memberof PnlByChain
28
+ */
29
+ pnlUsdE9: string;
30
+ /**
31
+ * The pnl in terms of deposit coin amount
32
+ * @type {string}
33
+ * @memberof PnlByChain
34
+ */
35
+ pnlInCoinAmount: string;
36
+ /**
37
+ * The cumulative pnl in terms of usd
38
+ * @type {string}
39
+ * @memberof PnlByChain
40
+ */
41
+ cumulativePnlUsdE9?: string;
42
+ /**
43
+ * The cumulative pnl in terms of deposit coin amount
44
+ * @type {string}
45
+ * @memberof PnlByChain
46
+ */
47
+ cumulativePnlInCoinAmount?: string;
48
+ }
@@ -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 PnlHistoryInterval: {
18
+ readonly _1d: "1d";
19
+ readonly _1w: "1w";
20
+ readonly _1mon: "1mon";
21
+ };
22
+ export type PnlHistoryInterval = (typeof PnlHistoryInterval)[keyof typeof PnlHistoryInterval];
@@ -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.PnlHistoryInterval = void 0;
17
+ /**
18
+ *
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.PnlHistoryInterval = {
23
+ _1d: "1d",
24
+ _1w: "1w",
25
+ _1mon: "1mon"
26
+ };
@@ -0,0 +1,48 @@
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 PnlHistory
16
+ */
17
+ export interface PnlHistory {
18
+ /**
19
+ * The timestamp of the event
20
+ * @type {number}
21
+ * @memberof PnlHistory
22
+ */
23
+ timestamp: number;
24
+ /**
25
+ * The chains aggregated pnl in terms of usd
26
+ * @type {string}
27
+ * @memberof PnlHistory
28
+ */
29
+ pnlUsdE9: string;
30
+ /**
31
+ * The chains aggregated cumulative pnl in terms of usd
32
+ * @type {string}
33
+ * @memberof PnlHistory
34
+ */
35
+ cumulativePnlUsdE9: string;
36
+ /**
37
+ * The chains aggregated pnl in terms of of coin amount in e9
38
+ * @type {string}
39
+ * @memberof PnlHistory
40
+ */
41
+ pnlInCoinAmountE9?: string;
42
+ /**
43
+ * The chains aggregated cumulative pnl in terms of of coin amount in e9
44
+ * @type {string}
45
+ * @memberof PnlHistory
46
+ */
47
+ cumulativePnlInCoinAmountE9?: string;
48
+ }
@@ -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,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 });