@bitgo-beta/sdk-coin-ada 2.3.14-beta.99 → 2.3.14-beta.990

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 (50) hide show
  1. package/CHANGELOG.md +912 -0
  2. package/dist/src/ada.d.ts +37 -20
  3. package/dist/src/ada.d.ts.map +1 -1
  4. package/dist/src/ada.js +304 -97
  5. package/dist/src/adaToken.d.ts +1 -1
  6. package/dist/src/adaToken.d.ts.map +1 -1
  7. package/dist/src/adaToken.js +3 -3
  8. package/dist/src/index.js +6 -2
  9. package/dist/src/lib/index.d.ts +2 -0
  10. package/dist/src/lib/index.d.ts.map +1 -1
  11. package/dist/src/lib/index.js +29 -9
  12. package/dist/src/lib/keyPair.js +29 -16
  13. package/dist/src/lib/messages/cip8/cip8Message.d.ts +18 -0
  14. package/dist/src/lib/messages/cip8/cip8Message.d.ts.map +1 -0
  15. package/dist/src/lib/messages/cip8/cip8Message.js +117 -0
  16. package/dist/src/lib/messages/cip8/cip8MessageBuilder.d.ts +19 -0
  17. package/dist/src/lib/messages/cip8/cip8MessageBuilder.d.ts.map +1 -0
  18. package/dist/src/lib/messages/cip8/cip8MessageBuilder.js +27 -0
  19. package/dist/src/lib/messages/cip8/index.d.ts +3 -0
  20. package/dist/src/lib/messages/cip8/index.d.ts.map +1 -0
  21. package/dist/src/lib/messages/cip8/index.js +19 -0
  22. package/dist/src/lib/messages/cip8/utils.d.ts +24 -0
  23. package/dist/src/lib/messages/cip8/utils.d.ts.map +1 -0
  24. package/dist/src/lib/messages/cip8/utils.js +73 -0
  25. package/dist/src/lib/messages/index.d.ts +3 -0
  26. package/dist/src/lib/messages/index.d.ts.map +1 -0
  27. package/dist/src/lib/messages/index.js +19 -0
  28. package/dist/src/lib/messages/messageBuilderFactory.d.ts +7 -0
  29. package/dist/src/lib/messages/messageBuilderFactory.d.ts.map +1 -0
  30. package/dist/src/lib/messages/messageBuilderFactory.js +20 -0
  31. package/dist/src/lib/stakingActivateBuilder.d.ts +1 -1
  32. package/dist/src/lib/stakingActivateBuilder.d.ts.map +1 -1
  33. package/dist/src/lib/stakingActivateBuilder.js +30 -10
  34. package/dist/src/lib/stakingDeactivateBuilder.js +24 -10
  35. package/dist/src/lib/transaction.d.ts +12 -6
  36. package/dist/src/lib/transaction.d.ts.map +1 -1
  37. package/dist/src/lib/transaction.js +49 -16
  38. package/dist/src/lib/transactionBuilder.d.ts +3 -2
  39. package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
  40. package/dist/src/lib/transactionBuilder.js +153 -21
  41. package/dist/src/lib/transactionBuilderFactory.d.ts +2 -0
  42. package/dist/src/lib/transactionBuilderFactory.d.ts.map +1 -1
  43. package/dist/src/lib/transactionBuilderFactory.js +7 -1
  44. package/dist/src/lib/utils.d.ts +23 -0
  45. package/dist/src/lib/utils.d.ts.map +1 -1
  46. package/dist/src/lib/utils.js +153 -17
  47. package/dist/src/lib/voteDelegationBuilder.d.ts +24 -0
  48. package/dist/src/lib/voteDelegationBuilder.d.ts.map +1 -0
  49. package/dist/src/lib/voteDelegationBuilder.js +84 -0
  50. package/package.json +13 -10
package/CHANGELOG.md CHANGED
@@ -3,6 +3,918 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [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)
7
+
8
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
9
+
10
+ ## [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)
11
+
12
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
13
+
14
+ ## [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)
15
+
16
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
17
+
18
+ ## [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)
19
+
20
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
21
+
22
+ ## [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)
23
+
24
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
25
+
26
+ # [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)
27
+
28
+ ### Features
29
+
30
+ - **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
31
+
32
+ # [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)
33
+
34
+ ### Features
35
+
36
+ - rename audit function naming and signature ([1a885ab](https://github.com/BitGo/BitGoJS/commit/1a885ab60d30ca8595e284a728f2ab9d3c09994e))
37
+ - **root:** add new audit key baseCoin method ([57c1778](https://github.com/BitGo/BitGoJS/commit/57c17784a72ea364f18e3af9dbd83da877827e69))
38
+
39
+ ## [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)
40
+
41
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
42
+
43
+ ## [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)
44
+
45
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
46
+
47
+ ## [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)
48
+
49
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
50
+
51
+ ## [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)
52
+
53
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
54
+
55
+ ## [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)
56
+
57
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
58
+
59
+ ## [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)
60
+
61
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
62
+
63
+ ## [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)
64
+
65
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
66
+
67
+ ## [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)
68
+
69
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
70
+
71
+ ## [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)
72
+
73
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
74
+
75
+ ## [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)
76
+
77
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
78
+
79
+ ## [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)
80
+
81
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
82
+
83
+ ## [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)
84
+
85
+ ### Bug Fixes
86
+
87
+ - **sdk-core:** set default multisig if empty ([e2727df](https://github.com/BitGo/BitGoJS/commit/e2727dfc89dd314a607b737e761e5eff824606af))
88
+
89
+ ## [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)
90
+
91
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
92
+
93
+ # [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)
94
+
95
+ ### Features
96
+
97
+ - remove deadalus address support from ADA wallets ([9175976](https://github.com/BitGo/BitGoJS/commit/91759763c0fe2516c5697b6d3fb9720cbf5aa676))
98
+
99
+ # [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)
100
+
101
+ ### Features
102
+
103
+ - remove deadalus address support from ADA wallets ([9175976](https://github.com/BitGo/BitGoJS/commit/91759763c0fe2516c5697b6d3fb9720cbf5aa676))
104
+
105
+ # [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)
106
+
107
+ ### Features
108
+
109
+ - remove deadalus address support from ADA wallets ([9175976](https://github.com/BitGo/BitGoJS/commit/91759763c0fe2516c5697b6d3fb9720cbf5aa676))
110
+
111
+ ## [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)
112
+
113
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
114
+
115
+ ## [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)
116
+
117
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
118
+
119
+ ## [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)
120
+
121
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
122
+
123
+ ## [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)
124
+
125
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
126
+
127
+ ## [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)
128
+
129
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
130
+
131
+ ## [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)
132
+
133
+ ### Bug Fixes
134
+
135
+ - using base58 and cbor as byron validation for ui support ([fe6477c](https://github.com/BitGo/BitGoJS/commit/fe6477cb563eaf44ffd27d5310680a65479afd8a))
136
+
137
+ # [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)
138
+
139
+ ### Features
140
+
141
+ - byron era support for ADA wallets ([d0e5da9](https://github.com/BitGo/BitGoJS/commit/d0e5da9939abac122a4f35198bba80562dcac00d))
142
+ - util and txBuilder changes for byron address support ([3773ebf](https://github.com/BitGo/BitGoJS/commit/3773ebf932418c6dd2d4ad36fbd24e97cc6f62b5))
143
+
144
+ ## [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)
145
+
146
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
147
+
148
+ ## [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)
149
+
150
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
151
+
152
+ ## [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)
153
+
154
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
155
+
156
+ ## [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)
157
+
158
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
159
+
160
+ ## [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)
161
+
162
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
163
+
164
+ # [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)
165
+
166
+ ### Features
167
+
168
+ - **sdk-coin-ada:** support vote delegation ([6b9ddd8](https://github.com/BitGo/BitGoJS/commit/6b9ddd867ecb458e2d5d9890829c20a22cf7658b))
169
+
170
+ # [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)
171
+
172
+ ### Features
173
+
174
+ - **sdk-coin-ada:** support vote delegation ([6b9ddd8](https://github.com/BitGo/BitGoJS/commit/6b9ddd867ecb458e2d5d9890829c20a22cf7658b))
175
+
176
+ ## [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)
177
+
178
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
179
+
180
+ ## [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)
181
+
182
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
183
+
184
+ ## [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)
185
+
186
+ ### Bug Fixes
187
+
188
+ - use better string conversion for message signing ([c81d0b1](https://github.com/BitGo/BitGoJS/commit/c81d0b19c379109df69f8bdd7ff92c582492ab45))
189
+
190
+ ## [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)
191
+
192
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
193
+
194
+ ## [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)
195
+
196
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
197
+
198
+ ## [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)
199
+
200
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
201
+
202
+ ## [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)
203
+
204
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
205
+
206
+ ## [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)
207
+
208
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
209
+
210
+ ## [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)
211
+
212
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
213
+
214
+ ## [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)
215
+
216
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
217
+
218
+ ## [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)
219
+
220
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
221
+
222
+ # [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)
223
+
224
+ ### Features
225
+
226
+ - add support for withdrawals from receive addr for ADA ([ed90e7d](https://github.com/BitGo/BitGoJS/commit/ed90e7d1b9fdebb96b5e2b5ea4afdcb42a9d2fd1))
227
+
228
+ ## [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)
229
+
230
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
231
+
232
+ ## [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)
233
+
234
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
235
+
236
+ ## [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)
237
+
238
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
239
+
240
+ ## [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)
241
+
242
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
243
+
244
+ ## [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)
245
+
246
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
247
+
248
+ ## [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)
249
+
250
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
251
+
252
+ ## [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)
253
+
254
+ ### Bug Fixes
255
+
256
+ - **sdk-coin-ada:** bumb serialization library and fix tests ([16feeac](https://github.com/BitGo/BitGoJS/commit/16feeac2c47752d0d9e641f8c789be4654ead92a))
257
+
258
+ ## [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)
259
+
260
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
261
+
262
+ ## [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)
263
+
264
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
265
+
266
+ ## [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)
267
+
268
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
269
+
270
+ ## [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)
271
+
272
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
273
+
274
+ ## [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)
275
+
276
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
277
+
278
+ ## [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)
279
+
280
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
281
+
282
+ ## [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)
283
+
284
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
285
+
286
+ ## [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)
287
+
288
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
289
+
290
+ ## [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)
291
+
292
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
293
+
294
+ ## [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)
295
+
296
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
297
+
298
+ ## [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)
299
+
300
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
301
+
302
+ # [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)
303
+
304
+ ### Features
305
+
306
+ - **sdk-core:** add tss coins method to BaseCoin class ([65ba76e](https://github.com/BitGo/BitGoJS/commit/65ba76ef3a930eed4e111c5613ded97fede57e65))
307
+
308
+ ## [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)
309
+
310
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
311
+
312
+ ## [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)
313
+
314
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
315
+
316
+ ## [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)
317
+
318
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
319
+
320
+ ## [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)
321
+
322
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
323
+
324
+ ## [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)
325
+
326
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
327
+
328
+ ## [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)
329
+
330
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
331
+
332
+ ## [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)
333
+
334
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
335
+
336
+ ## [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)
337
+
338
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
339
+
340
+ ## [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)
341
+
342
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
343
+
344
+ ## [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)
345
+
346
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
347
+
348
+ ## [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)
349
+
350
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
351
+
352
+ ## [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)
353
+
354
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
355
+
356
+ ## [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)
357
+
358
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
359
+
360
+ ## [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)
361
+
362
+ ### Bug Fixes
363
+
364
+ - superagent upgrade to 9.0 ([6e9aa43](https://github.com/BitGo/BitGoJS/commit/6e9aa43a6d2999298abd450ceb168d664b8b926d))
365
+
366
+ ## [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)
367
+
368
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
369
+
370
+ ## [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)
371
+
372
+ ### Reverts
373
+
374
+ - Revert "feat: protect pass by value when sending data out" ([ef1497f](https://github.com/BitGo/BitGoJS/commit/ef1497ffdc9c158300c32a596828081d32eb6f3a))
375
+
376
+ ## [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)
377
+
378
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
379
+
380
+ ## [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)
381
+
382
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
383
+
384
+ ## [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)
385
+
386
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
387
+
388
+ # [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)
389
+
390
+ ### Features
391
+
392
+ - protect pass by value when sending data out ([8755bdd](https://github.com/BitGo/BitGoJS/commit/8755bdd5f4174de21f0b7e4c1e7bb74fb9b8e40f))
393
+
394
+ # [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)
395
+
396
+ ### Features
397
+
398
+ - **root:** deprecate node 16 ([d3ec624](https://github.com/BitGo/BitGoJS/commit/d3ec6240bddae2a4ab7fa80c4a16efecc36210bd))
399
+
400
+ ### BREAKING CHANGES
401
+
402
+ - **root:** Node 16 is no longer supported in bitgojs.
403
+ TICKET: WP-1100
404
+
405
+ # [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)
406
+
407
+ ### Features
408
+
409
+ - **root:** deprecate node 16 ([d3ec624](https://github.com/BitGo/BitGoJS/commit/d3ec6240bddae2a4ab7fa80c4a16efecc36210bd))
410
+
411
+ ### BREAKING CHANGES
412
+
413
+ - **root:** Node 16 is no longer supported in bitgojs.
414
+ TICKET: WP-1100
415
+
416
+ ## [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)
417
+
418
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
419
+
420
+ ## [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)
421
+
422
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
423
+
424
+ ## [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)
425
+
426
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
427
+
428
+ ## [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)
429
+
430
+ **Note:** Version bump only for package @bitgo/sdk-coin-ada
431
+
432
+ # [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)
433
+
434
+ ### Bug Fixes
435
+
436
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
437
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
438
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
439
+ - **sdk-coin-ada:** fix ada recover method ([5e4ed3a](https://github.com/BitGo/BitGoJS/commit/5e4ed3a776803f37f5d5f8af9764900db46de5a9))
440
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
441
+
442
+ ### Features
443
+
444
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
445
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
446
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
447
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
448
+ - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
449
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
450
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
451
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
452
+
453
+ # [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)
454
+
455
+ ### Bug Fixes
456
+
457
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
458
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
459
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
460
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
461
+
462
+ ### Features
463
+
464
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
465
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
466
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
467
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
468
+ - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
469
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
470
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
471
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
472
+
473
+ # [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)
474
+
475
+ ### Bug Fixes
476
+
477
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
478
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
479
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
480
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
481
+
482
+ ### Features
483
+
484
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
485
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
486
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
487
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
488
+ - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
489
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
490
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
491
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
492
+
493
+ # [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)
494
+
495
+ ### Bug Fixes
496
+
497
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
498
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
499
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
500
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
501
+
502
+ ### Features
503
+
504
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
505
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
506
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
507
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
508
+ - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
509
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
510
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
511
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
512
+
513
+ # [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)
514
+
515
+ ### Bug Fixes
516
+
517
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
518
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
519
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
520
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
521
+
522
+ ### Features
523
+
524
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
525
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
526
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
527
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
528
+ - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
529
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
530
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
531
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
532
+
533
+ # [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)
534
+
535
+ ### Bug Fixes
536
+
537
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
538
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
539
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
540
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
541
+
542
+ ### Features
543
+
544
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
545
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
546
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
547
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
548
+ - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
549
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
550
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
551
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
552
+
553
+ # [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)
554
+
555
+ ### Bug Fixes
556
+
557
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
558
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
559
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
560
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
561
+
562
+ ### Features
563
+
564
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
565
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
566
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
567
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
568
+ - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
569
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
570
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
571
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
572
+
573
+ # [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)
574
+
575
+ ### Bug Fixes
576
+
577
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
578
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
579
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
580
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
581
+
582
+ ### Features
583
+
584
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
585
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
586
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
587
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
588
+ - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
589
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
590
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
591
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
592
+
593
+ # [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)
594
+
595
+ ### Bug Fixes
596
+
597
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
598
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
599
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
600
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
601
+
602
+ ### Features
603
+
604
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
605
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
606
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
607
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
608
+ - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
609
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
610
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
611
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
612
+
613
+ # [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)
614
+
615
+ ### Bug Fixes
616
+
617
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
618
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
619
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
620
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
621
+
622
+ ### Features
623
+
624
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
625
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
626
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
627
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
628
+ - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
629
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
630
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
631
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
632
+
633
+ # [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)
634
+
635
+ ### Bug Fixes
636
+
637
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
638
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
639
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
640
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
641
+
642
+ ### Features
643
+
644
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
645
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
646
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
647
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
648
+ - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
649
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
650
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
651
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
652
+
653
+ # [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)
654
+
655
+ ### Bug Fixes
656
+
657
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
658
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
659
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
660
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
661
+
662
+ ### Features
663
+
664
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
665
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
666
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
667
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
668
+ - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
669
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
670
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
671
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
672
+
673
+ # [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)
674
+
675
+ ### Bug Fixes
676
+
677
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
678
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
679
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
680
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
681
+
682
+ ### Features
683
+
684
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
685
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
686
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
687
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
688
+ - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
689
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
690
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
691
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
692
+
693
+ # [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)
694
+
695
+ ### Bug Fixes
696
+
697
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
698
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
699
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
700
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
701
+
702
+ ### Features
703
+
704
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
705
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
706
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
707
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
708
+ - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
709
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
710
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
711
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
712
+
713
+ # [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)
714
+
715
+ ### Bug Fixes
716
+
717
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
718
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
719
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
720
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
721
+
722
+ ### Features
723
+
724
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
725
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
726
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
727
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
728
+ - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
729
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
730
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
731
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
732
+
733
+ # [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)
734
+
735
+ ### Bug Fixes
736
+
737
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
738
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
739
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
740
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
741
+
742
+ ### Features
743
+
744
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
745
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
746
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
747
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
748
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
749
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
750
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
751
+
752
+ # [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)
753
+
754
+ ### Bug Fixes
755
+
756
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
757
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
758
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
759
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
760
+
761
+ ### Features
762
+
763
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
764
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
765
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
766
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
767
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
768
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
769
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
770
+
771
+ # [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)
772
+
773
+ ### Bug Fixes
774
+
775
+ - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
776
+ - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
777
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
778
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
779
+
780
+ ### Features
781
+
782
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
783
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
784
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
785
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
786
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
787
+ - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
788
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
789
+
790
+ # [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)
791
+
792
+ ### Bug Fixes
793
+
794
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
795
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
796
+
797
+ ### Features
798
+
799
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
800
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
801
+ - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
802
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
803
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
804
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
805
+
806
+ # [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)
807
+
808
+ ### Bug Fixes
809
+
810
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
811
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
812
+
813
+ ### Features
814
+
815
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
816
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
817
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
818
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
819
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
820
+
821
+ # [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)
822
+
823
+ ### Bug Fixes
824
+
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:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
833
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
834
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
835
+
836
+ # [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)
837
+
838
+ ### Bug Fixes
839
+
840
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
841
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
842
+
843
+ ### Features
844
+
845
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
846
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
847
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
848
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
849
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
850
+
851
+ # [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)
852
+
853
+ ### Bug Fixes
854
+
855
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
856
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
857
+
858
+ ### Features
859
+
860
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
861
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
862
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
863
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
864
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
865
+
866
+ # [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)
867
+
868
+ ### Bug Fixes
869
+
870
+ - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
871
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
872
+
873
+ ### Features
874
+
875
+ - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
876
+ - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
877
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
878
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
879
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
880
+
881
+ # [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)
882
+
883
+ ### Bug Fixes
884
+
885
+ - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
886
+
887
+ ### Features
888
+
889
+ - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
890
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
891
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
892
+
893
+ # [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)
894
+
895
+ ### Features
896
+
897
+ - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
898
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
899
+
900
+ # [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)
901
+
902
+ ### Features
903
+
904
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
905
+
906
+ # [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)
907
+
908
+ ### Features
909
+
910
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
911
+
912
+ # [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)
913
+
914
+ ### Features
915
+
916
+ - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
917
+
6
918
  ## [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)
7
919
 
8
920
  **Note:** Version bump only for package @bitgo/sdk-coin-ada