@bitgo-beta/sdk-coin-ada 2.2.3-alpha.404 → 2.2.3-alpha.405

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 (143) hide show
  1. package/dist/src/ada.d.ts +116 -0
  2. package/dist/src/ada.d.ts.map +1 -0
  3. package/dist/src/ada.js +556 -0
  4. package/dist/src/adaToken.d.ts +31 -0
  5. package/dist/src/adaToken.d.ts.map +1 -0
  6. package/dist/src/adaToken.js +72 -0
  7. package/dist/src/index.d.ts +6 -0
  8. package/dist/src/index.d.ts.map +1 -0
  9. package/dist/src/index.js +22 -0
  10. package/dist/src/lib/index.d.ts +15 -0
  11. package/dist/src/lib/index.d.ts.map +1 -0
  12. package/dist/src/lib/index.js +65 -0
  13. package/dist/src/lib/keyPair.d.ts +20 -0
  14. package/dist/src/lib/keyPair.d.ts.map +1 -0
  15. package/dist/src/lib/keyPair.js +91 -0
  16. package/dist/src/lib/messages/cip8/cip8Message.d.ts +25 -0
  17. package/dist/src/lib/messages/cip8/cip8Message.d.ts.map +1 -0
  18. package/dist/src/lib/messages/cip8/cip8Message.js +140 -0
  19. package/dist/src/lib/messages/cip8/cip8MessageBuilder.d.ts +19 -0
  20. package/dist/src/lib/messages/cip8/cip8MessageBuilder.d.ts.map +1 -0
  21. package/dist/src/lib/messages/cip8/cip8MessageBuilder.js +27 -0
  22. package/dist/src/lib/messages/cip8/index.d.ts +3 -0
  23. package/dist/src/lib/messages/cip8/index.d.ts.map +1 -0
  24. package/dist/src/lib/messages/cip8/index.js +19 -0
  25. package/dist/src/lib/messages/cip8/utils.d.ts +24 -0
  26. package/dist/src/lib/messages/cip8/utils.d.ts.map +1 -0
  27. package/dist/src/lib/messages/cip8/utils.js +73 -0
  28. package/dist/src/lib/messages/index.d.ts +3 -0
  29. package/dist/src/lib/messages/index.d.ts.map +1 -0
  30. package/dist/src/lib/messages/index.js +19 -0
  31. package/dist/src/lib/messages/messageBuilderFactory.d.ts +7 -0
  32. package/dist/src/lib/messages/messageBuilderFactory.d.ts.map +1 -0
  33. package/dist/src/lib/messages/messageBuilderFactory.js +20 -0
  34. package/dist/src/lib/stakingActivateBuilder.d.ts +24 -0
  35. package/dist/src/lib/stakingActivateBuilder.d.ts.map +1 -0
  36. package/dist/src/lib/stakingActivateBuilder.js +88 -0
  37. package/dist/src/lib/stakingBaseClaimBuilder.d.ts +20 -0
  38. package/dist/src/lib/stakingBaseClaimBuilder.d.ts.map +1 -0
  39. package/dist/src/lib/stakingBaseClaimBuilder.js +35 -0
  40. package/dist/src/lib/stakingClaimRewardsBuilder.d.ts +10 -0
  41. package/dist/src/lib/stakingClaimRewardsBuilder.d.ts.map +1 -0
  42. package/dist/src/lib/stakingClaimRewardsBuilder.js +22 -0
  43. package/dist/src/lib/stakingDeactivateBuilder.d.ts +22 -0
  44. package/dist/src/lib/stakingDeactivateBuilder.d.ts.map +1 -0
  45. package/dist/src/lib/stakingDeactivateBuilder.js +75 -0
  46. package/dist/src/lib/stakingPledgeBuilder.d.ts +23 -0
  47. package/dist/src/lib/stakingPledgeBuilder.d.ts.map +1 -0
  48. package/dist/src/lib/stakingPledgeBuilder.js +43 -0
  49. package/dist/src/lib/stakingWithdrawBuilder.d.ts +12 -0
  50. package/dist/src/lib/stakingWithdrawBuilder.d.ts.map +1 -0
  51. package/dist/src/lib/stakingWithdrawBuilder.js +22 -0
  52. package/dist/src/lib/transaction.d.ts +134 -0
  53. package/dist/src/lib/transaction.d.ts.map +1 -0
  54. package/dist/src/lib/transaction.js +371 -0
  55. package/dist/src/lib/transactionBuilder.d.ts +137 -0
  56. package/dist/src/lib/transactionBuilder.d.ts.map +1 -0
  57. package/dist/src/lib/transactionBuilder.js +698 -0
  58. package/dist/src/lib/transactionBuilderFactory.d.ts +36 -0
  59. package/dist/src/lib/transactionBuilderFactory.d.ts.map +1 -0
  60. package/dist/src/lib/transactionBuilderFactory.js +92 -0
  61. package/dist/src/lib/transferBuilder.d.ts +14 -0
  62. package/dist/src/lib/transferBuilder.d.ts.map +1 -0
  63. package/dist/src/lib/transferBuilder.js +27 -0
  64. package/dist/src/lib/utils.d.ts +52 -0
  65. package/dist/src/lib/utils.d.ts.map +1 -0
  66. package/dist/src/lib/utils.js +277 -0
  67. package/dist/src/lib/voteDelegationBuilder.d.ts +24 -0
  68. package/dist/src/lib/voteDelegationBuilder.d.ts.map +1 -0
  69. package/dist/src/lib/voteDelegationBuilder.js +84 -0
  70. package/dist/src/lib/walletInitializationBuilder.d.ts +14 -0
  71. package/dist/src/lib/walletInitializationBuilder.d.ts.map +1 -0
  72. package/dist/src/lib/walletInitializationBuilder.js +24 -0
  73. package/dist/src/register.d.ts +3 -0
  74. package/dist/src/register.d.ts.map +1 -0
  75. package/dist/src/register.js +13 -0
  76. package/dist/src/tada.d.ts +21 -0
  77. package/dist/src/tada.d.ts.map +1 -0
  78. package/dist/src/tada.js +26 -0
  79. package/dist/test/resources/cip8Resources.d.ts +25 -0
  80. package/dist/test/resources/cip8Resources.d.ts.map +1 -0
  81. package/dist/test/resources/cip8Resources.js +76 -0
  82. package/dist/test/resources/index.d.ts +435 -0
  83. package/dist/test/resources/index.d.ts.map +1 -0
  84. package/dist/test/resources/index.js +635 -0
  85. package/dist/test/unit/StakingActivateBuilder.d.ts +2 -0
  86. package/dist/test/unit/StakingActivateBuilder.d.ts.map +1 -0
  87. package/dist/test/unit/StakingActivateBuilder.js +213 -0
  88. package/dist/test/unit/StakingDeactivateBuilder.d.ts +2 -0
  89. package/dist/test/unit/StakingDeactivateBuilder.d.ts.map +1 -0
  90. package/dist/test/unit/StakingDeactivateBuilder.js +158 -0
  91. package/dist/test/unit/ada.d.ts +5 -0
  92. package/dist/test/unit/ada.d.ts.map +1 -0
  93. package/dist/test/unit/ada.js +825 -0
  94. package/dist/test/unit/getBuilderFactory.d.ts +3 -0
  95. package/dist/test/unit/getBuilderFactory.d.ts.map +1 -0
  96. package/dist/test/unit/getBuilderFactory.js +10 -0
  97. package/dist/test/unit/index.d.ts +2 -0
  98. package/dist/test/unit/index.d.ts.map +1 -0
  99. package/dist/test/unit/index.js +32 -0
  100. package/dist/test/unit/keyPair.d.ts +2 -0
  101. package/dist/test/unit/keyPair.d.ts.map +1 -0
  102. package/dist/test/unit/keyPair.js +88 -0
  103. package/dist/test/unit/messages/cip8/cip8Message.d.ts +2 -0
  104. package/dist/test/unit/messages/cip8/cip8Message.d.ts.map +1 -0
  105. package/dist/test/unit/messages/cip8/cip8Message.js +131 -0
  106. package/dist/test/unit/messages/cip8/cip8MessageBuilder.d.ts +2 -0
  107. package/dist/test/unit/messages/cip8/cip8MessageBuilder.d.ts.map +1 -0
  108. package/dist/test/unit/messages/cip8/cip8MessageBuilder.js +132 -0
  109. package/dist/test/unit/messages/cip8/utils.d.ts +2 -0
  110. package/dist/test/unit/messages/cip8/utils.d.ts.map +1 -0
  111. package/dist/test/unit/messages/cip8/utils.js +127 -0
  112. package/dist/test/unit/messages/messageBuilderFactory.d.ts +2 -0
  113. package/dist/test/unit/messages/messageBuilderFactory.d.ts.map +1 -0
  114. package/dist/test/unit/messages/messageBuilderFactory.js +35 -0
  115. package/dist/test/unit/stakingClaimRewardsBuilder.d.ts +2 -0
  116. package/dist/test/unit/stakingClaimRewardsBuilder.d.ts.map +1 -0
  117. package/dist/test/unit/stakingClaimRewardsBuilder.js +70 -0
  118. package/dist/test/unit/stakingPledgeBuilder.d.ts +2 -0
  119. package/dist/test/unit/stakingPledgeBuilder.d.ts.map +1 -0
  120. package/dist/test/unit/stakingPledgeBuilder.js +141 -0
  121. package/dist/test/unit/stakingWithdrawBuilder.d.ts +2 -0
  122. package/dist/test/unit/stakingWithdrawBuilder.d.ts.map +1 -0
  123. package/dist/test/unit/stakingWithdrawBuilder.js +167 -0
  124. package/dist/test/unit/tokenWithdrawal.d.ts +2 -0
  125. package/dist/test/unit/tokenWithdrawal.d.ts.map +1 -0
  126. package/dist/test/unit/tokenWithdrawal.js +286 -0
  127. package/dist/test/unit/transaction.d.ts +2 -0
  128. package/dist/test/unit/transaction.d.ts.map +1 -0
  129. package/dist/test/unit/transaction.js +100 -0
  130. package/dist/test/unit/transactionBuilder.d.ts +2 -0
  131. package/dist/test/unit/transactionBuilder.d.ts.map +1 -0
  132. package/dist/test/unit/transactionBuilder.js +454 -0
  133. package/dist/test/unit/utils.d.ts +2 -0
  134. package/dist/test/unit/utils.d.ts.map +1 -0
  135. package/dist/test/unit/utils.js +138 -0
  136. package/dist/test/unit/voteDelegationBuilder.d.ts +2 -0
  137. package/dist/test/unit/voteDelegationBuilder.d.ts.map +1 -0
  138. package/dist/test/unit/voteDelegationBuilder.js +96 -0
  139. package/dist/tsconfig.tsbuildinfo +1 -0
  140. package/package.json +9 -6
  141. package/.eslintignore +0 -5
  142. package/.mocharc.yml +0 -8
  143. package/CHANGELOG.md +0 -1223
package/CHANGELOG.md DELETED
@@ -1,1223 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [4.15.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.15.0...@bitgo/sdk-coin-ada@4.15.1) (2025-09-29)
7
-
8
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
9
-
10
- # [4.15.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.14.0...@bitgo/sdk-coin-ada@4.15.0) (2025-09-25)
11
-
12
- ### Bug Fixes
13
-
14
- - **sdk-coin-ada:** verify consolidation txHex ([62876e8](https://github.com/BitGo/BitGoJS/commit/62876e8b2e52902a723f2ab6dcdc4f5b1b80a321))
15
-
16
- ### Features
17
-
18
- - configure learn to skip git operations ([ee3a622](https://github.com/BitGo/BitGoJS/commit/ee3a6220496476aa7f4545b5f4a9a3bf97d9bdb9))
19
- - **sdk-coin-ada:** add fingerprint as the contract address ([65f2080](https://github.com/BitGo/BitGoJS/commit/65f2080de3efacde1549974fecefea90201b466b))
20
- - **sdk-coin-ada:** token build support ([e046c39](https://github.com/BitGo/BitGoJS/commit/e046c3924881da4a0244a9638e7493c7bfa3ec15))
21
-
22
- # [4.14.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.13.3...@bitgo/sdk-coin-ada@4.14.0) (2025-09-03)
23
-
24
- ### Features
25
-
26
- - **sdk-coin-ada:** add token support config ([8352773](https://github.com/BitGo/BitGoJS/commit/835277307a119c193413a76697e479d2541b9eb1))
27
-
28
- ## [4.13.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.13.2...@bitgo/sdk-coin-ada@4.13.3) (2025-08-30)
29
-
30
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
31
-
32
- ## [4.13.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.13.1...@bitgo/sdk-coin-ada@4.13.2) (2025-08-29)
33
-
34
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
35
-
36
- ## [4.13.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.13.0...@bitgo/sdk-coin-ada@4.13.1) (2025-08-27)
37
-
38
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
39
-
40
- # [4.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.12.9...@bitgo/sdk-coin-ada@4.13.0) (2025-08-22)
41
-
42
- ### Features
43
-
44
- - **root:** migrate ts-node -> tsx ([ea180b4](https://github.com/BitGo/BitGoJS/commit/ea180b43001d8e956196bc07b32798e3a7031eeb))
45
-
46
- ## [4.12.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.12.8...@bitgo/sdk-coin-ada@4.12.9) (2025-08-22)
47
-
48
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
49
-
50
- ## [4.12.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.12.7...@bitgo/sdk-coin-ada@4.12.8) (2025-08-19)
51
-
52
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
53
-
54
- ## [4.12.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.12.6...@bitgo/sdk-coin-ada@4.12.7) (2025-08-14)
55
-
56
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
57
-
58
- ## [4.12.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.12.5...@bitgo/sdk-coin-ada@4.12.6) (2025-08-07)
59
-
60
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
61
-
62
- ## [4.12.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.12.4...@bitgo/sdk-coin-ada@4.12.5) (2025-07-31)
63
-
64
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
65
-
66
- ## [4.12.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.12.3...@bitgo/sdk-coin-ada@4.12.4) (2025-07-30)
67
-
68
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
69
-
70
- ## [4.12.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.12.1...@bitgo/sdk-coin-ada@4.12.3) (2025-07-25)
71
-
72
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
73
-
74
- ## [4.12.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.12.1...@bitgo/sdk-coin-ada@4.12.2) (2025-07-23)
75
-
76
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
77
-
78
- ## [4.12.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.12.0...@bitgo/sdk-coin-ada@4.12.1) (2025-07-15)
79
-
80
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
81
-
82
- # [4.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.11.5...@bitgo/sdk-coin-ada@4.12.0) (2025-07-10)
83
-
84
- ### Features
85
-
86
- - **account-lib:** verify encoded message ([71a7dd6](https://github.com/BitGo/BitGoJS/commit/71a7dd6cf56010c94364483b7c83221d9a26688e))
87
- - enable message signing for ADA and SOL ([1ee3499](https://github.com/BitGo/BitGoJS/commit/1ee349934b497e3ef3dad8a33664f479f8247dfe))
88
- - **sdk-coin-ada:** add CIP-8 message builder ([e6814dc](https://github.com/BitGo/BitGoJS/commit/e6814dcb25fff07d359e7ecdad214f78376f33ae))
89
- - **sdk-coin-ada:** add CIP-8 message builder ([50c53ec](https://github.com/BitGo/BitGoJS/commit/50c53ecc998815ad25a0b08f27a167a9d2d8d948))
90
- - **sdk-core:** add simple message builder for sol ([d5af5c8](https://github.com/BitGo/BitGoJS/commit/d5af5c8d45f88feb01387b45f9b1e2cfeb70a2e8))
91
-
92
- ## [4.11.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.11.4...@bitgo/sdk-coin-ada@4.11.5) (2025-07-03)
93
-
94
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
95
-
96
- ## [4.11.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.11.3...@bitgo/sdk-coin-ada@4.11.4) (2025-06-25)
97
-
98
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
99
-
100
- ## [4.11.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.11.2...@bitgo/sdk-coin-ada@4.11.3) (2025-06-24)
101
-
102
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
103
-
104
- ## [4.11.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.11.1...@bitgo/sdk-coin-ada@4.11.2) (2025-06-18)
105
-
106
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
107
-
108
- ## [4.11.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.11.0...@bitgo/sdk-coin-ada@4.11.1) (2025-06-10)
109
-
110
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
111
-
112
- # [4.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.10.0...@bitgo/sdk-coin-ada@4.11.0) (2025-06-05)
113
-
114
- ### Features
115
-
116
- - **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
117
-
118
- # [4.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.9.13...@bitgo/sdk-coin-ada@4.10.0) (2025-06-02)
119
-
120
- ### Features
121
-
122
- - rename audit function naming and signature ([1a885ab](https://github.com/BitGo/BitGoJS/commit/1a885ab60d30ca8595e284a728f2ab9d3c09994e))
123
- - **root:** add new audit key baseCoin method ([57c1778](https://github.com/BitGo/BitGoJS/commit/57c17784a72ea364f18e3af9dbd83da877827e69))
124
-
125
- ## [4.9.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.9.12...@bitgo/sdk-coin-ada@4.9.13) (2025-05-28)
126
-
127
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
128
-
129
- ## [4.9.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.9.11...@bitgo/sdk-coin-ada@4.9.12) (2025-05-22)
130
-
131
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
132
-
133
- ## [4.9.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.9.10...@bitgo/sdk-coin-ada@4.9.11) (2025-05-20)
134
-
135
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
136
-
137
- ## [4.9.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.9.9...@bitgo/sdk-coin-ada@4.9.10) (2025-05-07)
138
-
139
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
140
-
141
- ## [4.9.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.9.8...@bitgo/sdk-coin-ada@4.9.9) (2025-04-29)
142
-
143
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
144
-
145
- ## [4.9.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.9.7...@bitgo/sdk-coin-ada@4.9.8) (2025-04-25)
146
-
147
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
148
-
149
- ## [4.9.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.9.6...@bitgo/sdk-coin-ada@4.9.7) (2025-04-15)
150
-
151
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
152
-
153
- ## [4.9.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.9.5...@bitgo/sdk-coin-ada@4.9.6) (2025-04-04)
154
-
155
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
156
-
157
- ## [4.9.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.9.4...@bitgo/sdk-coin-ada@4.9.5) (2025-04-02)
158
-
159
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
160
-
161
- ## [4.9.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.9.3...@bitgo/sdk-coin-ada@4.9.4) (2025-03-28)
162
-
163
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
164
-
165
- ## [4.9.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.9.2...@bitgo/sdk-coin-ada@4.9.3) (2025-03-20)
166
-
167
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
168
-
169
- ## [4.9.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.9.1...@bitgo/sdk-coin-ada@4.9.2) (2025-03-18)
170
-
171
- ### Bug Fixes
172
-
173
- - **sdk-core:** set default multisig if empty ([e2727df](https://github.com/BitGo/BitGoJS/commit/e2727dfc89dd314a607b737e761e5eff824606af))
174
-
175
- ## [4.9.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.9.0...@bitgo/sdk-coin-ada@4.9.1) (2025-03-06)
176
-
177
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
178
-
179
- # [4.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.6.6...@bitgo/sdk-coin-ada@4.9.0) (2025-03-04)
180
-
181
- ### Features
182
-
183
- - remove deadalus address support from ADA wallets ([9175976](https://github.com/BitGo/BitGoJS/commit/91759763c0fe2516c5697b6d3fb9720cbf5aa676))
184
-
185
- # [4.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.6.6...@bitgo/sdk-coin-ada@4.8.0) (2025-02-26)
186
-
187
- ### Features
188
-
189
- - remove deadalus address support from ADA wallets ([9175976](https://github.com/BitGo/BitGoJS/commit/91759763c0fe2516c5697b6d3fb9720cbf5aa676))
190
-
191
- # [4.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.6.6...@bitgo/sdk-coin-ada@4.7.0) (2025-02-20)
192
-
193
- ### Features
194
-
195
- - remove deadalus address support from ADA wallets ([9175976](https://github.com/BitGo/BitGoJS/commit/91759763c0fe2516c5697b6d3fb9720cbf5aa676))
196
-
197
- ## [4.6.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.6.5...@bitgo/sdk-coin-ada@4.6.6) (2025-02-19)
198
-
199
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
200
-
201
- ## [4.6.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.6.4...@bitgo/sdk-coin-ada@4.6.5) (2025-02-11)
202
-
203
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
204
-
205
- ## [4.6.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.6.3...@bitgo/sdk-coin-ada@4.6.4) (2025-02-05)
206
-
207
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
208
-
209
- ## [4.6.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.6.2...@bitgo/sdk-coin-ada@4.6.3) (2025-01-28)
210
-
211
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
212
-
213
- ## [4.6.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.6.1...@bitgo/sdk-coin-ada@4.6.2) (2025-01-23)
214
-
215
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
216
-
217
- ## [4.6.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.6.0...@bitgo/sdk-coin-ada@4.6.1) (2025-01-23)
218
-
219
- ### Bug Fixes
220
-
221
- - using base58 and cbor as byron validation for ui support ([fe6477c](https://github.com/BitGo/BitGoJS/commit/fe6477cb563eaf44ffd27d5310680a65479afd8a))
222
-
223
- # [4.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.5.5...@bitgo/sdk-coin-ada@4.6.0) (2025-01-20)
224
-
225
- ### Features
226
-
227
- - byron era support for ADA wallets ([d0e5da9](https://github.com/BitGo/BitGoJS/commit/d0e5da9939abac122a4f35198bba80562dcac00d))
228
- - util and txBuilder changes for byron address support ([3773ebf](https://github.com/BitGo/BitGoJS/commit/3773ebf932418c6dd2d4ad36fbd24e97cc6f62b5))
229
-
230
- ## [4.5.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.5.4...@bitgo/sdk-coin-ada@4.5.5) (2025-01-15)
231
-
232
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
233
-
234
- ## [4.5.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.5.3...@bitgo/sdk-coin-ada@4.5.4) (2025-01-09)
235
-
236
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
237
-
238
- ## [4.5.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.5.2...@bitgo/sdk-coin-ada@4.5.3) (2025-01-03)
239
-
240
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
241
-
242
- ## [4.5.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.5.1...@bitgo/sdk-coin-ada@4.5.2) (2024-12-24)
243
-
244
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
245
-
246
- ## [4.5.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.5.0...@bitgo/sdk-coin-ada@4.5.1) (2024-12-19)
247
-
248
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
249
-
250
- # [4.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.3.11...@bitgo/sdk-coin-ada@4.5.0) (2024-12-17)
251
-
252
- ### Features
253
-
254
- - **sdk-coin-ada:** support vote delegation ([6b9ddd8](https://github.com/BitGo/BitGoJS/commit/6b9ddd867ecb458e2d5d9890829c20a22cf7658b))
255
-
256
- # [4.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.3.11...@bitgo/sdk-coin-ada@4.4.0) (2024-12-17)
257
-
258
- ### Features
259
-
260
- - **sdk-coin-ada:** support vote delegation ([6b9ddd8](https://github.com/BitGo/BitGoJS/commit/6b9ddd867ecb458e2d5d9890829c20a22cf7658b))
261
-
262
- ## [4.3.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.3.10...@bitgo/sdk-coin-ada@4.3.11) (2024-12-12)
263
-
264
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
265
-
266
- ## [4.3.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.3.9...@bitgo/sdk-coin-ada@4.3.10) (2024-12-11)
267
-
268
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
269
-
270
- ## [4.3.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.3.8...@bitgo/sdk-coin-ada@4.3.9) (2024-12-03)
271
-
272
- ### Bug Fixes
273
-
274
- - use better string conversion for message signing ([c81d0b1](https://github.com/BitGo/BitGoJS/commit/c81d0b19c379109df69f8bdd7ff92c582492ab45))
275
-
276
- ## [4.3.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.3.7...@bitgo/sdk-coin-ada@4.3.8) (2024-11-26)
277
-
278
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
279
-
280
- ## [4.3.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.3.6...@bitgo/sdk-coin-ada@4.3.7) (2024-11-21)
281
-
282
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
283
-
284
- ## [4.3.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.3.4...@bitgo/sdk-coin-ada@4.3.6) (2024-11-19)
285
-
286
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
287
-
288
- ## [4.3.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.3.4...@bitgo/sdk-coin-ada@4.3.5) (2024-11-14)
289
-
290
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
291
-
292
- ## [4.3.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.3.3...@bitgo/sdk-coin-ada@4.3.4) (2024-11-08)
293
-
294
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
295
-
296
- ## [4.3.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.3.2...@bitgo/sdk-coin-ada@4.3.3) (2024-11-07)
297
-
298
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
299
-
300
- ## [4.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.3.1...@bitgo/sdk-coin-ada@4.3.2) (2024-11-01)
301
-
302
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
303
-
304
- ## [4.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.3.0...@bitgo/sdk-coin-ada@4.3.1) (2024-10-22)
305
-
306
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
307
-
308
- # [4.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.18...@bitgo/sdk-coin-ada@4.3.0) (2024-10-15)
309
-
310
- ### Features
311
-
312
- - add support for withdrawals from receive addr for ADA ([ed90e7d](https://github.com/BitGo/BitGoJS/commit/ed90e7d1b9fdebb96b5e2b5ea4afdcb42a9d2fd1))
313
-
314
- ## [4.2.18](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.17...@bitgo/sdk-coin-ada@4.2.18) (2024-10-08)
315
-
316
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
317
-
318
- ## [4.2.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.16...@bitgo/sdk-coin-ada@4.2.17) (2024-10-04)
319
-
320
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
321
-
322
- ## [4.2.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.15...@bitgo/sdk-coin-ada@4.2.16) (2024-09-24)
323
-
324
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
325
-
326
- ## [4.2.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.14...@bitgo/sdk-coin-ada@4.2.15) (2024-09-19)
327
-
328
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
329
-
330
- ## [4.2.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.13...@bitgo/sdk-coin-ada@4.2.14) (2024-09-16)
331
-
332
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
333
-
334
- ## [4.2.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.12...@bitgo/sdk-coin-ada@4.2.13) (2024-09-10)
335
-
336
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
337
-
338
- ## [4.2.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.11...@bitgo/sdk-coin-ada@4.2.12) (2024-09-03)
339
-
340
- ### Bug Fixes
341
-
342
- - **sdk-coin-ada:** bumb serialization library and fix tests ([16feeac](https://github.com/BitGo/BitGoJS/commit/16feeac2c47752d0d9e641f8c789be4654ead92a))
343
-
344
- ## [4.2.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.10...@bitgo/sdk-coin-ada@4.2.11) (2024-08-29)
345
-
346
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
347
-
348
- ## [4.2.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.9...@bitgo/sdk-coin-ada@4.2.10) (2024-08-27)
349
-
350
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
351
-
352
- ## [4.2.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.7...@bitgo/sdk-coin-ada@4.2.9) (2024-08-20)
353
-
354
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
355
-
356
- ## [4.2.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.7...@bitgo/sdk-coin-ada@4.2.8) (2024-08-13)
357
-
358
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
359
-
360
- ## [4.2.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.6...@bitgo/sdk-coin-ada@4.2.7) (2024-08-07)
361
-
362
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
363
-
364
- ## [4.2.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.5...@bitgo/sdk-coin-ada@4.2.6) (2024-07-30)
365
-
366
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
367
-
368
- ## [4.2.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.4...@bitgo/sdk-coin-ada@4.2.5) (2024-07-24)
369
-
370
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
371
-
372
- ## [4.2.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.3...@bitgo/sdk-coin-ada@4.2.4) (2024-07-16)
373
-
374
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
375
-
376
- ## [4.2.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.2...@bitgo/sdk-coin-ada@4.2.3) (2024-07-04)
377
-
378
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
379
-
380
- ## [4.2.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.1...@bitgo/sdk-coin-ada@4.2.2) (2024-07-02)
381
-
382
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
383
-
384
- ## [4.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.2.0...@bitgo/sdk-coin-ada@4.2.1) (2024-06-27)
385
-
386
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
387
-
388
- # [4.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.19...@bitgo/sdk-coin-ada@4.2.0) (2024-06-26)
389
-
390
- ### Features
391
-
392
- - **sdk-core:** add tss coins method to BaseCoin class ([65ba76e](https://github.com/BitGo/BitGoJS/commit/65ba76ef3a930eed4e111c5613ded97fede57e65))
393
-
394
- ## [4.1.19](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.17...@bitgo/sdk-coin-ada@4.1.19) (2024-06-21)
395
-
396
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
397
-
398
- ## [4.1.18](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.17...@bitgo/sdk-coin-ada@4.1.18) (2024-06-20)
399
-
400
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
401
-
402
- ## [4.1.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.16...@bitgo/sdk-coin-ada@4.1.17) (2024-06-14)
403
-
404
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
405
-
406
- ## [4.1.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.15...@bitgo/sdk-coin-ada@4.1.16) (2024-06-11)
407
-
408
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
409
-
410
- ## [4.1.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.14...@bitgo/sdk-coin-ada@4.1.15) (2024-06-05)
411
-
412
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
413
-
414
- ## [4.1.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.13...@bitgo/sdk-coin-ada@4.1.14) (2024-05-31)
415
-
416
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
417
-
418
- ## [4.1.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.12...@bitgo/sdk-coin-ada@4.1.13) (2024-05-28)
419
-
420
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
421
-
422
- ## [4.1.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.11...@bitgo/sdk-coin-ada@4.1.12) (2024-05-22)
423
-
424
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
425
-
426
- ## [4.1.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.10...@bitgo/sdk-coin-ada@4.1.11) (2024-05-17)
427
-
428
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
429
-
430
- ## [4.1.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.9...@bitgo/sdk-coin-ada@4.1.10) (2024-05-13)
431
-
432
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
433
-
434
- ## [4.1.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.8...@bitgo/sdk-coin-ada@4.1.9) (2024-05-08)
435
-
436
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
437
-
438
- ## [4.1.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.7...@bitgo/sdk-coin-ada@4.1.8) (2024-05-01)
439
-
440
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
441
-
442
- ## [4.1.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.6...@bitgo/sdk-coin-ada@4.1.7) (2024-04-25)
443
-
444
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
445
-
446
- ## [4.1.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.5...@bitgo/sdk-coin-ada@4.1.6) (2024-04-24)
447
-
448
- ### Bug Fixes
449
-
450
- - superagent upgrade to 9.0 ([6e9aa43](https://github.com/BitGo/BitGoJS/commit/6e9aa43a6d2999298abd450ceb168d664b8b926d))
451
-
452
- ## [4.1.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.4...@bitgo/sdk-coin-ada@4.1.5) (2024-04-22)
453
-
454
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
455
-
456
- ## [4.1.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.3...@bitgo/sdk-coin-ada@4.1.4) (2024-04-17)
457
-
458
- ### Reverts
459
-
460
- - Revert "feat: protect pass by value when sending data out" ([ef1497f](https://github.com/BitGo/BitGoJS/commit/ef1497ffdc9c158300c32a596828081d32eb6f3a))
461
-
462
- ## [4.1.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.2...@bitgo/sdk-coin-ada@4.1.3) (2024-04-12)
463
-
464
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
465
-
466
- ## [4.1.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.1...@bitgo/sdk-coin-ada@4.1.2) (2024-04-10)
467
-
468
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
469
-
470
- ## [4.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.1.0...@bitgo/sdk-coin-ada@4.1.1) (2024-04-09)
471
-
472
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
473
-
474
- # [4.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@4.0.0...@bitgo/sdk-coin-ada@4.1.0) (2024-04-08)
475
-
476
- ### Features
477
-
478
- - protect pass by value when sending data out ([8755bdd](https://github.com/BitGo/BitGoJS/commit/8755bdd5f4174de21f0b7e4c1e7bb74fb9b8e40f))
479
-
480
- # [4.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.36.4...@bitgo/sdk-coin-ada@4.0.0) (2024-04-05)
481
-
482
- ### Features
483
-
484
- - **root:** deprecate node 16 ([d3ec624](https://github.com/BitGo/BitGoJS/commit/d3ec6240bddae2a4ab7fa80c4a16efecc36210bd))
485
-
486
- ### BREAKING CHANGES
487
-
488
- - **root:** Node 16 is no longer supported in bitgojs.
489
- TICKET: WP-1100
490
-
491
- # [3.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.36.4...@bitgo/sdk-coin-ada@3.0.0) (2024-03-28)
492
-
493
- ### Features
494
-
495
- - **root:** deprecate node 16 ([d3ec624](https://github.com/BitGo/BitGoJS/commit/d3ec6240bddae2a4ab7fa80c4a16efecc36210bd))
496
-
497
- ### BREAKING CHANGES
498
-
499
- - **root:** Node 16 is no longer supported in bitgojs.
500
- TICKET: WP-1100
501
-
502
- ## [2.36.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.36.3...@bitgo/sdk-coin-ada@2.36.4) (2024-03-19)
503
-
504
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
505
-
506
- ## [2.36.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.36.2...@bitgo/sdk-coin-ada@2.36.3) (2024-03-11)
507
-
508
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
509
-
510
- ## [2.36.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.36.1...@bitgo/sdk-coin-ada@2.36.2) (2024-02-28)
511
-
512
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
513
-
514
- ## [2.36.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.36.0...@bitgo/sdk-coin-ada@2.36.1) (2024-02-22)
515
-
516
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
517
-
518
- # [2.36.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.36.0) (2024-02-19)
519
-
520
- ### Bug Fixes
521
-
522
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
523
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
524
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
525
- - **sdk-coin-ada:** fix ada recover method ([5e4ed3a](https://github.com/BitGo/BitGoJS/commit/5e4ed3a776803f37f5d5f8af9764900db46de5a9))
526
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
527
-
528
- ### Features
529
-
530
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
531
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
532
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
533
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
534
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
535
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
536
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
537
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
538
-
539
- # [2.34.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.34.0) (2024-01-30)
540
-
541
- ### Bug Fixes
542
-
543
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
544
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
545
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
546
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
547
-
548
- ### Features
549
-
550
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
551
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
552
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
553
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
554
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
555
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
556
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
557
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
558
-
559
- # [2.33.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.33.0) (2024-01-26)
560
-
561
- ### Bug Fixes
562
-
563
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
564
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
565
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
566
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
567
-
568
- ### Features
569
-
570
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
571
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
572
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
573
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
574
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
575
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
576
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
577
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
578
-
579
- # [2.32.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.32.0) (2024-01-26)
580
-
581
- ### Bug Fixes
582
-
583
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
584
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
585
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
586
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
587
-
588
- ### Features
589
-
590
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
591
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
592
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
593
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
594
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
595
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
596
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
597
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
598
-
599
- # [2.31.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.31.0) (2024-01-25)
600
-
601
- ### Bug Fixes
602
-
603
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
604
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
605
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
606
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
607
-
608
- ### Features
609
-
610
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
611
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
612
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
613
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
614
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
615
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
616
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
617
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
618
-
619
- # [2.30.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.30.0) (2024-01-22)
620
-
621
- ### Bug Fixes
622
-
623
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
624
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
625
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
626
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
627
-
628
- ### Features
629
-
630
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
631
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
632
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
633
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
634
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
635
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
636
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
637
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
638
-
639
- # [2.29.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.29.0) (2024-01-09)
640
-
641
- ### Bug Fixes
642
-
643
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
644
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
645
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
646
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
647
-
648
- ### Features
649
-
650
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
651
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
652
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
653
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
654
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
655
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
656
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
657
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
658
-
659
- # [2.28.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.28.0) (2024-01-03)
660
-
661
- ### Bug Fixes
662
-
663
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
664
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
665
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
666
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
667
-
668
- ### Features
669
-
670
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
671
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
672
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
673
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
674
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
675
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
676
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
677
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
678
-
679
- # [2.27.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.27.0) (2023-12-18)
680
-
681
- ### Bug Fixes
682
-
683
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
684
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
685
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
686
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
687
-
688
- ### Features
689
-
690
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
691
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
692
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
693
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
694
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
695
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
696
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
697
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
698
-
699
- # [2.26.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.26.0) (2023-12-12)
700
-
701
- ### Bug Fixes
702
-
703
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
704
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
705
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
706
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
707
-
708
- ### Features
709
-
710
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
711
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
712
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
713
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
714
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
715
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
716
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
717
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
718
-
719
- # [2.25.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.25.0) (2023-12-09)
720
-
721
- ### Bug Fixes
722
-
723
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
724
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
725
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
726
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
727
-
728
- ### Features
729
-
730
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
731
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
732
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
733
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
734
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
735
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
736
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
737
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
738
-
739
- # [2.24.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.24.0) (2023-12-05)
740
-
741
- ### Bug Fixes
742
-
743
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
744
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
745
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
746
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
747
-
748
- ### Features
749
-
750
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
751
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
752
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
753
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
754
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
755
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
756
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
757
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
758
-
759
- # [2.23.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.23.0) (2023-11-28)
760
-
761
- ### Bug Fixes
762
-
763
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
764
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
765
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
766
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
767
-
768
- ### Features
769
-
770
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
771
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
772
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
773
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
774
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
775
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
776
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
777
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
778
-
779
- # [2.22.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.22.0) (2023-11-24)
780
-
781
- ### Bug Fixes
782
-
783
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
784
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
785
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
786
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
787
-
788
- ### Features
789
-
790
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
791
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
792
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
793
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
794
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
795
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
796
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
797
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
798
-
799
- # [2.21.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.21.0) (2023-11-17)
800
-
801
- ### Bug Fixes
802
-
803
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
804
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
805
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
806
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
807
-
808
- ### Features
809
-
810
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
811
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
812
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
813
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
814
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
815
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
816
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
817
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
818
-
819
- # [2.20.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.20.0) (2023-11-13)
820
-
821
- ### Bug Fixes
822
-
823
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
824
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
825
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
826
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
827
-
828
- ### Features
829
-
830
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
831
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
832
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
833
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
834
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
835
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
836
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
837
-
838
- # [2.19.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.19.0) (2023-11-13)
839
-
840
- ### Bug Fixes
841
-
842
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
843
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
844
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
845
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
846
-
847
- ### Features
848
-
849
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
850
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
851
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
852
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
853
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
854
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
855
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
856
-
857
- # [2.18.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.18.0) (2023-11-13)
858
-
859
- ### Bug Fixes
860
-
861
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
862
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
863
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
864
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
865
-
866
- ### Features
867
-
868
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
869
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
870
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
871
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
872
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
873
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
874
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
875
-
876
- # [2.17.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.17.0) (2023-10-20)
877
-
878
- ### Bug Fixes
879
-
880
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
881
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
882
-
883
- ### Features
884
-
885
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
886
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
887
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
888
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
889
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
890
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
891
-
892
- # [2.16.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.16.0) (2023-10-18)
893
-
894
- ### Bug Fixes
895
-
896
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
897
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
898
-
899
- ### Features
900
-
901
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
902
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
903
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
904
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
905
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
906
-
907
- # [2.15.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.15.0) (2023-09-25)
908
-
909
- ### Bug Fixes
910
-
911
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
912
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
913
-
914
- ### Features
915
-
916
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
917
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
918
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
919
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
920
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
921
-
922
- # [2.14.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.14.0) (2023-09-09)
923
-
924
- ### Bug Fixes
925
-
926
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
927
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
928
-
929
- ### Features
930
-
931
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
932
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
933
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
934
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
935
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
936
-
937
- # [2.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.13.0) (2023-09-09)
938
-
939
- ### Bug Fixes
940
-
941
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
942
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
943
-
944
- ### Features
945
-
946
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
947
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
948
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
949
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
950
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
951
-
952
- # [2.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.12.0) (2023-09-07)
953
-
954
- ### Bug Fixes
955
-
956
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
957
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
958
-
959
- ### Features
960
-
961
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
962
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
963
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
964
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
965
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
966
-
967
- # [2.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.11.0) (2023-09-05)
968
-
969
- ### Bug Fixes
970
-
971
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
972
-
973
- ### Features
974
-
975
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
976
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
977
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
978
-
979
- # [2.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.10.0) (2023-09-01)
980
-
981
- ### Features
982
-
983
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
984
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
985
-
986
- # [2.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.9.0) (2023-08-29)
987
-
988
- ### Features
989
-
990
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
991
-
992
- # [2.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.8.0) (2023-08-25)
993
-
994
- ### Features
995
-
996
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
997
-
998
- # [2.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.7.0) (2023-08-24)
999
-
1000
- ### Features
1001
-
1002
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
1003
-
1004
- ## [2.6.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.6.2) (2023-08-16)
1005
-
1006
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1007
-
1008
- ## [2.6.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.6.1) (2023-08-16)
1009
-
1010
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1011
-
1012
- # [2.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.4.0...@bitgo/sdk-coin-ada@2.6.0) (2023-08-04)
1013
-
1014
- ### Features
1015
-
1016
- - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
1017
- - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
1018
-
1019
- # [2.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.4.0...@bitgo/sdk-coin-ada@2.5.0) (2023-07-28)
1020
-
1021
- ### Features
1022
-
1023
- - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
1024
- - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
1025
-
1026
- # [2.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.22...@bitgo/sdk-coin-ada@2.4.0) (2023-07-18)
1027
-
1028
- ### Bug Fixes
1029
-
1030
- - **sdk-coin-ada:** cosmetic signature array might duplicate ([f742147](https://github.com/BitGo/BitGoJS/commit/f7421477cb1be9b2edbd5e682d6c89ab12e27765))
1031
- - **sdk-core:** fix uploading unsigned sweep tx for sol, dot and ada ([ea85586](https://github.com/BitGo/BitGoJS/commit/ea855868adb781cbfdc73e92a81f9540b0d75c3b))
1032
-
1033
- ### Features
1034
-
1035
- - **sdk-coin-ada:** implement util method for ADA tx body ([bc67850](https://github.com/BitGo/BitGoJS/commit/bc678502f19da7cfdf79813b7f614d36e3d81403))
1036
- - **sdk-coin-ada:** parse partially signed tx hex ([dcfa939](https://github.com/BitGo/BitGoJS/commit/dcfa9392726db45a5a5c4de751a19fe7154ffa2f))
1037
- - **sdk-coin-ada:** split claim rewards and claim unstaked ([271ccca](https://github.com/BitGo/BitGoJS/commit/271ccca2be0d562cb8f204002f229c11f1f80094))
1038
-
1039
- ## [2.3.22](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.21...@bitgo/sdk-coin-ada@2.3.22) (2023-06-21)
1040
-
1041
- ### Bug Fixes
1042
-
1043
- - **sdk-coin-ada:** refine ada pledge parsing logic ([16c27f8](https://github.com/BitGo/BitGoJS/commit/16c27f84b0d2bd5ae1582446b1a8d77e39d05982))
1044
-
1045
- ## [2.3.21](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.20...@bitgo/sdk-coin-ada@2.3.21) (2023-06-14)
1046
-
1047
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1048
-
1049
- ## [2.3.20](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.19...@bitgo/sdk-coin-ada@2.3.20) (2023-06-13)
1050
-
1051
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1052
-
1053
- ## [2.3.19](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.18...@bitgo/sdk-coin-ada@2.3.19) (2023-06-07)
1054
-
1055
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1056
-
1057
- ## [2.3.18](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.17...@bitgo/sdk-coin-ada@2.3.18) (2023-06-05)
1058
-
1059
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1060
-
1061
- ## [2.3.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.16...@bitgo/sdk-coin-ada@2.3.17) (2023-05-25)
1062
-
1063
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1064
-
1065
- ## [2.3.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.15...@bitgo/sdk-coin-ada@2.3.16) (2023-05-17)
1066
-
1067
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1068
-
1069
- ## [2.3.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.14...@bitgo/sdk-coin-ada@2.3.15) (2023-05-10)
1070
-
1071
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1072
-
1073
- ## [2.3.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.13...@bitgo/sdk-coin-ada@2.3.14) (2023-05-03)
1074
-
1075
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1076
-
1077
- ## [2.3.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.12...@bitgo/sdk-coin-ada@2.3.13) (2023-04-25)
1078
-
1079
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1080
-
1081
- ## [2.3.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.11...@bitgo/sdk-coin-ada@2.3.12) (2023-04-20)
1082
-
1083
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1084
-
1085
- ## [2.3.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.10...@bitgo/sdk-coin-ada@2.3.11) (2023-04-13)
1086
-
1087
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1088
-
1089
- ## [2.3.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.9...@bitgo/sdk-coin-ada@2.3.10) (2023-02-17)
1090
-
1091
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1092
-
1093
- ## [2.3.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.6...@bitgo/sdk-coin-ada@2.3.9) (2023-02-16)
1094
-
1095
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1096
-
1097
- ## [2.3.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.6...@bitgo/sdk-coin-ada@2.3.8) (2023-02-08)
1098
-
1099
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1100
-
1101
- ## [2.3.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.6...@bitgo/sdk-coin-ada@2.3.7) (2023-01-30)
1102
-
1103
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1104
-
1105
- ## [2.3.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.5...@bitgo/sdk-coin-ada@2.3.6) (2023-01-25)
1106
-
1107
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1108
-
1109
- ## [2.3.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.4...@bitgo/sdk-coin-ada@2.3.5) (2022-12-23)
1110
-
1111
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1112
-
1113
- ## [2.3.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.3...@bitgo/sdk-coin-ada@2.3.4) (2022-12-20)
1114
-
1115
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1116
-
1117
- ## [2.3.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.2...@bitgo/sdk-coin-ada@2.3.3) (2022-12-09)
1118
-
1119
- ### Bug Fixes
1120
-
1121
- - **sdk-coin-ada:** fix address retrieval in recover function ([db1febf](https://github.com/BitGo/BitGoJS/commit/db1febfac30e2a2d54796821a10dd965fb798701))
1122
-
1123
- ## [2.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.1...@bitgo/sdk-coin-ada@2.3.2) (2022-12-06)
1124
-
1125
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1126
-
1127
- ## [2.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.0...@bitgo/sdk-coin-ada@2.3.1) (2022-12-01)
1128
-
1129
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1130
-
1131
- # [2.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.2.0...@bitgo/sdk-coin-ada@2.3.0) (2022-11-29)
1132
-
1133
- ### Features
1134
-
1135
- - **sdk-coin-ada:** add method to set fee for ada ([327798a](https://github.com/BitGo/BitGoJS/commit/327798aad2e5ce53690a0e71b896169a3bd778ba))
1136
-
1137
- ## [2.2.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.2.0...@bitgo/sdk-coin-ada@2.2.4) (2022-11-04)
1138
-
1139
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1140
-
1141
- ## [2.2.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.2.0...@bitgo/sdk-coin-ada@2.2.2) (2022-10-27)
1142
-
1143
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1144
-
1145
- ## [2.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.2.0...@bitgo/sdk-coin-ada@2.2.1) (2022-10-25)
1146
-
1147
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1148
-
1149
- # [2.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.7...@bitgo/sdk-coin-ada@2.2.0) (2022-10-18)
1150
-
1151
- ### Bug Fixes
1152
-
1153
- - **account-lib:** added validate address function to sdk-coin-ada ([95f4bdb](https://github.com/BitGo/BitGoJS/commit/95f4bdbf3ad0cc19beda6bc7939e7b7a8070a8a8))
1154
- - **account-lib:** adding fee and change to sdk-coin-ada transactionBuilder ([1810eec](https://github.com/BitGo/BitGoJS/commit/1810eec6af3df4f1301594bf1402d50b965a54ca))
1155
- - **account-lib:** enable consolidation for ada ([f522ab2](https://github.com/BitGo/BitGoJS/commit/f522ab257f15e01f9b2daf57d8cbfea610a4c111))
1156
- - **account-lib:** update ada verifyTransaction ([2cb321f](https://github.com/BitGo/BitGoJS/commit/2cb321f52f48d310c507a113784ff00f6cc44036))
1157
- - add unit tests to coins ([c8df378](https://github.com/BitGo/BitGoJS/commit/c8df378116dae2f67aaf7e9a6bfb98bf42f158d9))
1158
- - **sdk-coin-ada:** check if serialization lib is loaded ([58a62d6](https://github.com/BitGo/BitGoJS/commit/58a62d693b86b694e5045188894f0c93326474cb))
1159
- - **sdk-coin-ada:** fix blockhash validation ([7204e28](https://github.com/BitGo/BitGoJS/commit/7204e28e6993caa0ae874d951f457246ee9cb9e5))
1160
- - **sdk-coin-ada:** fix signature failure ([0ac7aee](https://github.com/BitGo/BitGoJS/commit/0ac7aee53aa417960d0cba139aea31c5641e98ed))
1161
- - **sdk-coin-ada:** reformatting address validation to not use cardano wasm ([3c7aaf1](https://github.com/BitGo/BitGoJS/commit/3c7aaf1ec5706b06c73a8d10cbfd591ce84ff958))
1162
- - **sdk-coin-ada:** temp fix for webpack import ([36a68ee](https://github.com/BitGo/BitGoJS/commit/36a68eeccdcc7a7ba4155c06860a666755d1b06b))
1163
-
1164
- ### chore
1165
-
1166
- - **statics:** update fullname for ada coin ([39ec376](https://github.com/BitGo/BitGoJS/commit/39ec3761d013bcfec718535a6f86039a42651205))
1167
-
1168
- ### Features
1169
-
1170
- - **account-lib:** add transaction builder for ada ([f35974b](https://github.com/BitGo/BitGoJS/commit/f35974b91f561e70bd83804bfc98f15b08923663))
1171
- - **account-lib:** add tss to ada coin interface ([1a06746](https://github.com/BitGo/BitGoJS/commit/1a0674605af20785700799846829de0abc90691d))
1172
- - **sdk-coin-ada:** add cardano token config ([00fcd72](https://github.com/BitGo/BitGoJS/commit/00fcd72d5feed500d69f208254c6b61815f51a16))
1173
- - **sdk-coin-ada:** add getfee to transaction class ([028e1cf](https://github.com/BitGo/BitGoJS/commit/028e1cf0f9cd2145b259a44bc963ffecfe34545f))
1174
- - **sdk-coin-ada:** add method to obtain reward address ([3be97a8](https://github.com/BitGo/BitGoJS/commit/3be97a8eb5168c45088daae96e90053335eb8190))
1175
- - **sdk-coin-ada:** implement ada sdk interface ([12ff431](https://github.com/BitGo/BitGoJS/commit/12ff431e4b694a9716a287639fbb8fd3088db719))
1176
- - **sdk-coin-ada:** implement recover function for cardano ([9bc3eeb](https://github.com/BitGo/BitGoJS/commit/9bc3eebac95621e1301c258027c87ab69cacc2da))
1177
- - **sdk-coin-ada:** staking transaction builder ([5f2a5d5](https://github.com/BitGo/BitGoJS/commit/5f2a5d553a970be2ed42a5ece83281f8825f1ade))
1178
-
1179
- ### BREAKING CHANGES
1180
-
1181
- - **statics:** updates coin names from `ADA`to `Cardano ADA`
1182
- Ticket: BG-56343
1183
- .
1184
-
1185
- # [1.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.7...@bitgo/sdk-coin-ada@1.1.0) (2022-07-19)
1186
-
1187
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1188
-
1189
- # [1.1.0-rc.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.5...@bitgo/sdk-coin-ada@1.1.0-rc.7) (2022-07-19)
1190
-
1191
- ### Features
1192
-
1193
- - **sdk-coin-ada:** implement key pair and utils for ada sdk ([9a1aabb](https://github.com/BitGo/BitGoJS/commit/9a1aabb8a07b5787ab3fa645c29be1b940694892))
1194
-
1195
- # [1.1.0-rc.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.5...@bitgo/sdk-coin-ada@1.1.0-rc.6) (2022-07-18)
1196
-
1197
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1198
-
1199
- # [1.1.0-rc.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.4...@bitgo/sdk-coin-ada@1.1.0-rc.5) (2022-07-15)
1200
-
1201
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1202
-
1203
- # [1.1.0-rc.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.2...@bitgo/sdk-coin-ada@1.1.0-rc.4) (2022-07-15)
1204
-
1205
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1206
-
1207
- # [1.1.0-rc.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.2...@bitgo/sdk-coin-ada@1.1.0-rc.3) (2022-07-14)
1208
-
1209
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1210
-
1211
- # [1.1.0-rc.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.1...@bitgo/sdk-coin-ada@1.1.0-rc.2) (2022-07-12)
1212
-
1213
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1214
-
1215
- # [1.1.0-rc.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.0...@bitgo/sdk-coin-ada@1.1.0-rc.1) (2022-07-11)
1216
-
1217
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
1218
-
1219
- # 1.1.0-rc.0 (2022-07-07)
1220
-
1221
- ### Features
1222
-
1223
- - **account-lib:** cardano ada coin skeleton ([68f7fe7](https://github.com/BitGo/BitGoJS/commit/68f7fe708d27dba55885da32e4be07aa1e1bbf00))