@ember-finance/sdk 1.0.8 → 1.0.10

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 (105) hide show
  1. package/dist/index.d.ts +0 -1
  2. package/dist/index.js +0 -1
  3. package/dist/src/common/types.d.ts +0 -1
  4. package/dist/src/common/types.js +0 -1
  5. package/dist/src/vaults/api/api.d.ts +2 -2
  6. package/dist/src/vaults/api/apis/accounts-api.d.ts +178 -27
  7. package/dist/src/vaults/api/apis/accounts-api.js +208 -77
  8. package/dist/src/vaults/api/apis/vaults-api.d.ts +270 -40
  9. package/dist/src/vaults/api/apis/vaults-api.js +267 -194
  10. package/dist/src/vaults/api/base.d.ts +26 -2
  11. package/dist/src/vaults/api/base.js +21 -1
  12. package/dist/src/vaults/api/common.d.ts +38 -1
  13. package/dist/src/vaults/api/common.js +47 -17
  14. package/dist/src/vaults/api/configuration.d.ts +17 -0
  15. package/dist/src/vaults/api/configuration.js +4 -5
  16. package/dist/src/vaults/api/models/account-transaction-transaction-data.d.ts +6 -5
  17. package/dist/src/vaults/api/models/account-transaction.d.ts +26 -11
  18. package/dist/src/vaults/api/models/account-transaction.js +12 -7
  19. package/dist/src/vaults/api/models/account-withdrawal-request.d.ts +64 -23
  20. package/dist/src/vaults/api/models/account-withdrawal-request.js +13 -8
  21. package/dist/src/vaults/api/models/apy-history.d.ts +42 -0
  22. package/dist/src/vaults/api/models/apy-history.js +15 -0
  23. package/dist/src/vaults/api/models/asset.d.ts +26 -7
  24. package/dist/src/vaults/api/models/borrowed.d.ts +43 -0
  25. package/dist/src/vaults/api/models/borrowed.js +15 -0
  26. package/dist/src/vaults/api/models/coin-price.d.ts +30 -0
  27. package/dist/src/vaults/api/models/coin-price.js +15 -0
  28. package/dist/src/vaults/api/models/deposit-transaction.d.ts +40 -10
  29. package/dist/src/vaults/api/models/exposure-coin.d.ts +18 -4
  30. package/dist/src/vaults/api/models/exposure-protocol.d.ts +50 -3
  31. package/dist/src/vaults/api/models/exposure.d.ts +16 -5
  32. package/dist/src/vaults/api/models/fee.d.ts +37 -0
  33. package/dist/src/vaults/api/models/fee.js +15 -0
  34. package/dist/src/vaults/api/models/history-interval.d.ts +11 -7
  35. package/dist/src/vaults/api/models/history-interval.js +12 -6
  36. package/dist/src/vaults/api/models/index.d.ts +60 -43
  37. package/dist/src/vaults/api/models/index.js +17 -0
  38. package/dist/src/vaults/api/models/lp.d.ts +81 -0
  39. package/dist/src/vaults/api/models/lp.js +15 -0
  40. package/dist/src/vaults/api/models/manager.d.ts +26 -4
  41. package/dist/src/vaults/api/models/min-withdrawal-shares-updated-event.d.ts +17 -4
  42. package/dist/src/vaults/api/models/perps.d.ts +31 -0
  43. package/dist/src/vaults/api/models/perps.js +15 -0
  44. package/dist/src/vaults/api/models/pnl-history-interval.d.ts +21 -0
  45. package/dist/src/vaults/api/models/pnl-history-interval.js +27 -0
  46. package/dist/src/vaults/api/models/pnl-history.d.ts +17 -2
  47. package/dist/src/vaults/api/models/position-value.d.ts +54 -0
  48. package/dist/src/vaults/api/models/position-value.js +15 -0
  49. package/dist/src/vaults/api/models/position.d.ts +42 -0
  50. package/dist/src/vaults/api/models/position.js +15 -0
  51. package/dist/src/vaults/api/models/process-requests-summary-event.d.ts +78 -0
  52. package/dist/src/vaults/api/models/process-requests-summary-event.js +15 -0
  53. package/dist/src/vaults/api/models/protocol-fee-collected-event.d.ts +60 -0
  54. package/dist/src/vaults/api/models/protocol-fee-collected-event.js +15 -0
  55. package/dist/src/vaults/api/models/protocol-info.d.ts +20 -6
  56. package/dist/src/vaults/api/models/protocol.d.ts +17 -13
  57. package/dist/src/vaults/api/models/protocol.js +0 -8
  58. package/dist/src/vaults/api/models/raw-event-event-data.d.ts +19 -13
  59. package/dist/src/vaults/api/models/raw-event.d.ts +44 -20
  60. package/dist/src/vaults/api/models/raw-event.js +24 -14
  61. package/dist/src/vaults/api/models/redeem-request-cancelled-transaction.d.ts +31 -8
  62. package/dist/src/vaults/api/models/redeem-request-processed-transaction.d.ts +40 -10
  63. package/dist/src/vaults/api/models/redeem-request-skipped-transaction.d.ts +31 -8
  64. package/dist/src/vaults/api/models/redeem-request-transaction.d.ts +31 -8
  65. package/dist/src/vaults/api/models/reported-apy.d.ts +17 -2
  66. package/dist/src/vaults/api/models/request-processed-event.d.ts +35 -10
  67. package/dist/src/vaults/api/models/request-redeemed-event.d.ts +32 -9
  68. package/dist/src/vaults/api/models/reward-token.d.ts +26 -5
  69. package/dist/src/vaults/api/models/reward.d.ts +37 -0
  70. package/dist/src/vaults/api/models/reward.js +15 -0
  71. package/dist/src/vaults/api/models/share-price-history.d.ts +11 -2
  72. package/dist/src/vaults/api/models/strategy.d.ts +26 -7
  73. package/dist/src/vaults/api/models/sub-account.d.ts +15 -3
  74. package/dist/src/vaults/api/models/supplied.d.ts +43 -0
  75. package/dist/src/vaults/api/models/supplied.js +15 -0
  76. package/dist/src/vaults/api/models/tvl-history.d.ts +11 -2
  77. package/dist/src/vaults/api/models/ultra-coin-info.d.ts +23 -6
  78. package/dist/src/vaults/api/models/update-vault-strategies.d.ts +24 -6
  79. package/dist/src/vaults/api/models/vault-admin-changed-event.d.ts +17 -4
  80. package/dist/src/vaults/api/models/vault-created-event.d.ts +29 -7
  81. package/dist/src/vaults/api/models/vault-deposit-event.d.ts +32 -9
  82. package/dist/src/vaults/api/models/vault-deposit-without-minting-shares-event.d.ts +60 -0
  83. package/dist/src/vaults/api/models/vault-deposit-without-minting-shares-event.js +15 -0
  84. package/dist/src/vaults/api/models/vault-detail.d.ts +125 -37
  85. package/dist/src/vaults/api/models/vault-detail.js +11 -6
  86. package/dist/src/vaults/api/models/vault-fee-percentage-updated-event.d.ts +17 -4
  87. package/dist/src/vaults/api/models/vault-info.d.ts +38 -11
  88. package/dist/src/vaults/api/models/vault-max-tvl-updated-event.d.ts +17 -4
  89. package/dist/src/vaults/api/models/vault-operator-changed-event.d.ts +17 -4
  90. package/dist/src/vaults/api/models/vault-paused-status-updated-event.d.ts +14 -3
  91. package/dist/src/vaults/api/models/vault-platform-fee-charged-event.d.ts +48 -0
  92. package/dist/src/vaults/api/models/vault-platform-fee-charged-event.js +15 -0
  93. package/dist/src/vaults/api/models/vault-protocol.d.ts +17 -4
  94. package/dist/src/vaults/api/models/vault-rate-updated-event.d.ts +17 -4
  95. package/dist/src/vaults/api/models/vault-slice.d.ts +20 -5
  96. package/dist/src/vaults/api/models/vault-sub-account-updated-event.d.ts +23 -6
  97. package/dist/src/vaults/api/models/vault-withdrawal-without-redeeming-shares-event.d.ts +60 -0
  98. package/dist/src/vaults/api/models/vault-withdrawal-without-redeeming-shares-event.js +15 -0
  99. package/dist/src/vaults/api/models/yield-aggregate-value.d.ts +42 -0
  100. package/dist/src/vaults/api/models/yield-aggregate-value.js +15 -0
  101. package/dist/src/vaults/on-chain-calls/tx-builder.d.ts +8 -0
  102. package/dist/src/vaults/on-chain-calls/tx-builder.js +35 -0
  103. package/dist/src/vaults/on-chain-calls/user.d.ts +9 -0
  104. package/dist/src/vaults/on-chain-calls/user.js +16 -0
  105. package/package.json +5 -3
@@ -9,19 +9,40 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface RewardToken
16
+ */
12
17
  export interface RewardToken {
13
- symbol?: string;
14
- imgUrl?: string;
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof RewardToken
22
+ */
23
+ 'symbol'?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof RewardToken
28
+ */
29
+ 'imgUrl'?: string;
15
30
  /**
16
31
  * The address of the reward token
32
+ * @type {string}
33
+ * @memberof RewardToken
17
34
  */
18
- address?: string;
35
+ 'address'?: string;
19
36
  /**
20
37
  * The name of the reward token
38
+ * @type {string}
39
+ * @memberof RewardToken
21
40
  */
22
- name?: string;
41
+ 'name'?: string;
23
42
  /**
24
43
  * The decimals of the reward token
44
+ * @type {number}
45
+ * @memberof RewardToken
25
46
  */
26
- decimals?: number;
47
+ 'decimals'?: number;
27
48
  }
@@ -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 Reward
17
+ */
18
+ export interface Reward {
19
+ /**
20
+ *
21
+ * @type {Asset}
22
+ * @memberof Reward
23
+ */
24
+ 'coin': Asset;
25
+ /**
26
+ * The amount of the reward
27
+ * @type {string}
28
+ * @memberof Reward
29
+ */
30
+ 'amount': string;
31
+ /**
32
+ * The amount of the reward in e9 in USDC
33
+ * @type {string}
34
+ * @memberof Reward
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 });
@@ -9,13 +9,22 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface SharePriceHistory
16
+ */
12
17
  export interface SharePriceHistory {
13
18
  /**
14
19
  * The timestamp of the event
20
+ * @type {number}
21
+ * @memberof SharePriceHistory
15
22
  */
16
- timestamp: number;
23
+ 'timestamp': number;
17
24
  /**
18
25
  * The share price of the event
26
+ * @type {string}
27
+ * @memberof SharePriceHistory
19
28
  */
20
- sharePriceE9: string;
29
+ 'sharePriceE9': string;
21
30
  }
@@ -9,33 +9,52 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface Strategy
16
+ */
12
17
  export interface Strategy {
13
18
  /**
14
19
  * The name of the platform
20
+ * @type {string}
21
+ * @memberof Strategy
15
22
  */
16
- platformName: string;
23
+ 'platformName': string;
17
24
  /**
18
25
  * The address of the strategist
26
+ * @type {string}
27
+ * @memberof Strategy
19
28
  */
20
- strategistAddress: string;
29
+ 'strategistAddress': string;
21
30
  /**
22
31
  * The type of the strategy
32
+ * @type {string}
33
+ * @memberof Strategy
23
34
  */
24
- strategyType: string;
35
+ 'strategyType': string;
25
36
  /**
26
37
  * The allocation of the strategy
38
+ * @type {string}
39
+ * @memberof Strategy
27
40
  */
28
- allocationE9: string;
41
+ 'allocationE9': string;
29
42
  /**
30
43
  * The apy of the strategy
44
+ * @type {string}
45
+ * @memberof Strategy
31
46
  */
32
- apyE9: string;
47
+ 'apyE9': string;
33
48
  /**
34
49
  * The points apy of the strategy
50
+ * @type {string}
51
+ * @memberof Strategy
35
52
  */
36
- pointsApyE9: string;
53
+ 'pointsApyE9': string;
37
54
  /**
38
55
  * The timestamp of the snapshot
56
+ * @type {number}
57
+ * @memberof Strategy
39
58
  */
40
- snapshotAt: number;
59
+ 'snapshotAt': number;
41
60
  }
@@ -9,11 +9,23 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import type { Manager } from "./manager";
12
+ import type { Manager } from './manager';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface SubAccount
17
+ */
13
18
  export interface SubAccount {
14
19
  /**
15
20
  * The address of the sub account
21
+ * @type {string}
22
+ * @memberof SubAccount
23
+ */
24
+ 'address': string;
25
+ /**
26
+ *
27
+ * @type {Manager}
28
+ * @memberof SubAccount
16
29
  */
17
- address: string;
18
- manager: Manager;
30
+ 'manager': Manager;
19
31
  }
@@ -0,0 +1,43 @@
1
+ /**
2
+ * Ember Protocol Vaults API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { Asset } from './asset';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface Supplied
17
+ */
18
+ export interface Supplied {
19
+ /**
20
+ *
21
+ * @type {Asset}
22
+ * @memberof Supplied
23
+ */
24
+ 'coin': Asset;
25
+ /**
26
+ * The amount of the supplied
27
+ * @type {string}
28
+ * @memberof Supplied
29
+ */
30
+ 'amount': string;
31
+ /**
32
+ * The amount of the supplied in e9 in USDC
33
+ * @type {string}
34
+ * @memberof Supplied
35
+ */
36
+ 'amountUsdE9': string;
37
+ /**
38
+ * The apy of the supplied
39
+ * @type {string}
40
+ * @memberof Supplied
41
+ */
42
+ 'apyE9': string;
43
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Ember Protocol Vaults API
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: 1.0.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -9,13 +9,22 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface TvlHistory
16
+ */
12
17
  export interface TvlHistory {
13
18
  /**
14
19
  * The timestamp of the event
20
+ * @type {number}
21
+ * @memberof TvlHistory
15
22
  */
16
- timestamp: number;
23
+ 'timestamp': number;
17
24
  /**
18
25
  * The tvl of the event
26
+ * @type {string}
27
+ * @memberof TvlHistory
19
28
  */
20
- tvlE9: string;
29
+ 'tvlE9': string;
21
30
  }
@@ -9,29 +9,46 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface UltraCoinInfo
16
+ */
12
17
  export interface UltraCoinInfo {
13
18
  /**
14
19
  * The treasury capability identifier
20
+ * @type {string}
21
+ * @memberof UltraCoinInfo
15
22
  */
16
- TreasuryCap?: string;
23
+ 'TreasuryCap'?: string;
17
24
  /**
18
25
  * The currency identifier
26
+ * @type {string}
27
+ * @memberof UltraCoinInfo
19
28
  */
20
- Currency?: string;
29
+ 'Currency'?: string;
21
30
  /**
22
31
  * The upgrade capability identifier
32
+ * @type {string}
33
+ * @memberof UltraCoinInfo
23
34
  */
24
- UpgradeCap?: string;
35
+ 'UpgradeCap'?: string;
25
36
  /**
26
37
  * The package identifier
38
+ * @type {string}
39
+ * @memberof UltraCoinInfo
27
40
  */
28
- Package?: string;
41
+ 'Package'?: string;
29
42
  /**
30
43
  * The symbol of the ultra coin
44
+ * @type {string}
45
+ * @memberof UltraCoinInfo
31
46
  */
32
- Symbol?: string;
47
+ 'Symbol'?: string;
33
48
  /**
34
49
  * The number of decimals for the ultra coin
50
+ * @type {number}
51
+ * @memberof UltraCoinInfo
35
52
  */
36
- Decimals?: number;
53
+ 'Decimals'?: number;
37
54
  }
@@ -9,23 +9,41 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import type { Strategy } from "./strategy";
12
+ import type { Strategy } from './strategy';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateVaultStrategies
17
+ */
13
18
  export interface UpdateVaultStrategies {
14
- strategies: Array<Strategy>;
19
+ /**
20
+ *
21
+ * @type {Array<Strategy>}
22
+ * @memberof UpdateVaultStrategies
23
+ */
24
+ 'strategies': Array<Strategy>;
15
25
  /**
16
26
  * The timestamp of the signature
27
+ * @type {number}
28
+ * @memberof UpdateVaultStrategies
17
29
  */
18
- signedAt: number;
30
+ 'signedAt': number;
19
31
  /**
20
32
  * The id of the vault
33
+ * @type {string}
34
+ * @memberof UpdateVaultStrategies
21
35
  */
22
- vaultId: string;
36
+ 'vaultId': string;
23
37
  /**
24
38
  * The target apy of the strategy
39
+ * @type {string}
40
+ * @memberof UpdateVaultStrategies
25
41
  */
26
- targetApyE9: string;
42
+ 'targetApyE9': string;
27
43
  /**
28
44
  * The signature of the request body
45
+ * @type {string}
46
+ * @memberof UpdateVaultStrategies
29
47
  */
30
- signature: string;
48
+ 'signature': string;
31
49
  }
@@ -9,21 +9,34 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface VaultAdminChangedEvent
16
+ */
12
17
  export interface VaultAdminChangedEvent {
13
18
  /**
14
19
  * The id of the vault
20
+ * @type {string}
21
+ * @memberof VaultAdminChangedEvent
15
22
  */
16
- vaultId?: string;
23
+ 'vaultId'?: string;
17
24
  /**
18
25
  * The previous admin of the vault
26
+ * @type {string}
27
+ * @memberof VaultAdminChangedEvent
19
28
  */
20
- previousAdmin?: string;
29
+ 'previousAdmin'?: string;
21
30
  /**
22
31
  * The new admin of the vault
32
+ * @type {string}
33
+ * @memberof VaultAdminChangedEvent
23
34
  */
24
- newAdmin?: string;
35
+ 'newAdmin'?: string;
25
36
  /**
26
37
  * The sequence number of the event
38
+ * @type {string}
39
+ * @memberof VaultAdminChangedEvent
27
40
  */
28
- sequenceNumber?: string;
41
+ 'sequenceNumber'?: string;
29
42
  }
@@ -9,30 +9,52 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface VaultCreatedEvent
16
+ */
12
17
  export interface VaultCreatedEvent {
13
18
  /**
14
19
  * The id of the vault
20
+ * @type {string}
21
+ * @memberof VaultCreatedEvent
15
22
  */
16
- vaultId?: string;
23
+ 'vaultId'?: string;
17
24
  /**
18
25
  * The name of the vault
26
+ * @type {string}
27
+ * @memberof VaultCreatedEvent
19
28
  */
20
- name?: string;
29
+ 'name'?: string;
21
30
  /**
22
31
  * The address of the admin operator
32
+ * @type {string}
33
+ * @memberof VaultCreatedEvent
23
34
  */
24
- admin?: string;
35
+ 'admin'?: string;
25
36
  /**
26
37
  * The address of the operator
38
+ * @type {string}
39
+ * @memberof VaultCreatedEvent
27
40
  */
28
- operator?: string;
41
+ 'operator'?: string;
29
42
  /**
30
43
  * The type of the deposit asset
44
+ * @type {string}
45
+ * @memberof VaultCreatedEvent
31
46
  */
32
- depositCoinType?: string;
47
+ 'depositCoinType'?: string;
33
48
  /**
34
49
  * The type of the receipt token
50
+ * @type {string}
51
+ * @memberof VaultCreatedEvent
52
+ */
53
+ 'receiptCoinType'?: string;
54
+ /**
55
+ *
56
+ * @type {Array<string>}
57
+ * @memberof VaultCreatedEvent
35
58
  */
36
- receiptCoinType?: string;
37
- subAccounts?: Array<string>;
59
+ 'subAccounts'?: Array<string>;
38
60
  }
@@ -9,41 +9,64 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface VaultDepositEvent
16
+ */
12
17
  export interface VaultDepositEvent {
13
18
  /**
14
19
  * The id of the vault
20
+ * @type {string}
21
+ * @memberof VaultDepositEvent
15
22
  */
16
- vaultId?: string;
23
+ 'vaultId'?: string;
17
24
  /**
18
25
  * The address of the account
26
+ * @type {string}
27
+ * @memberof VaultDepositEvent
19
28
  */
20
- accountAddress?: string;
29
+ 'accountAddress'?: string;
21
30
  /**
22
31
  * The amount of the deposit
32
+ * @type {string}
33
+ * @memberof VaultDepositEvent
23
34
  */
24
- totalAmount?: string;
35
+ 'totalAmount'?: string;
25
36
  /**
26
37
  * The amount of the shares minted
38
+ * @type {string}
39
+ * @memberof VaultDepositEvent
27
40
  */
28
- sharesMinted?: string;
41
+ 'sharesMinted'?: string;
29
42
  /**
30
43
  * The amount of the shares burnt
44
+ * @type {string}
45
+ * @memberof VaultDepositEvent
31
46
  */
32
- previousBalance?: string;
47
+ 'previousBalance'?: string;
33
48
  /**
34
49
  * The amount of the shares burnt
50
+ * @type {string}
51
+ * @memberof VaultDepositEvent
35
52
  */
36
- currentBalance?: string;
53
+ 'currentBalance'?: string;
37
54
  /**
38
55
  * The total amount of the shares
56
+ * @type {string}
57
+ * @memberof VaultDepositEvent
39
58
  */
40
- totalShares?: string;
59
+ 'totalShares'?: string;
41
60
  /**
42
61
  * The sequence number of the deposit
62
+ * @type {string}
63
+ * @memberof VaultDepositEvent
43
64
  */
44
- sequenceNumber?: string;
65
+ 'sequenceNumber'?: string;
45
66
  /**
46
67
  * The type of the asset coin
68
+ * @type {string}
69
+ * @memberof VaultDepositEvent
47
70
  */
48
- coinType?: string;
71
+ 'coinType'?: string;
49
72
  }
@@ -0,0 +1,60 @@
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 VaultDepositWithoutMintingSharesEvent
16
+ */
17
+ export interface VaultDepositWithoutMintingSharesEvent {
18
+ /**
19
+ * The id of the vault
20
+ * @type {string}
21
+ * @memberof VaultDepositWithoutMintingSharesEvent
22
+ */
23
+ 'vaultId'?: string;
24
+ /**
25
+ * The sequence number of the event
26
+ * @type {string}
27
+ * @memberof VaultDepositWithoutMintingSharesEvent
28
+ */
29
+ 'sequenceNumber'?: string;
30
+ /**
31
+ * The type of the coin
32
+ * @type {string}
33
+ * @memberof VaultDepositWithoutMintingSharesEvent
34
+ */
35
+ 'coinType'?: string;
36
+ /**
37
+ * The amount of the shares
38
+ * @type {string}
39
+ * @memberof VaultDepositWithoutMintingSharesEvent
40
+ */
41
+ 'amount'?: string;
42
+ /**
43
+ * The address of the sub account
44
+ * @type {string}
45
+ * @memberof VaultDepositWithoutMintingSharesEvent
46
+ */
47
+ 'subAccount'?: string;
48
+ /**
49
+ * The new balance of the vault
50
+ * @type {string}
51
+ * @memberof VaultDepositWithoutMintingSharesEvent
52
+ */
53
+ 'newBalance'?: string;
54
+ /**
55
+ * The previous balance of the vault
56
+ * @type {string}
57
+ * @memberof VaultDepositWithoutMintingSharesEvent
58
+ */
59
+ 'previousBalance'?: string;
60
+ }
@@ -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 });