@ember-finance/sdk 1.0.0 → 1.0.2

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 (109) hide show
  1. package/README.md +3 -3
  2. package/dist/src/vaults/api/api.d.ts +13 -0
  3. package/dist/src/vaults/api/api.js +31 -0
  4. package/dist/src/vaults/api/apis/accounts-api.d.ts +198 -0
  5. package/dist/src/vaults/api/apis/accounts-api.js +366 -0
  6. package/dist/src/vaults/api/apis/vaults-api.d.ts +441 -0
  7. package/dist/src/vaults/api/apis/vaults-api.js +903 -0
  8. package/dist/src/vaults/api/base.d.ts +42 -0
  9. package/dist/src/vaults/api/base.js +47 -0
  10. package/dist/src/vaults/api/common.d.ts +28 -0
  11. package/dist/src/vaults/api/common.js +115 -0
  12. package/dist/src/vaults/api/configuration.d.ts +74 -0
  13. package/dist/src/vaults/api/configuration.js +49 -0
  14. package/dist/src/vaults/api/index.d.ts +14 -0
  15. package/dist/src/vaults/api/index.js +32 -0
  16. package/dist/src/vaults/api/models/account-transaction-transaction-data.d.ts +21 -0
  17. package/dist/src/vaults/api/models/account-transaction-transaction-data.js +15 -0
  18. package/dist/src/vaults/api/models/account-transaction.d.ts +27 -0
  19. package/dist/src/vaults/api/models/account-transaction.js +23 -0
  20. package/dist/src/vaults/api/models/account-withdrawal-request.d.ts +63 -0
  21. package/dist/src/vaults/api/models/account-withdrawal-request.js +24 -0
  22. package/dist/src/vaults/api/models/asset.d.ts +41 -0
  23. package/dist/src/vaults/api/models/asset.js +15 -0
  24. package/dist/src/vaults/api/models/deposit-transaction.d.ts +38 -0
  25. package/dist/src/vaults/api/models/deposit-transaction.js +15 -0
  26. package/dist/src/vaults/api/models/exposure-coin.d.ts +23 -0
  27. package/dist/src/vaults/api/models/exposure-coin.js +15 -0
  28. package/dist/src/vaults/api/models/exposure-protocol.d.ts +19 -0
  29. package/dist/src/vaults/api/models/exposure-protocol.js +15 -0
  30. package/dist/src/vaults/api/models/exposure.d.ts +27 -0
  31. package/dist/src/vaults/api/models/exposure.js +15 -0
  32. package/dist/src/vaults/api/models/history-interval.d.ts +18 -0
  33. package/dist/src/vaults/api/models/history-interval.js +22 -0
  34. package/dist/src/vaults/api/models/index.d.ts +43 -0
  35. package/dist/src/vaults/api/models/index.js +59 -0
  36. package/dist/src/vaults/api/models/manager.d.ts +20 -0
  37. package/dist/src/vaults/api/models/manager.js +15 -0
  38. package/dist/src/vaults/api/models/min-withdrawal-shares-updated-event.d.ts +29 -0
  39. package/dist/src/vaults/api/models/min-withdrawal-shares-updated-event.js +15 -0
  40. package/dist/src/vaults/api/models/pnl-history.d.ts +21 -0
  41. package/dist/src/vaults/api/models/pnl-history.js +15 -0
  42. package/dist/src/vaults/api/models/protocol-info.d.ts +27 -0
  43. package/dist/src/vaults/api/models/protocol-info.js +15 -0
  44. package/dist/src/vaults/api/models/protocol.d.ts +38 -0
  45. package/dist/src/vaults/api/models/protocol.js +23 -0
  46. package/dist/src/vaults/api/models/raw-event-event-data.d.ts +28 -0
  47. package/dist/src/vaults/api/models/raw-event-event-data.js +15 -0
  48. package/dist/src/vaults/api/models/raw-event.d.ts +42 -0
  49. package/dist/src/vaults/api/models/raw-event.js +30 -0
  50. package/dist/src/vaults/api/models/redeem-request-cancelled-transaction.d.ts +33 -0
  51. package/dist/src/vaults/api/models/redeem-request-cancelled-transaction.js +15 -0
  52. package/dist/src/vaults/api/models/redeem-request-processed-transaction.d.ts +38 -0
  53. package/dist/src/vaults/api/models/redeem-request-processed-transaction.js +15 -0
  54. package/dist/src/vaults/api/models/redeem-request-skipped-transaction.d.ts +33 -0
  55. package/dist/src/vaults/api/models/redeem-request-skipped-transaction.js +15 -0
  56. package/dist/src/vaults/api/models/redeem-request-transaction.d.ts +33 -0
  57. package/dist/src/vaults/api/models/redeem-request-transaction.js +15 -0
  58. package/dist/src/vaults/api/models/reported-apy.d.ts +15 -0
  59. package/dist/src/vaults/api/models/reported-apy.js +15 -0
  60. package/dist/src/vaults/api/models/request-processed-event.d.ts +53 -0
  61. package/dist/src/vaults/api/models/request-processed-event.js +15 -0
  62. package/dist/src/vaults/api/models/request-redeemed-event.d.ts +49 -0
  63. package/dist/src/vaults/api/models/request-redeemed-event.js +15 -0
  64. package/dist/src/vaults/api/models/reward-token.d.ts +27 -0
  65. package/dist/src/vaults/api/models/reward-token.js +15 -0
  66. package/dist/src/vaults/api/models/share-price-history.d.ts +21 -0
  67. package/dist/src/vaults/api/models/share-price-history.js +15 -0
  68. package/dist/src/vaults/api/models/strategy.d.ts +41 -0
  69. package/dist/src/vaults/api/models/strategy.js +15 -0
  70. package/dist/src/vaults/api/models/sub-account.d.ts +19 -0
  71. package/dist/src/vaults/api/models/sub-account.js +15 -0
  72. package/dist/src/vaults/api/models/tvl-history.d.ts +21 -0
  73. package/dist/src/vaults/api/models/tvl-history.js +15 -0
  74. package/dist/src/vaults/api/models/ultra-coin-info.d.ts +37 -0
  75. package/dist/src/vaults/api/models/ultra-coin-info.js +15 -0
  76. package/dist/src/vaults/api/models/update-vault-strategies.d.ts +31 -0
  77. package/dist/src/vaults/api/models/update-vault-strategies.js +15 -0
  78. package/dist/src/vaults/api/models/vault-admin-changed-event.d.ts +29 -0
  79. package/dist/src/vaults/api/models/vault-admin-changed-event.js +15 -0
  80. package/dist/src/vaults/api/models/vault-created-event.d.ts +38 -0
  81. package/dist/src/vaults/api/models/vault-created-event.js +15 -0
  82. package/dist/src/vaults/api/models/vault-deposit-event.d.ts +49 -0
  83. package/dist/src/vaults/api/models/vault-deposit-event.js +15 -0
  84. package/dist/src/vaults/api/models/vault-detail.d.ts +95 -0
  85. package/dist/src/vaults/api/models/vault-detail.js +22 -0
  86. package/dist/src/vaults/api/models/vault-fee-percentage-updated-event.d.ts +29 -0
  87. package/dist/src/vaults/api/models/vault-fee-percentage-updated-event.js +15 -0
  88. package/dist/src/vaults/api/models/vault-info.d.ts +57 -0
  89. package/dist/src/vaults/api/models/vault-info.js +15 -0
  90. package/dist/src/vaults/api/models/vault-max-tvl-updated-event.d.ts +29 -0
  91. package/dist/src/vaults/api/models/vault-max-tvl-updated-event.js +15 -0
  92. package/dist/src/vaults/api/models/vault-operator-changed-event.d.ts +29 -0
  93. package/dist/src/vaults/api/models/vault-operator-changed-event.js +15 -0
  94. package/dist/src/vaults/api/models/vault-paused-status-updated-event.d.ts +25 -0
  95. package/dist/src/vaults/api/models/vault-paused-status-updated-event.js +15 -0
  96. package/dist/src/vaults/api/models/vault-protocol.d.ts +29 -0
  97. package/dist/src/vaults/api/models/vault-protocol.js +15 -0
  98. package/dist/src/vaults/api/models/vault-rate-updated-event.d.ts +29 -0
  99. package/dist/src/vaults/api/models/vault-rate-updated-event.js +15 -0
  100. package/dist/src/vaults/api/models/vault-slice.d.ts +33 -0
  101. package/dist/src/vaults/api/models/vault-slice.js +15 -0
  102. package/dist/src/vaults/api/models/vault-sub-account-updated-event.d.ts +37 -0
  103. package/dist/src/vaults/api/models/vault-sub-account-updated-event.js +15 -0
  104. package/dist/src/vaults/{bluefin-vaults.d.ts → ember-vaults.d.ts} +5 -1
  105. package/dist/src/vaults/{bluefin-vaults.js → ember-vaults.js} +19 -4
  106. package/dist/src/vaults/index.d.ts +5 -0
  107. package/dist/src/vaults/index.js +21 -0
  108. package/dist/src/vaults/on-chain-calls/onchain-calls.js +1 -1
  109. package/package.json +7 -3
@@ -0,0 +1,30 @@
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.RawEventEventTypeEnum = void 0;
17
+ exports.RawEventEventTypeEnum = {
18
+ RequestProcessedEvent: "RequestProcessedEvent",
19
+ RequestRedeemedEvent: "RequestRedeemedEvent",
20
+ VaultDepositEvent: "VaultDepositEvent",
21
+ VaultPausedStatusUpdatedEvent: "VaultPausedStatusUpdatedEvent",
22
+ VaultRateUpdatedEvent: "VaultRateUpdatedEvent",
23
+ VaultCreatedEvent: "VaultCreatedEvent",
24
+ VaultSubAccountUpdatedEvent: "VaultSubAccountUpdatedEvent",
25
+ VaultFeePercentageUpdatedEvent: "VaultFeePercentageUpdatedEvent",
26
+ MinWithdrawalSharesUpdatedEvent: "MinWithdrawalSharesUpdatedEvent",
27
+ VaultAdminChangedEvent: "VaultAdminChangedEvent",
28
+ VaultOperatorChangedEvent: "VaultOperatorChangedEvent",
29
+ VaultMaxTvlUpdatedEvent: "VaultMaxTvlUpdatedEvent"
30
+ };
@@ -0,0 +1,33 @@
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 { VaultSlice } from "./vault-slice";
14
+ export interface RedeemRequestCancelledTransaction {
15
+ /**
16
+ * The timestamp of the event
17
+ */
18
+ timestamp?: number;
19
+ /**
20
+ * The amount of the transaction
21
+ */
22
+ amount?: string;
23
+ coin?: Asset;
24
+ vault?: VaultSlice;
25
+ /**
26
+ * The tx digest of the transaction
27
+ */
28
+ txDigest?: string;
29
+ /**
30
+ * The sequence number of the transaction
31
+ */
32
+ sequenceNumber?: string;
33
+ }
@@ -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 { Asset } from "./asset";
13
+ import type { VaultSlice } from "./vault-slice";
14
+ export interface RedeemRequestProcessedTransaction {
15
+ /**
16
+ * The timestamp of the event
17
+ */
18
+ timestamp?: number;
19
+ /**
20
+ * The amount of the shares redeemed
21
+ */
22
+ redeemSharesAmount?: string;
23
+ redeemCoin?: Asset;
24
+ vault?: VaultSlice;
25
+ /**
26
+ * The tx digest of the transaction
27
+ */
28
+ txDigest?: string;
29
+ /**
30
+ * The sequence number of the transaction
31
+ */
32
+ sequenceNumber?: string;
33
+ receivedCoin?: Asset;
34
+ /**
35
+ * The amount of the shares received
36
+ */
37
+ receivedAmount?: 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,33 @@
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 { VaultSlice } from "./vault-slice";
14
+ export interface RedeemRequestSkippedTransaction {
15
+ /**
16
+ * The timestamp of the event
17
+ */
18
+ timestamp?: number;
19
+ /**
20
+ * The amount of the transaction
21
+ */
22
+ amount?: string;
23
+ coin?: Asset;
24
+ vault?: VaultSlice;
25
+ /**
26
+ * The tx digest of the transaction
27
+ */
28
+ txDigest?: string;
29
+ /**
30
+ * The sequence number of the transaction
31
+ */
32
+ sequenceNumber?: string;
33
+ }
@@ -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,33 @@
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 { VaultSlice } from "./vault-slice";
14
+ export interface RedeemRequestTransaction {
15
+ /**
16
+ * The timestamp of the event
17
+ */
18
+ timestamp?: number;
19
+ /**
20
+ * The amount of the transaction
21
+ */
22
+ amount?: string;
23
+ coin?: Asset;
24
+ vault?: VaultSlice;
25
+ /**
26
+ * The tx digest of the transaction
27
+ */
28
+ txDigest?: string;
29
+ /**
30
+ * The sequence number of the transaction
31
+ */
32
+ sequenceNumber?: string;
33
+ }
@@ -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,15 @@
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
+ export interface ReportedApy {
13
+ apyE9: string;
14
+ updatedAt: string;
15
+ }
@@ -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,53 @@
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
+ export interface RequestProcessedEvent {
13
+ /**
14
+ * The id of the request
15
+ */
16
+ vaultId?: string;
17
+ /**
18
+ * The sender address of the request
19
+ */
20
+ ownerAddress?: string;
21
+ /**
22
+ * The receiver address of the request
23
+ */
24
+ receiverAddress?: string;
25
+ /**
26
+ * The amount of the request
27
+ */
28
+ withdrawAmount?: string;
29
+ /**
30
+ * The amount of the request
31
+ */
32
+ shares?: string;
33
+ /**
34
+ * The timestamp of the request
35
+ */
36
+ requestTimestamp?: number;
37
+ /**
38
+ * The timestamp of the request
39
+ */
40
+ processedTimestamp?: number;
41
+ /**
42
+ * Whether the request is skipped due to blacklisted address
43
+ */
44
+ skipped?: boolean;
45
+ /**
46
+ * The sequence number of the request
47
+ */
48
+ sequenceNumber?: string;
49
+ /**
50
+ * The type of the asset coin
51
+ */
52
+ coinType?: string;
53
+ }
@@ -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,49 @@
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
+ export interface RequestRedeemedEvent {
13
+ /**
14
+ * The id of the request
15
+ */
16
+ vaultId?: string;
17
+ /**
18
+ * The sender address of the request
19
+ */
20
+ ownerAddress?: string;
21
+ /**
22
+ * The receiver address of the request
23
+ */
24
+ receiverAddress?: string;
25
+ /**
26
+ * The amount of the request
27
+ */
28
+ shares?: string;
29
+ /**
30
+ * The timestamp of the request
31
+ */
32
+ timestamp?: number;
33
+ /**
34
+ * The timestamp of the request
35
+ */
36
+ totalSharesInCirculation?: string;
37
+ /**
38
+ * The amount of the request
39
+ */
40
+ totalSharesPendingToBurn?: string;
41
+ /**
42
+ * The sequence number of the request
43
+ */
44
+ sequenceNumber?: string;
45
+ /**
46
+ * The type of the asset coin
47
+ */
48
+ coinType?: string;
49
+ }
@@ -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,27 @@
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
+ export interface RewardToken {
13
+ symbol?: string;
14
+ imgUrl?: string;
15
+ /**
16
+ * The address of the reward token
17
+ */
18
+ address?: string;
19
+ /**
20
+ * The name of the reward token
21
+ */
22
+ name?: string;
23
+ /**
24
+ * The decimals of the reward token
25
+ */
26
+ decimals?: number;
27
+ }
@@ -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,21 @@
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
+ export interface SharePriceHistory {
13
+ /**
14
+ * The timestamp of the event
15
+ */
16
+ timestamp: number;
17
+ /**
18
+ * The share price of the event
19
+ */
20
+ sharePriceE9: string;
21
+ }
@@ -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,41 @@
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
+ export interface Strategy {
13
+ /**
14
+ * The name of the platform
15
+ */
16
+ platformName: string;
17
+ /**
18
+ * The address of the strategist
19
+ */
20
+ strategistAddress: string;
21
+ /**
22
+ * The type of the strategy
23
+ */
24
+ strategyType: string;
25
+ /**
26
+ * The allocation of the strategy
27
+ */
28
+ allocationE9: string;
29
+ /**
30
+ * The apy of the strategy
31
+ */
32
+ apyE9: string;
33
+ /**
34
+ * The points apy of the strategy
35
+ */
36
+ pointsApyE9: string;
37
+ /**
38
+ * The timestamp of the snapshot
39
+ */
40
+ snapshotAt: number;
41
+ }
@@ -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,19 @@
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 { Manager } from "./manager";
13
+ export interface SubAccount {
14
+ /**
15
+ * The address of the sub account
16
+ */
17
+ address: string;
18
+ manager: Manager;
19
+ }
@@ -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,21 @@
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
+ export interface TvlHistory {
13
+ /**
14
+ * The timestamp of the event
15
+ */
16
+ timestamp: number;
17
+ /**
18
+ * The tvl of the event
19
+ */
20
+ tvlE9: string;
21
+ }
@@ -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
+ export interface UltraCoinInfo {
13
+ /**
14
+ * The treasury capability identifier
15
+ */
16
+ TreasuryCap?: string;
17
+ /**
18
+ * The currency identifier
19
+ */
20
+ Currency?: string;
21
+ /**
22
+ * The upgrade capability identifier
23
+ */
24
+ UpgradeCap?: string;
25
+ /**
26
+ * The package identifier
27
+ */
28
+ Package?: string;
29
+ /**
30
+ * The symbol of the ultra coin
31
+ */
32
+ Symbol?: string;
33
+ /**
34
+ * The number of decimals for the ultra coin
35
+ */
36
+ Decimals?: number;
37
+ }