@bitgo-beta/sdk-coin-sol 2.4.3-beta.92 → 2.4.3-beta.921

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 (62) hide show
  1. package/CHANGELOG.md +955 -0
  2. package/dist/src/index.js +6 -2
  3. package/dist/src/lib/ataInitializationBuilder.d.ts.map +1 -1
  4. package/dist/src/lib/ataInitializationBuilder.js +38 -19
  5. package/dist/src/lib/closeAtaBuilder.d.ts +19 -0
  6. package/dist/src/lib/closeAtaBuilder.d.ts.map +1 -0
  7. package/dist/src/lib/closeAtaBuilder.js +69 -0
  8. package/dist/src/lib/constants.d.ts +35 -8
  9. package/dist/src/lib/constants.d.ts.map +1 -1
  10. package/dist/src/lib/constants.js +39 -10
  11. package/dist/src/lib/iface.d.ts +40 -4
  12. package/dist/src/lib/iface.d.ts.map +1 -1
  13. package/dist/src/lib/iface.js +1 -1
  14. package/dist/src/lib/index.d.ts +11 -9
  15. package/dist/src/lib/index.d.ts.map +1 -1
  16. package/dist/src/lib/index.js +44 -26
  17. package/dist/src/lib/instructionParamsFactory.d.ts +1 -1
  18. package/dist/src/lib/instructionParamsFactory.d.ts.map +1 -1
  19. package/dist/src/lib/instructionParamsFactory.js +246 -52
  20. package/dist/src/lib/keyPair.js +5 -5
  21. package/dist/src/lib/solInstructionFactory.d.ts.map +1 -1
  22. package/dist/src/lib/solInstructionFactory.js +128 -52
  23. package/dist/src/lib/stakingActivateBuilder.d.ts +9 -2
  24. package/dist/src/lib/stakingActivateBuilder.d.ts.map +1 -1
  25. package/dist/src/lib/stakingActivateBuilder.js +23 -10
  26. package/dist/src/lib/stakingAuthorizeBuilder.js +7 -7
  27. package/dist/src/lib/stakingDeactivateBuilder.d.ts +26 -1
  28. package/dist/src/lib/stakingDeactivateBuilder.d.ts.map +1 -1
  29. package/dist/src/lib/stakingDeactivateBuilder.js +106 -25
  30. package/dist/src/lib/stakingDelegateBuilder.d.ts +42 -0
  31. package/dist/src/lib/stakingDelegateBuilder.d.ts.map +1 -0
  32. package/dist/src/lib/stakingDelegateBuilder.js +120 -0
  33. package/dist/src/lib/stakingRawMsgAuthorizeBuilder.d.ts.map +1 -1
  34. package/dist/src/lib/stakingRawMsgAuthorizeBuilder.js +9 -5
  35. package/dist/src/lib/stakingWithdrawBuilder.js +6 -6
  36. package/dist/src/lib/tokenTransferBuilder.d.ts.map +1 -1
  37. package/dist/src/lib/tokenTransferBuilder.js +32 -16
  38. package/dist/src/lib/transaction.d.ts +2 -3
  39. package/dist/src/lib/transaction.d.ts.map +1 -1
  40. package/dist/src/lib/transaction.js +45 -26
  41. package/dist/src/lib/transactionBuilder.d.ts +2 -1
  42. package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
  43. package/dist/src/lib/transactionBuilder.js +29 -19
  44. package/dist/src/lib/transactionBuilderFactory.d.ts +22 -9
  45. package/dist/src/lib/transactionBuilderFactory.d.ts.map +1 -1
  46. package/dist/src/lib/transactionBuilderFactory.js +31 -10
  47. package/dist/src/lib/transferBuilder.js +4 -4
  48. package/dist/src/lib/transferBuilderV2.d.ts +11 -1
  49. package/dist/src/lib/transferBuilderV2.d.ts.map +1 -1
  50. package/dist/src/lib/transferBuilderV2.js +71 -10
  51. package/dist/src/lib/utils.d.ts +16 -6
  52. package/dist/src/lib/utils.d.ts.map +1 -1
  53. package/dist/src/lib/utils.js +144 -53
  54. package/dist/src/lib/walletInitializationBuilder.js +6 -6
  55. package/dist/src/sol.d.ts +70 -25
  56. package/dist/src/sol.d.ts.map +1 -1
  57. package/dist/src/sol.js +609 -81
  58. package/dist/src/solToken.d.ts +2 -1
  59. package/dist/src/solToken.d.ts.map +1 -1
  60. package/dist/src/solToken.js +6 -3
  61. package/dist/src/tsol.js +1 -1
  62. package/package.json +10 -9
package/CHANGELOG.md CHANGED
@@ -3,6 +3,961 @@
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.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.11.0...@bitgo/sdk-coin-sol@4.12.0) (2025-06-05)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **sdk-coin-sol:** fix enable token for sol 2022 program ([f03487d](https://github.com/BitGo/BitGoJS/commit/f03487d83d0ee27de65e401b62627ca1dabf7230))
11
+
12
+ ### Features
13
+
14
+ - **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
15
+
16
+ # [4.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.10.5...@bitgo/sdk-coin-sol@4.11.0) (2025-06-02)
17
+
18
+ ### Bug Fixes
19
+
20
+ - **sdk-coin-sol:** fix ata creation for sol 2022 token ([4acffc6](https://github.com/BitGo/BitGoJS/commit/4acffc6fed498b0d4d226148830bbdd710c4b6c5))
21
+
22
+ ### Features
23
+
24
+ - rename audit function naming and signature ([1a885ab](https://github.com/BitGo/BitGoJS/commit/1a885ab60d30ca8595e284a728f2ab9d3c09994e))
25
+ - **root:** add new audit key baseCoin method ([57c1778](https://github.com/BitGo/BitGoJS/commit/57c17784a72ea364f18e3af9dbd83da877827e69))
26
+
27
+ ## [4.10.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.10.4...@bitgo/sdk-coin-sol@4.10.5) (2025-05-28)
28
+
29
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
30
+
31
+ ## [4.10.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.10.3...@bitgo/sdk-coin-sol@4.10.4) (2025-05-22)
32
+
33
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
34
+
35
+ ## [4.10.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.10.2...@bitgo/sdk-coin-sol@4.10.3) (2025-05-20)
36
+
37
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
38
+
39
+ ## [4.10.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.10.1...@bitgo/sdk-coin-sol@4.10.2) (2025-05-07)
40
+
41
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
42
+
43
+ ## [4.10.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.10.0...@bitgo/sdk-coin-sol@4.10.1) (2025-04-29)
44
+
45
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
46
+
47
+ # [4.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.9.1...@bitgo/sdk-coin-sol@4.10.0) (2025-04-25)
48
+
49
+ ### Bug Fixes
50
+
51
+ - **sdk-coin-sol:** amend recipients type to match what WP is sending ([9d47c29](https://github.com/BitGo/BitGoJS/commit/9d47c29bdbe5991af39d79167b0d7fd0f0af8fc7))
52
+ - **sdk-coin-sol:** set isMarinade flag during from raw build ([7a0f381](https://github.com/BitGo/BitGoJS/commit/7a0f3818cee20bbfec42970ae5c87f572a37f319))
53
+
54
+ ### Features
55
+
56
+ - **sdk-coin-sol:** add decode order for marinade stake/unstake ([e1b1e32](https://github.com/BitGo/BitGoJS/commit/e1b1e32cd6e97eb5100b3a753ff059f47df46d99))
57
+ - **sdk-coin-sol:** add support for marinade staking ([9def25e](https://github.com/BitGo/BitGoJS/commit/9def25eb07acfe79d16d330e3078951ed6ccbaa1))
58
+ - **sdk-coin-sol:** add unstake flow for marinade ([6933bd9](https://github.com/BitGo/BitGoJS/commit/6933bd9b875dbd19866210ded74c79e6a644cc7a))
59
+
60
+ ## [4.9.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.9.0...@bitgo/sdk-coin-sol@4.9.1) (2025-04-15)
61
+
62
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
63
+
64
+ # [4.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.13...@bitgo/sdk-coin-sol@4.9.0) (2025-04-04)
65
+
66
+ ### Features
67
+
68
+ - **abstract-eth:** added support for mpcv2 in recovery ([da92bf8](https://github.com/BitGo/BitGoJS/commit/da92bf80d3f34c35ce73b0a9c2581d1ae201d1cc))
69
+
70
+ ## [4.8.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.12...@bitgo/sdk-coin-sol@4.8.13) (2025-04-02)
71
+
72
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
73
+
74
+ ## [4.8.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.11...@bitgo/sdk-coin-sol@4.8.12) (2025-03-28)
75
+
76
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
77
+
78
+ ## [4.8.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.10...@bitgo/sdk-coin-sol@4.8.11) (2025-03-20)
79
+
80
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
81
+
82
+ ## [4.8.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.9...@bitgo/sdk-coin-sol@4.8.10) (2025-03-18)
83
+
84
+ ### Bug Fixes
85
+
86
+ - **sdk-coin-sol:** set fee for unsigned sweep ([75927f0](https://github.com/BitGo/BitGoJS/commit/75927f04b0ba19f3f1ce9ec10cad51c82e17b35c))
87
+ - **sdk-core:** set default multisig if empty ([e2727df](https://github.com/BitGo/BitGoJS/commit/e2727dfc89dd314a607b737e761e5eff824606af))
88
+
89
+ ## [4.8.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.8...@bitgo/sdk-coin-sol@4.8.9) (2025-03-06)
90
+
91
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
92
+
93
+ ## [4.8.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.5...@bitgo/sdk-coin-sol@4.8.8) (2025-03-04)
94
+
95
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
96
+
97
+ ## [4.8.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.5...@bitgo/sdk-coin-sol@4.8.7) (2025-02-26)
98
+
99
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
100
+
101
+ ## [4.8.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.5...@bitgo/sdk-coin-sol@4.8.6) (2025-02-20)
102
+
103
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
104
+
105
+ ## [4.8.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.4...@bitgo/sdk-coin-sol@4.8.5) (2025-02-19)
106
+
107
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
108
+
109
+ ## [4.8.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.3...@bitgo/sdk-coin-sol@4.8.4) (2025-02-11)
110
+
111
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
112
+
113
+ ## [4.8.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.2...@bitgo/sdk-coin-sol@4.8.3) (2025-02-05)
114
+
115
+ ### Bug Fixes
116
+
117
+ - **sdk-coin-sol:** set priority fee in initBuilder ([f770bd1](https://github.com/BitGo/BitGoJS/commit/f770bd1fd21558da52894106bf91f04d59aa8900))
118
+
119
+ ## [4.8.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.1...@bitgo/sdk-coin-sol@4.8.2) (2025-01-28)
120
+
121
+ ### Bug Fixes
122
+
123
+ - **sdk-coin-sol:** set prio fees as number ([603bdc1](https://github.com/BitGo/BitGoJS/commit/603bdc158f3005654ddf81a388644fcea37ef701))
124
+
125
+ ## [4.8.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.0...@bitgo/sdk-coin-sol@4.8.1) (2025-01-23)
126
+
127
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
128
+
129
+ # [4.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.17...@bitgo/sdk-coin-sol@4.8.0) (2025-01-23)
130
+
131
+ ### Bug Fixes
132
+
133
+ - **sdk-coin-sol:** add priority instruction when token transfer ([701935a](https://github.com/BitGo/BitGoJS/commit/701935aba34a586d2f58c5c5542a396587f02c49))
134
+ - **sdk-coin-sol:** update tests ([1e85dce](https://github.com/BitGo/BitGoJS/commit/1e85dce08f4511c0bed60a85e739dd08d29494f0))
135
+
136
+ ### Features
137
+
138
+ - **sdk-coin-sol:** add prio fees for token txns ([90628d4](https://github.com/BitGo/BitGoJS/commit/90628d4908e5d4acc031e8793c358b6bf741167f))
139
+ - **sdk-coin-sol:** fetch prio fees from WP ([7dd8807](https://github.com/BitGo/BitGoJS/commit/7dd8807cabb2ad0f8a800ff1b914b201a71ba074))
140
+ - **sdk-coin-sol:** ignore zero value prio fee ([a6cd5ee](https://github.com/BitGo/BitGoJS/commit/a6cd5ee4dd486b71774d47b6c9763de2d1dcc13e))
141
+
142
+ ## [4.7.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.16...@bitgo/sdk-coin-sol@4.7.17) (2025-01-20)
143
+
144
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
145
+
146
+ ## [4.7.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.15...@bitgo/sdk-coin-sol@4.7.16) (2025-01-15)
147
+
148
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
149
+
150
+ ## [4.7.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.14...@bitgo/sdk-coin-sol@4.7.15) (2025-01-09)
151
+
152
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
153
+
154
+ ## [4.7.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.13...@bitgo/sdk-coin-sol@4.7.14) (2025-01-03)
155
+
156
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
157
+
158
+ ## [4.7.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.12...@bitgo/sdk-coin-sol@4.7.13) (2024-12-24)
159
+
160
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
161
+
162
+ ## [4.7.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.11...@bitgo/sdk-coin-sol@4.7.12) (2024-12-19)
163
+
164
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
165
+
166
+ ## [4.7.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.9...@bitgo/sdk-coin-sol@4.7.11) (2024-12-17)
167
+
168
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
169
+
170
+ ## [4.7.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.9...@bitgo/sdk-coin-sol@4.7.10) (2024-12-17)
171
+
172
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
173
+
174
+ ## [4.7.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.8...@bitgo/sdk-coin-sol@4.7.9) (2024-12-12)
175
+
176
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
177
+
178
+ ## [4.7.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.7...@bitgo/sdk-coin-sol@4.7.8) (2024-12-11)
179
+
180
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
181
+
182
+ ## [4.7.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.6...@bitgo/sdk-coin-sol@4.7.7) (2024-12-03)
183
+
184
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
185
+
186
+ ## [4.7.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.5...@bitgo/sdk-coin-sol@4.7.6) (2024-11-26)
187
+
188
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
189
+
190
+ ## [4.7.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.4...@bitgo/sdk-coin-sol@4.7.5) (2024-11-21)
191
+
192
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
193
+
194
+ ## [4.7.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.2...@bitgo/sdk-coin-sol@4.7.4) (2024-11-19)
195
+
196
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
197
+
198
+ ## [4.7.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.2...@bitgo/sdk-coin-sol@4.7.3) (2024-11-14)
199
+
200
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
201
+
202
+ ## [4.7.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.1...@bitgo/sdk-coin-sol@4.7.2) (2024-11-08)
203
+
204
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
205
+
206
+ ## [4.7.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.0...@bitgo/sdk-coin-sol@4.7.1) (2024-11-07)
207
+
208
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
209
+
210
+ # [4.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.6.1...@bitgo/sdk-coin-sol@4.7.0) (2024-11-01)
211
+
212
+ ### Features
213
+
214
+ - **sdk-coin-sol:** add close ATA durable nonce support ([fc5115e](https://github.com/BitGo/BitGoJS/commit/fc5115e69f3cab8b2ae90c81f1a24f56b1a92cad))
215
+
216
+ ## [4.6.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.6.0...@bitgo/sdk-coin-sol@4.6.1) (2024-10-22)
217
+
218
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
219
+
220
+ # [4.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.5.6...@bitgo/sdk-coin-sol@4.6.0) (2024-10-15)
221
+
222
+ ### Bug Fixes
223
+
224
+ - replace getFees rpc call with getFeeForMessage ([b59e4a6](https://github.com/BitGo/BitGoJS/commit/b59e4a65c4f071be5f9a127b7aaa963b2d1e6e63))
225
+
226
+ ### Features
227
+
228
+ - **sdk-coin-sol:** add getInstructionType for closeATA ([41531f8](https://github.com/BitGo/BitGoJS/commit/41531f807119e2ae4a24c9738b3644075804b9b9))
229
+
230
+ ## [4.5.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.5.5...@bitgo/sdk-coin-sol@4.5.6) (2024-10-08)
231
+
232
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
233
+
234
+ ## [4.5.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.5.4...@bitgo/sdk-coin-sol@4.5.5) (2024-10-04)
235
+
236
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
237
+
238
+ ## [4.5.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.5.3...@bitgo/sdk-coin-sol@4.5.4) (2024-09-24)
239
+
240
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
241
+
242
+ ## [4.5.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.5.2...@bitgo/sdk-coin-sol@4.5.3) (2024-09-19)
243
+
244
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
245
+
246
+ ## [4.5.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.5.1...@bitgo/sdk-coin-sol@4.5.2) (2024-09-16)
247
+
248
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
249
+
250
+ ## [4.5.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.5.0...@bitgo/sdk-coin-sol@4.5.1) (2024-09-10)
251
+
252
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
253
+
254
+ # [4.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.4.7...@bitgo/sdk-coin-sol@4.5.0) (2024-09-03)
255
+
256
+ ### Features
257
+
258
+ - **sdk-coin-sol:** automatic ata creation during consolidation ([50c5e0b](https://github.com/BitGo/BitGoJS/commit/50c5e0b3832127917fe143e2d4ee3a109ccb9bd0))
259
+
260
+ ## [4.4.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.4.6...@bitgo/sdk-coin-sol@4.4.7) (2024-08-29)
261
+
262
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
263
+
264
+ ## [4.4.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.4.5...@bitgo/sdk-coin-sol@4.4.6) (2024-08-27)
265
+
266
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
267
+
268
+ ## [4.4.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.4.3...@bitgo/sdk-coin-sol@4.4.5) (2024-08-20)
269
+
270
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
271
+
272
+ ## [4.4.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.4.3...@bitgo/sdk-coin-sol@4.4.4) (2024-08-13)
273
+
274
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
275
+
276
+ ## [4.4.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.4.2...@bitgo/sdk-coin-sol@4.4.3) (2024-08-07)
277
+
278
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
279
+
280
+ ## [4.4.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.4.1...@bitgo/sdk-coin-sol@4.4.2) (2024-07-30)
281
+
282
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
283
+
284
+ ## [4.4.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.4.0...@bitgo/sdk-coin-sol@4.4.1) (2024-07-24)
285
+
286
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
287
+
288
+ # [4.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.3.3...@bitgo/sdk-coin-sol@4.4.0) (2024-07-16)
289
+
290
+ ### Features
291
+
292
+ - **sdk-coin-sol:** add sol close ATA recovery support along with token recovery ([76c76b7](https://github.com/BitGo/BitGoJS/commit/76c76b7a11c0a9fd2a252c0931ef757960b72122))
293
+
294
+ ## [4.3.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.3.2...@bitgo/sdk-coin-sol@4.3.3) (2024-07-04)
295
+
296
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
297
+
298
+ ## [4.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.3.1...@bitgo/sdk-coin-sol@4.3.2) (2024-07-02)
299
+
300
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
301
+
302
+ ## [4.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.3.0...@bitgo/sdk-coin-sol@4.3.1) (2024-06-27)
303
+
304
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
305
+
306
+ # [4.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.2.4...@bitgo/sdk-coin-sol@4.3.0) (2024-06-26)
307
+
308
+ ### Features
309
+
310
+ - **sdk-core:** add tss coins method to BaseCoin class ([65ba76e](https://github.com/BitGo/BitGoJS/commit/65ba76ef3a930eed4e111c5613ded97fede57e65))
311
+
312
+ ## [4.2.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.2.2...@bitgo/sdk-coin-sol@4.2.4) (2024-06-21)
313
+
314
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
315
+
316
+ ## [4.2.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.2.2...@bitgo/sdk-coin-sol@4.2.3) (2024-06-20)
317
+
318
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
319
+
320
+ ## [4.2.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.2.1...@bitgo/sdk-coin-sol@4.2.2) (2024-06-14)
321
+
322
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
323
+
324
+ ## [4.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.2.0...@bitgo/sdk-coin-sol@4.2.1) (2024-06-11)
325
+
326
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
327
+
328
+ # [4.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.1.3...@bitgo/sdk-coin-sol@4.2.0) (2024-06-05)
329
+
330
+ ### Bug Fixes
331
+
332
+ - update `@solana/web3.js` to `1.92.1` ([830c728](https://github.com/BitGo/BitGoJS/commit/830c72800a8f319867563b689ea70edbca311391))
333
+
334
+ ### Features
335
+
336
+ - **sdk-coin-sol:** add sol close ATA recovery support ([b1fdb64](https://github.com/BitGo/BitGoJS/commit/b1fdb6471bd1f5331e7a690056cf9380c5c2b5f1))
337
+
338
+ ## [4.1.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.1.2...@bitgo/sdk-coin-sol@4.1.3) (2024-05-31)
339
+
340
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
341
+
342
+ ## [4.1.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.1.1...@bitgo/sdk-coin-sol@4.1.2) (2024-05-28)
343
+
344
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
345
+
346
+ ## [4.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.1.0...@bitgo/sdk-coin-sol@4.1.1) (2024-05-22)
347
+
348
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
349
+
350
+ # [4.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.11...@bitgo/sdk-coin-sol@4.1.0) (2024-05-17)
351
+
352
+ ### Features
353
+
354
+ - **sdk-coin-sol:** handle more sol authorize transaction ([02a7c47](https://github.com/BitGo/BitGoJS/commit/02a7c4741973a5ae417b2f5ef53015ff1752bc93))
355
+
356
+ ## [4.0.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.10...@bitgo/sdk-coin-sol@4.0.11) (2024-05-13)
357
+
358
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
359
+
360
+ ## [4.0.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.9...@bitgo/sdk-coin-sol@4.0.10) (2024-05-08)
361
+
362
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
363
+
364
+ ## [4.0.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.8...@bitgo/sdk-coin-sol@4.0.9) (2024-05-01)
365
+
366
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
367
+
368
+ ## [4.0.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.7...@bitgo/sdk-coin-sol@4.0.8) (2024-04-25)
369
+
370
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
371
+
372
+ ## [4.0.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.6...@bitgo/sdk-coin-sol@4.0.7) (2024-04-24)
373
+
374
+ ### Bug Fixes
375
+
376
+ - superagent upgrade to 9.0 ([6e9aa43](https://github.com/BitGo/BitGoJS/commit/6e9aa43a6d2999298abd450ceb168d664b8b926d))
377
+
378
+ ## [4.0.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.5...@bitgo/sdk-coin-sol@4.0.6) (2024-04-22)
379
+
380
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
381
+
382
+ ## [4.0.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.4...@bitgo/sdk-coin-sol@4.0.5) (2024-04-17)
383
+
384
+ ### Bug Fixes
385
+
386
+ - **sdk-coin-sol:** update `split` with latest SOL library ([85d3cc3](https://github.com/BitGo/BitGoJS/commit/85d3cc3643bb3994d13f31f603ce0df8a9ea2e4b))
387
+
388
+ ## [4.0.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.3...@bitgo/sdk-coin-sol@4.0.4) (2024-04-12)
389
+
390
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
391
+
392
+ ## [4.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.2...@bitgo/sdk-coin-sol@4.0.3) (2024-04-10)
393
+
394
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
395
+
396
+ ## [4.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.1...@bitgo/sdk-coin-sol@4.0.2) (2024-04-09)
397
+
398
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
399
+
400
+ ## [4.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.0...@bitgo/sdk-coin-sol@4.0.1) (2024-04-08)
401
+
402
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
403
+
404
+ # [4.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.39.4...@bitgo/sdk-coin-sol@4.0.0) (2024-04-05)
405
+
406
+ ### Bug Fixes
407
+
408
+ - **sdk-coin-sol:** support change staking authority ([dd9fa12](https://github.com/BitGo/BitGoJS/commit/dd9fa124930768a0f67746c93209064a9b760bd8))
409
+
410
+ ### Features
411
+
412
+ - **root:** deprecate node 16 ([d3ec624](https://github.com/BitGo/BitGoJS/commit/d3ec6240bddae2a4ab7fa80c4a16efecc36210bd))
413
+
414
+ ### BREAKING CHANGES
415
+
416
+ - **root:** Node 16 is no longer supported in bitgojs.
417
+ TICKET: WP-1100
418
+
419
+ # [3.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.39.4...@bitgo/sdk-coin-sol@3.0.0) (2024-03-28)
420
+
421
+ ### Features
422
+
423
+ - **root:** deprecate node 16 ([d3ec624](https://github.com/BitGo/BitGoJS/commit/d3ec6240bddae2a4ab7fa80c4a16efecc36210bd))
424
+
425
+ ### BREAKING CHANGES
426
+
427
+ - **root:** Node 16 is no longer supported in bitgojs.
428
+ TICKET: WP-1100
429
+
430
+ ## [2.39.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.39.3...@bitgo/sdk-coin-sol@2.39.4) (2024-03-19)
431
+
432
+ ### Bug Fixes
433
+
434
+ - **sdk-coin-sol:** update partial unstake SOL ([4b2a941](https://github.com/BitGo/BitGoJS/commit/4b2a9417c282aae0f1d5624db610e63b3e091c82))
435
+
436
+ ## [2.39.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.39.2...@bitgo/sdk-coin-sol@2.39.3) (2024-03-11)
437
+
438
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
439
+
440
+ ## [2.39.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.39.1...@bitgo/sdk-coin-sol@2.39.2) (2024-02-28)
441
+
442
+ **Note:** Version bump only for package @bitgo/sdk-coin-sol
443
+
444
+ ## [2.39.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.39.0...@bitgo/sdk-coin-sol@2.39.1) (2024-02-22)
445
+
446
+ ### Bug Fixes
447
+
448
+ - **sdk-coin-sol:** deprecate deriveHardened for SOL ([d3cb900](https://github.com/BitGo/BitGoJS/commit/d3cb90057924e874b2319abe962d00daaf06f2a4))
449
+
450
+ # [2.39.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.39.0) (2024-02-19)
451
+
452
+ ### Bug Fixes
453
+
454
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
455
+ - **sdk-coin-sol:** fix token recovery ([e23800e](https://github.com/BitGo/BitGoJS/commit/e23800e8bba71992fe66cb44ec98f4cde52efe53))
456
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
457
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
458
+
459
+ ### Features
460
+
461
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
462
+ - **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
463
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
464
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
465
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
466
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
467
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
468
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
469
+ - **sdk-coin-sol:** implement broadcastTransaction ([b532947](https://github.com/BitGo/BitGoJS/commit/b53294769d33a21f36247c77b724151553e641ca))
470
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
471
+
472
+ # [2.37.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.37.0) (2024-01-30)
473
+
474
+ ### Bug Fixes
475
+
476
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
477
+ - **sdk-coin-sol:** fix token recovery ([e23800e](https://github.com/BitGo/BitGoJS/commit/e23800e8bba71992fe66cb44ec98f4cde52efe53))
478
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
479
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
480
+
481
+ ### Features
482
+
483
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
484
+ - **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
485
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
486
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
487
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
488
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
489
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
490
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
491
+ - **sdk-coin-sol:** implement broadcastTransaction ([b532947](https://github.com/BitGo/BitGoJS/commit/b53294769d33a21f36247c77b724151553e641ca))
492
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
493
+
494
+ # [2.36.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.36.0) (2024-01-26)
495
+
496
+ ### Bug Fixes
497
+
498
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
499
+ - **sdk-coin-sol:** fix token recovery ([e23800e](https://github.com/BitGo/BitGoJS/commit/e23800e8bba71992fe66cb44ec98f4cde52efe53))
500
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
501
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
502
+
503
+ ### Features
504
+
505
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
506
+ - **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
507
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
508
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
509
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
510
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
511
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
512
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
513
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
514
+
515
+ # [2.35.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.35.0) (2024-01-26)
516
+
517
+ ### Bug Fixes
518
+
519
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
520
+ - **sdk-coin-sol:** fix token recovery ([e23800e](https://github.com/BitGo/BitGoJS/commit/e23800e8bba71992fe66cb44ec98f4cde52efe53))
521
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
522
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
523
+
524
+ ### Features
525
+
526
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
527
+ - **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
528
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
529
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
530
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
531
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
532
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
533
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
534
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
535
+
536
+ # [2.34.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.34.0) (2024-01-25)
537
+
538
+ ### Bug Fixes
539
+
540
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
541
+ - **sdk-coin-sol:** fix token recovery ([e23800e](https://github.com/BitGo/BitGoJS/commit/e23800e8bba71992fe66cb44ec98f4cde52efe53))
542
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
543
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
544
+
545
+ ### Features
546
+
547
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
548
+ - **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
549
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
550
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
551
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
552
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
553
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
554
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
555
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
556
+
557
+ # [2.33.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.33.0) (2024-01-22)
558
+
559
+ ### Bug Fixes
560
+
561
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
562
+ - **sdk-coin-sol:** fix token recovery ([e23800e](https://github.com/BitGo/BitGoJS/commit/e23800e8bba71992fe66cb44ec98f4cde52efe53))
563
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
564
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
565
+
566
+ ### Features
567
+
568
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
569
+ - **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
570
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
571
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
572
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
573
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
574
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
575
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
576
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
577
+
578
+ # [2.32.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.32.0) (2024-01-09)
579
+
580
+ ### Bug Fixes
581
+
582
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
583
+ - **sdk-coin-sol:** fix token recovery ([e23800e](https://github.com/BitGo/BitGoJS/commit/e23800e8bba71992fe66cb44ec98f4cde52efe53))
584
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
585
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
586
+
587
+ ### Features
588
+
589
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
590
+ - **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
591
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
592
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
593
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
594
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
595
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
596
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
597
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
598
+
599
+ # [2.31.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.31.0) (2024-01-03)
600
+
601
+ ### Bug Fixes
602
+
603
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
604
+ - **sdk-coin-sol:** fix token recovery ([e23800e](https://github.com/BitGo/BitGoJS/commit/e23800e8bba71992fe66cb44ec98f4cde52efe53))
605
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
606
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
607
+
608
+ ### Features
609
+
610
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
611
+ - **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
612
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
613
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
614
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
615
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
616
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
617
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
618
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
619
+
620
+ # [2.30.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.30.0) (2023-12-18)
621
+
622
+ ### Bug Fixes
623
+
624
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
625
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
626
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
627
+
628
+ ### Features
629
+
630
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
631
+ - **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
632
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
633
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
634
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
635
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
636
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
637
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
638
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
639
+
640
+ # [2.29.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.29.0) (2023-12-12)
641
+
642
+ ### Bug Fixes
643
+
644
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
645
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
646
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
647
+
648
+ ### Features
649
+
650
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
651
+ - **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
652
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
653
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
654
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
655
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
656
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
657
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
658
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
659
+
660
+ # [2.28.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.28.0) (2023-12-09)
661
+
662
+ ### Bug Fixes
663
+
664
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
665
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
666
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
667
+
668
+ ### Features
669
+
670
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
671
+ - **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
672
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
673
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
674
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
675
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
676
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
677
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
678
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
679
+
680
+ # [2.27.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.27.0) (2023-12-05)
681
+
682
+ ### Bug Fixes
683
+
684
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
685
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
686
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
687
+
688
+ ### Features
689
+
690
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
691
+ - **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
692
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
693
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
694
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
695
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
696
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
697
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
698
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
699
+
700
+ # [2.26.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.26.0) (2023-11-28)
701
+
702
+ ### Bug Fixes
703
+
704
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
705
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
706
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
707
+
708
+ ### Features
709
+
710
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
711
+ - **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
712
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
713
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
714
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
715
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
716
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
717
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
718
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
719
+
720
+ # [2.25.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.25.0) (2023-11-24)
721
+
722
+ ### Bug Fixes
723
+
724
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
725
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
726
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
727
+
728
+ ### Features
729
+
730
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
731
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
732
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
733
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
734
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
735
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
736
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
737
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
738
+
739
+ # [2.24.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.24.0) (2023-11-17)
740
+
741
+ ### Bug Fixes
742
+
743
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
744
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
745
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
746
+
747
+ ### Features
748
+
749
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
750
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
751
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
752
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
753
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
754
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
755
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
756
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
757
+
758
+ # [2.23.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.23.0) (2023-11-13)
759
+
760
+ ### Bug Fixes
761
+
762
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
763
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
764
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
765
+
766
+ ### Features
767
+
768
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
769
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
770
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
771
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
772
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
773
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
774
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
775
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
776
+
777
+ # [2.22.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.22.0) (2023-11-13)
778
+
779
+ ### Bug Fixes
780
+
781
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
782
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
783
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
784
+
785
+ ### Features
786
+
787
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
788
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
789
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
790
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
791
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
792
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
793
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
794
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
795
+
796
+ # [2.21.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.21.0) (2023-11-13)
797
+
798
+ ### Bug Fixes
799
+
800
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
801
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
802
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
803
+
804
+ ### Features
805
+
806
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
807
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
808
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
809
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
810
+ - **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
811
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
812
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
813
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
814
+
815
+ # [2.20.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.20.0) (2023-10-20)
816
+
817
+ ### Bug Fixes
818
+
819
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
820
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
821
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
822
+
823
+ ### Features
824
+
825
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
826
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
827
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
828
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
829
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
830
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
831
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
832
+
833
+ # [2.19.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.19.0) (2023-10-18)
834
+
835
+ ### Bug Fixes
836
+
837
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
838
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
839
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
840
+
841
+ ### Features
842
+
843
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
844
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
845
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
846
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
847
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
848
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
849
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
850
+
851
+ # [2.18.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.18.0) (2023-09-25)
852
+
853
+ ### Bug Fixes
854
+
855
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
856
+ - **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
857
+ - **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
858
+
859
+ ### Features
860
+
861
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
862
+ - **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
863
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
864
+ - **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
865
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
866
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
867
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
868
+
869
+ # [2.17.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.17.0) (2023-09-09)
870
+
871
+ ### Bug Fixes
872
+
873
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
874
+
875
+ ### Features
876
+
877
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
878
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
879
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
880
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
881
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
882
+
883
+ # [2.16.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.16.0) (2023-09-09)
884
+
885
+ ### Bug Fixes
886
+
887
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
888
+
889
+ ### Features
890
+
891
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
892
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
893
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
894
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
895
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
896
+
897
+ # [2.15.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.15.0) (2023-09-07)
898
+
899
+ ### Bug Fixes
900
+
901
+ - **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
902
+
903
+ ### Features
904
+
905
+ - **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
906
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
907
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
908
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
909
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
910
+
911
+ # [2.14.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.14.0) (2023-09-05)
912
+
913
+ ### Features
914
+
915
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
916
+ - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
917
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
918
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
919
+
920
+ # [2.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.13.0) (2023-09-01)
921
+
922
+ ### Features
923
+
924
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
925
+ - **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
926
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
927
+
928
+ # [2.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.12.0) (2023-08-29)
929
+
930
+ ### Features
931
+
932
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
933
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
934
+
935
+ # [2.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.11.0) (2023-08-25)
936
+
937
+ ### Features
938
+
939
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
940
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
941
+
942
+ # [2.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.10.0) (2023-08-24)
943
+
944
+ ### Features
945
+
946
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
947
+ - **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
948
+
949
+ # [2.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.9.0) (2023-08-16)
950
+
951
+ ### Features
952
+
953
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
954
+
955
+ # [2.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.8.0) (2023-08-16)
956
+
957
+ ### Features
958
+
959
+ - **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
960
+
6
961
  # [2.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.5.6...@bitgo/sdk-coin-sol@2.7.0) (2023-08-04)
7
962
 
8
963
  ### Bug Fixes