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