@bitgo-beta/sdk-coin-trx 1.2.3-alpha.39 → 1.2.3-alpha.390

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 (71) hide show
  1. package/.mocharc.yml +1 -1
  2. package/CHANGELOG.md +978 -0
  3. package/dist/resources/protobuf/Contract.proto +32 -0
  4. package/dist/resources/protobuf/tron.d.ts +1478 -214
  5. package/dist/resources/protobuf/tron.js +6312 -2600
  6. package/dist/resources/protobuf/tron.proto +6 -0
  7. package/dist/src/index.js +6 -2
  8. package/dist/src/lib/constants.d.ts +3 -0
  9. package/dist/src/lib/constants.d.ts.map +1 -0
  10. package/dist/src/lib/constants.js +6 -0
  11. package/dist/src/lib/contractCallBuilder.d.ts +1 -35
  12. package/dist/src/lib/contractCallBuilder.d.ts.map +1 -1
  13. package/dist/src/lib/contractCallBuilder.js +12 -75
  14. package/dist/src/lib/delegateResourceTxBuilder.d.ts +27 -0
  15. package/dist/src/lib/delegateResourceTxBuilder.d.ts.map +1 -0
  16. package/dist/src/lib/delegateResourceTxBuilder.js +98 -0
  17. package/dist/src/lib/enum.d.ts +36 -1
  18. package/dist/src/lib/enum.d.ts.map +1 -1
  19. package/dist/src/lib/enum.js +40 -4
  20. package/dist/src/lib/freezeBalanceTxBuilder.d.ts +71 -0
  21. package/dist/src/lib/freezeBalanceTxBuilder.d.ts.map +1 -0
  22. package/dist/src/lib/freezeBalanceTxBuilder.js +211 -0
  23. package/dist/src/lib/iface.d.ts +220 -2
  24. package/dist/src/lib/iface.d.ts.map +1 -1
  25. package/dist/src/lib/iface.js +1 -1
  26. package/dist/src/lib/index.js +23 -9
  27. package/dist/src/lib/keyPair.d.ts +0 -1
  28. package/dist/src/lib/keyPair.d.ts.map +1 -1
  29. package/dist/src/lib/keyPair.js +31 -18
  30. package/dist/src/lib/resourceManagementTxBuilder.d.ts +72 -0
  31. package/dist/src/lib/resourceManagementTxBuilder.d.ts.map +1 -0
  32. package/dist/src/lib/resourceManagementTxBuilder.js +150 -0
  33. package/dist/src/lib/tokenTransferBuilder.d.ts +1 -1
  34. package/dist/src/lib/tokenTransferBuilder.js +3 -3
  35. package/dist/src/lib/transaction.d.ts.map +1 -1
  36. package/dist/src/lib/transaction.js +92 -6
  37. package/dist/src/lib/transactionBuilder.d.ts +50 -5
  38. package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
  39. package/dist/src/lib/transactionBuilder.js +110 -21
  40. package/dist/src/lib/undelegateResourceTxBuilder.d.ts +27 -0
  41. package/dist/src/lib/undelegateResourceTxBuilder.d.ts.map +1 -0
  42. package/dist/src/lib/undelegateResourceTxBuilder.js +98 -0
  43. package/dist/src/lib/unfreezeBalanceTxBuilder.d.ts +65 -0
  44. package/dist/src/lib/unfreezeBalanceTxBuilder.d.ts.map +1 -0
  45. package/dist/src/lib/unfreezeBalanceTxBuilder.js +204 -0
  46. package/dist/src/lib/utils.d.ts +57 -4
  47. package/dist/src/lib/utils.d.ts.map +1 -1
  48. package/dist/src/lib/utils.js +366 -47
  49. package/dist/src/lib/voteWitnessTxBuilder.d.ts +62 -0
  50. package/dist/src/lib/voteWitnessTxBuilder.d.ts.map +1 -0
  51. package/dist/src/lib/voteWitnessTxBuilder.js +219 -0
  52. package/dist/src/lib/withdrawBuilder.d.ts +49 -0
  53. package/dist/src/lib/withdrawBuilder.d.ts.map +1 -0
  54. package/dist/src/lib/withdrawBuilder.js +167 -0
  55. package/dist/src/lib/withdrawExpireUnfreezeTxBuilder.d.ts +49 -0
  56. package/dist/src/lib/withdrawExpireUnfreezeTxBuilder.d.ts.map +1 -0
  57. package/dist/src/lib/withdrawExpireUnfreezeTxBuilder.js +167 -0
  58. package/dist/src/lib/wrappedBuilder.d.ts +56 -0
  59. package/dist/src/lib/wrappedBuilder.d.ts.map +1 -1
  60. package/dist/src/lib/wrappedBuilder.js +86 -2
  61. package/dist/src/trx.d.ts +58 -4
  62. package/dist/src/trx.d.ts.map +1 -1
  63. package/dist/src/trx.js +320 -146
  64. package/dist/src/trxToken.d.ts +2 -2
  65. package/dist/src/trxToken.d.ts.map +1 -1
  66. package/dist/src/trxToken.js +5 -5
  67. package/package.json +16 -14
  68. package/resources/protobuf/Contract.proto +32 -0
  69. package/resources/protobuf/tron.d.ts +1478 -214
  70. package/resources/protobuf/tron.js +6312 -2600
  71. package/resources/protobuf/tron.proto +6 -0
package/CHANGELOG.md CHANGED
@@ -3,6 +3,984 @@
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
+ ## [3.5.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.5.3...@bitgo/sdk-coin-trx@3.5.4) (2025-09-03)
7
+
8
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
9
+
10
+ ## [3.5.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.5.2...@bitgo/sdk-coin-trx@3.5.3) (2025-08-30)
11
+
12
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
13
+
14
+ ## [3.5.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.5.1...@bitgo/sdk-coin-trx@3.5.2) (2025-08-29)
15
+
16
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
17
+
18
+ ## [3.5.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.5.0...@bitgo/sdk-coin-trx@3.5.1) (2025-08-27)
19
+
20
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
21
+
22
+ # [3.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.4.9...@bitgo/sdk-coin-trx@3.5.0) (2025-08-22)
23
+
24
+ ### Features
25
+
26
+ - **root:** migrate ts-node -> tsx ([ea180b4](https://github.com/BitGo/BitGoJS/commit/ea180b43001d8e956196bc07b32798e3a7031eeb))
27
+
28
+ ## [3.4.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.4.8...@bitgo/sdk-coin-trx@3.4.9) (2025-08-22)
29
+
30
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
31
+
32
+ ## [3.4.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.4.7...@bitgo/sdk-coin-trx@3.4.8) (2025-08-19)
33
+
34
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
35
+
36
+ ## [3.4.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.4.6...@bitgo/sdk-coin-trx@3.4.7) (2025-08-14)
37
+
38
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
39
+
40
+ ## [3.4.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.4.5...@bitgo/sdk-coin-trx@3.4.6) (2025-08-07)
41
+
42
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
43
+
44
+ ## [3.4.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.4.4...@bitgo/sdk-coin-trx@3.4.5) (2025-07-31)
45
+
46
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
47
+
48
+ ## [3.4.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.4.3...@bitgo/sdk-coin-trx@3.4.4) (2025-07-30)
49
+
50
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
51
+
52
+ ## [3.4.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.4.1...@bitgo/sdk-coin-trx@3.4.3) (2025-07-25)
53
+
54
+ ### Bug Fixes
55
+
56
+ - run test in /dist to avoid strip-only mode for node 24 ([868a01a](https://github.com/BitGo/BitGoJS/commit/868a01ab0a21fdf04fa352396c6a5cb825e01c36))
57
+
58
+ ## [3.4.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.4.1...@bitgo/sdk-coin-trx@3.4.2) (2025-07-23)
59
+
60
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
61
+
62
+ ## [3.4.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.4.0...@bitgo/sdk-coin-trx@3.4.1) (2025-07-15)
63
+
64
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
65
+
66
+ # [3.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.3.5...@bitgo/sdk-coin-trx@3.4.0) (2025-07-10)
67
+
68
+ ### Features
69
+
70
+ - **sdk-coin-trx:** add support for reward claim ([4962338](https://github.com/BitGo/BitGoJS/commit/49623382bc6855534d8e7f4bbd6fe177c2ebd47a))
71
+
72
+ ## [3.3.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.3.4...@bitgo/sdk-coin-trx@3.3.5) (2025-07-03)
73
+
74
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
75
+
76
+ ## [3.3.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.3.3...@bitgo/sdk-coin-trx@3.3.4) (2025-06-25)
77
+
78
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
79
+
80
+ ## [3.3.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.3.2...@bitgo/sdk-coin-trx@3.3.3) (2025-06-24)
81
+
82
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
83
+
84
+ ## [3.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.3.1...@bitgo/sdk-coin-trx@3.3.2) (2025-06-18)
85
+
86
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
87
+
88
+ ## [3.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.3.0...@bitgo/sdk-coin-trx@3.3.1) (2025-06-10)
89
+
90
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
91
+
92
+ # [3.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.2.0...@bitgo/sdk-coin-trx@3.3.0) (2025-06-05)
93
+
94
+ ### Features
95
+
96
+ - **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
97
+
98
+ # [3.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.1.1...@bitgo/sdk-coin-trx@3.2.0) (2025-06-02)
99
+
100
+ ### Features
101
+
102
+ - rename audit function naming and signature ([1a885ab](https://github.com/BitGo/BitGoJS/commit/1a885ab60d30ca8595e284a728f2ab9d3c09994e))
103
+ - **sdk-coin-trx:** add delegate txbuilder ([2e270bd](https://github.com/BitGo/BitGoJS/commit/2e270bd44b6333795f9bc08e17d31c588f179e3a))
104
+ - **sdk-coin-trx:** add delegate txbuilder ([efecbf3](https://github.com/BitGo/BitGoJS/commit/efecbf3b001148f5edf3a1729958f5f3e77ea3ec))
105
+ - **sdk-coin-trx:** add unfreeze and withdraw for tron unstaking ([bf49450](https://github.com/BitGo/BitGoJS/commit/bf4945079989120e10e3498dd633c39d84942494))
106
+
107
+ ## [3.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.1.0...@bitgo/sdk-coin-trx@3.1.1) (2025-05-28)
108
+
109
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
110
+
111
+ # [3.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.0.2...@bitgo/sdk-coin-trx@3.1.0) (2025-05-22)
112
+
113
+ ### Features
114
+
115
+ - **sdk-coin-trx:** add stake support (freeze and vote) ([7419a55](https://github.com/BitGo/BitGoJS/commit/7419a55d5822d2dba4d99f5a5cbdd53c40427abf))
116
+
117
+ ## [3.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.0.1...@bitgo/sdk-coin-trx@3.0.2) (2025-05-20)
118
+
119
+ ### Bug Fixes
120
+
121
+ - **sdk-coin-trx:** handling string type for scanning factor ([e465870](https://github.com/BitGo/BitGoJS/commit/e4658700c57ba5906aabb896ba2e9a26f244df60))
122
+
123
+ ## [3.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@3.0.0...@bitgo/sdk-coin-trx@3.0.1) (2025-05-07)
124
+
125
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
126
+
127
+ # [3.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.77...@bitgo/sdk-coin-trx@3.0.0) (2025-04-29)
128
+
129
+ ### Bug Fixes
130
+
131
+ - **sdk-coin-trx:** isValidAddress allows only base58 address format ([3b4f53c](https://github.com/BitGo/BitGoJS/commit/3b4f53cb3f17194b757d163709a402b2b056b331))
132
+
133
+ ### BREAKING CHANGES
134
+
135
+ - **sdk-coin-trx:** isValidAddress for Tron used to allow hex addresses and base58 format addresses.
136
+ But Tron build API expect addresses to be passed in Base58check format. Hence removing the support of hex addresses
137
+ TICKET: COIN-3940
138
+
139
+ ## [2.0.77](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.76...@bitgo/sdk-coin-trx@2.0.77) (2025-04-25)
140
+
141
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
142
+
143
+ ## [2.0.76](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.75...@bitgo/sdk-coin-trx@2.0.76) (2025-04-15)
144
+
145
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
146
+
147
+ ## [2.0.75](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.74...@bitgo/sdk-coin-trx@2.0.75) (2025-04-04)
148
+
149
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
150
+
151
+ ## [2.0.74](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.73...@bitgo/sdk-coin-trx@2.0.74) (2025-04-02)
152
+
153
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
154
+
155
+ ## [2.0.73](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.72...@bitgo/sdk-coin-trx@2.0.73) (2025-03-28)
156
+
157
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
158
+
159
+ ## [2.0.72](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.71...@bitgo/sdk-coin-trx@2.0.72) (2025-03-20)
160
+
161
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
162
+
163
+ ## [2.0.71](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.70...@bitgo/sdk-coin-trx@2.0.71) (2025-03-18)
164
+
165
+ ### Bug Fixes
166
+
167
+ - **sdk-core:** set default multisig if empty ([e2727df](https://github.com/BitGo/BitGoJS/commit/e2727dfc89dd314a607b737e761e5eff824606af))
168
+
169
+ ## [2.0.70](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.69...@bitgo/sdk-coin-trx@2.0.70) (2025-03-06)
170
+
171
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
172
+
173
+ ## [2.0.69](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.66...@bitgo/sdk-coin-trx@2.0.69) (2025-03-04)
174
+
175
+ ### Bug Fixes
176
+
177
+ - dependency fixes for secp256 lib ([826db0b](https://github.com/BitGo/BitGoJS/commit/826db0b5481435bb38b251e8bb5ba8ce9f78d017))
178
+
179
+ ## [2.0.68](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.66...@bitgo/sdk-coin-trx@2.0.68) (2025-02-26)
180
+
181
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
182
+
183
+ ## [2.0.67](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.66...@bitgo/sdk-coin-trx@2.0.67) (2025-02-20)
184
+
185
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
186
+
187
+ ## [2.0.66](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.65...@bitgo/sdk-coin-trx@2.0.66) (2025-02-19)
188
+
189
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
190
+
191
+ ## [2.0.65](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.64...@bitgo/sdk-coin-trx@2.0.65) (2025-02-11)
192
+
193
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
194
+
195
+ ## [2.0.64](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.63...@bitgo/sdk-coin-trx@2.0.64) (2025-02-05)
196
+
197
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
198
+
199
+ ## [2.0.63](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.62...@bitgo/sdk-coin-trx@2.0.63) (2025-01-28)
200
+
201
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
202
+
203
+ ## [2.0.62](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.61...@bitgo/sdk-coin-trx@2.0.62) (2025-01-23)
204
+
205
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
206
+
207
+ ## [2.0.61](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.60...@bitgo/sdk-coin-trx@2.0.61) (2025-01-23)
208
+
209
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
210
+
211
+ ## [2.0.60](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.59...@bitgo/sdk-coin-trx@2.0.60) (2025-01-20)
212
+
213
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
214
+
215
+ ## [2.0.59](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.58...@bitgo/sdk-coin-trx@2.0.59) (2025-01-15)
216
+
217
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
218
+
219
+ ## [2.0.58](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.57...@bitgo/sdk-coin-trx@2.0.58) (2025-01-09)
220
+
221
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
222
+
223
+ ## [2.0.57](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.56...@bitgo/sdk-coin-trx@2.0.57) (2025-01-03)
224
+
225
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
226
+
227
+ ## [2.0.56](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.55...@bitgo/sdk-coin-trx@2.0.56) (2024-12-24)
228
+
229
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
230
+
231
+ ## [2.0.55](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.54...@bitgo/sdk-coin-trx@2.0.55) (2024-12-19)
232
+
233
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
234
+
235
+ ## [2.0.54](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.52...@bitgo/sdk-coin-trx@2.0.54) (2024-12-17)
236
+
237
+ ### Bug Fixes
238
+
239
+ - **abstract-utxo:** pass actual wallet to signTransaction ([55caa4a](https://github.com/BitGo/BitGoJS/commit/55caa4a6ddcb7699732d6259f1a2db014008a815))
240
+
241
+ ## [2.0.53](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.52...@bitgo/sdk-coin-trx@2.0.53) (2024-12-17)
242
+
243
+ ### Bug Fixes
244
+
245
+ - **abstract-utxo:** pass actual wallet to signTransaction ([55caa4a](https://github.com/BitGo/BitGoJS/commit/55caa4a6ddcb7699732d6259f1a2db014008a815))
246
+
247
+ ## [2.0.52](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.51...@bitgo/sdk-coin-trx@2.0.52) (2024-12-12)
248
+
249
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
250
+
251
+ ## [2.0.51](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.50...@bitgo/sdk-coin-trx@2.0.51) (2024-12-11)
252
+
253
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
254
+
255
+ ## [2.0.50](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.49...@bitgo/sdk-coin-trx@2.0.50) (2024-12-03)
256
+
257
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
258
+
259
+ ## [2.0.49](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.48...@bitgo/sdk-coin-trx@2.0.49) (2024-11-26)
260
+
261
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
262
+
263
+ ## [2.0.48](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.47...@bitgo/sdk-coin-trx@2.0.48) (2024-11-21)
264
+
265
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
266
+
267
+ ## [2.0.47](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.45...@bitgo/sdk-coin-trx@2.0.47) (2024-11-19)
268
+
269
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
270
+
271
+ ## [2.0.46](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.45...@bitgo/sdk-coin-trx@2.0.46) (2024-11-14)
272
+
273
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
274
+
275
+ ## [2.0.45](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.44...@bitgo/sdk-coin-trx@2.0.45) (2024-11-08)
276
+
277
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
278
+
279
+ ## [2.0.44](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.43...@bitgo/sdk-coin-trx@2.0.44) (2024-11-07)
280
+
281
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
282
+
283
+ ## [2.0.43](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.42...@bitgo/sdk-coin-trx@2.0.43) (2024-11-01)
284
+
285
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
286
+
287
+ ## [2.0.42](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.41...@bitgo/sdk-coin-trx@2.0.42) (2024-10-22)
288
+
289
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
290
+
291
+ ## [2.0.41](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.40...@bitgo/sdk-coin-trx@2.0.41) (2024-10-15)
292
+
293
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
294
+
295
+ ## [2.0.40](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.39...@bitgo/sdk-coin-trx@2.0.40) (2024-10-08)
296
+
297
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
298
+
299
+ ## [2.0.39](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.38...@bitgo/sdk-coin-trx@2.0.39) (2024-10-04)
300
+
301
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
302
+
303
+ ## [2.0.38](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.37...@bitgo/sdk-coin-trx@2.0.38) (2024-09-24)
304
+
305
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
306
+
307
+ ## [2.0.37](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.36...@bitgo/sdk-coin-trx@2.0.37) (2024-09-19)
308
+
309
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
310
+
311
+ ## [2.0.36](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.35...@bitgo/sdk-coin-trx@2.0.36) (2024-09-16)
312
+
313
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
314
+
315
+ ## [2.0.35](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.34...@bitgo/sdk-coin-trx@2.0.35) (2024-09-10)
316
+
317
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
318
+
319
+ ## [2.0.34](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.33...@bitgo/sdk-coin-trx@2.0.34) (2024-09-03)
320
+
321
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
322
+
323
+ ## [2.0.33](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.32...@bitgo/sdk-coin-trx@2.0.33) (2024-08-29)
324
+
325
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
326
+
327
+ ## [2.0.32](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.31...@bitgo/sdk-coin-trx@2.0.32) (2024-08-27)
328
+
329
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
330
+
331
+ ## [2.0.31](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.29...@bitgo/sdk-coin-trx@2.0.31) (2024-08-20)
332
+
333
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
334
+
335
+ ## [2.0.30](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.29...@bitgo/sdk-coin-trx@2.0.30) (2024-08-13)
336
+
337
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
338
+
339
+ ## [2.0.29](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.28...@bitgo/sdk-coin-trx@2.0.29) (2024-08-07)
340
+
341
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
342
+
343
+ ## [2.0.28](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.27...@bitgo/sdk-coin-trx@2.0.28) (2024-07-30)
344
+
345
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
346
+
347
+ ## [2.0.27](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.26...@bitgo/sdk-coin-trx@2.0.27) (2024-07-24)
348
+
349
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
350
+
351
+ ## [2.0.26](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.25...@bitgo/sdk-coin-trx@2.0.26) (2024-07-16)
352
+
353
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
354
+
355
+ ## [2.0.25](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.24...@bitgo/sdk-coin-trx@2.0.25) (2024-07-04)
356
+
357
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
358
+
359
+ ## [2.0.24](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.23...@bitgo/sdk-coin-trx@2.0.24) (2024-07-02)
360
+
361
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
362
+
363
+ ## [2.0.23](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.22...@bitgo/sdk-coin-trx@2.0.23) (2024-06-27)
364
+
365
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
366
+
367
+ ## [2.0.22](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.21...@bitgo/sdk-coin-trx@2.0.22) (2024-06-26)
368
+
369
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
370
+
371
+ ## [2.0.21](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.19...@bitgo/sdk-coin-trx@2.0.21) (2024-06-21)
372
+
373
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
374
+
375
+ ## [2.0.20](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.19...@bitgo/sdk-coin-trx@2.0.20) (2024-06-20)
376
+
377
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
378
+
379
+ ## [2.0.19](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.18...@bitgo/sdk-coin-trx@2.0.19) (2024-06-14)
380
+
381
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
382
+
383
+ ## [2.0.18](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.17...@bitgo/sdk-coin-trx@2.0.18) (2024-06-11)
384
+
385
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
386
+
387
+ ## [2.0.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.16...@bitgo/sdk-coin-trx@2.0.17) (2024-06-05)
388
+
389
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
390
+
391
+ ## [2.0.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.15...@bitgo/sdk-coin-trx@2.0.16) (2024-05-31)
392
+
393
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
394
+
395
+ ## [2.0.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.14...@bitgo/sdk-coin-trx@2.0.15) (2024-05-28)
396
+
397
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
398
+
399
+ ## [2.0.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.13...@bitgo/sdk-coin-trx@2.0.14) (2024-05-22)
400
+
401
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
402
+
403
+ ## [2.0.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.12...@bitgo/sdk-coin-trx@2.0.13) (2024-05-17)
404
+
405
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
406
+
407
+ ## [2.0.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.11...@bitgo/sdk-coin-trx@2.0.12) (2024-05-13)
408
+
409
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
410
+
411
+ ## [2.0.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.10...@bitgo/sdk-coin-trx@2.0.11) (2024-05-08)
412
+
413
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
414
+
415
+ ## [2.0.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.9...@bitgo/sdk-coin-trx@2.0.10) (2024-05-01)
416
+
417
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
418
+
419
+ ## [2.0.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.8...@bitgo/sdk-coin-trx@2.0.9) (2024-04-25)
420
+
421
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
422
+
423
+ ## [2.0.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.7...@bitgo/sdk-coin-trx@2.0.8) (2024-04-24)
424
+
425
+ ### Bug Fixes
426
+
427
+ - superagent upgrade to 9.0 ([6e9aa43](https://github.com/BitGo/BitGoJS/commit/6e9aa43a6d2999298abd450ceb168d664b8b926d))
428
+
429
+ ## [2.0.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.6...@bitgo/sdk-coin-trx@2.0.7) (2024-04-22)
430
+
431
+ ### Bug Fixes
432
+
433
+ - **sdk-core:** update protobufjs to fix critical vulnerability ([7066ada](https://github.com/BitGo/BitGoJS/commit/7066ada07272968a1325f84c36d5146b9e9d9abf))
434
+
435
+ ## [2.0.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.5...@bitgo/sdk-coin-trx@2.0.6) (2024-04-17)
436
+
437
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
438
+
439
+ ## [2.0.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.4...@bitgo/sdk-coin-trx@2.0.5) (2024-04-12)
440
+
441
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
442
+
443
+ ## [2.0.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.3...@bitgo/sdk-coin-trx@2.0.4) (2024-04-10)
444
+
445
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
446
+
447
+ ## [2.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.2...@bitgo/sdk-coin-trx@2.0.3) (2024-04-09)
448
+
449
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
450
+
451
+ ## [2.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.1...@bitgo/sdk-coin-trx@2.0.2) (2024-04-08)
452
+
453
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
454
+
455
+ ## [2.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@2.0.0...@bitgo/sdk-coin-trx@2.0.1) (2024-04-05)
456
+
457
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
458
+
459
+ # [2.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.37.4...@bitgo/sdk-coin-trx@2.0.0) (2024-03-28)
460
+
461
+ ### Features
462
+
463
+ - **root:** deprecate node 16 ([d3ec624](https://github.com/BitGo/BitGoJS/commit/d3ec6240bddae2a4ab7fa80c4a16efecc36210bd))
464
+
465
+ ### BREAKING CHANGES
466
+
467
+ - **root:** Node 16 is no longer supported in bitgojs.
468
+ TICKET: WP-1100
469
+
470
+ ## [1.37.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.37.3...@bitgo/sdk-coin-trx@1.37.4) (2024-03-19)
471
+
472
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
473
+
474
+ ## [1.37.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.37.2...@bitgo/sdk-coin-trx@1.37.3) (2024-03-11)
475
+
476
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
477
+
478
+ ## [1.37.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.37.1...@bitgo/sdk-coin-trx@1.37.2) (2024-02-28)
479
+
480
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
481
+
482
+ ## [1.37.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.37.0...@bitgo/sdk-coin-trx@1.37.1) (2024-02-22)
483
+
484
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
485
+
486
+ # [1.37.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.37.0) (2024-02-19)
487
+
488
+ ### Bug Fixes
489
+
490
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
491
+ - **sdk-coin-trx:** fix withdrawal issue with trx:sun token ([b9866ac](https://github.com/BitGo/BitGoJS/commit/b9866aca9b9ebeb86ebd756eba44abda299ac116))
492
+ - **sdk-coin-trx:** import tron token list from statics ([77a4c3d](https://github.com/BitGo/BitGoJS/commit/77a4c3d147e4234256c9c579d99f291b6abbd7bf))
493
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
494
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
495
+
496
+ ### Features
497
+
498
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
499
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
500
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
501
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
502
+
503
+ # [1.35.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.35.0) (2024-01-30)
504
+
505
+ ### Bug Fixes
506
+
507
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
508
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
509
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
510
+
511
+ ### Features
512
+
513
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
514
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
515
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
516
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
517
+
518
+ # [1.34.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.34.0) (2024-01-26)
519
+
520
+ ### Bug Fixes
521
+
522
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
523
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
524
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
525
+
526
+ ### Features
527
+
528
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
529
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
530
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
531
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
532
+
533
+ # [1.33.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.33.0) (2024-01-26)
534
+
535
+ ### Bug Fixes
536
+
537
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
538
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
539
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
540
+
541
+ ### Features
542
+
543
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
544
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
545
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
546
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
547
+
548
+ # [1.32.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.32.0) (2024-01-25)
549
+
550
+ ### Bug Fixes
551
+
552
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
553
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
554
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
555
+
556
+ ### Features
557
+
558
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
559
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
560
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
561
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
562
+
563
+ # [1.31.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.31.0) (2024-01-22)
564
+
565
+ ### Bug Fixes
566
+
567
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
568
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
569
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
570
+
571
+ ### Features
572
+
573
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
574
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
575
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
576
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
577
+
578
+ # [1.30.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.30.0) (2024-01-09)
579
+
580
+ ### Bug Fixes
581
+
582
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
583
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
584
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
585
+
586
+ ### Features
587
+
588
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
589
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
590
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
591
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
592
+
593
+ # [1.29.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.29.0) (2024-01-03)
594
+
595
+ ### Bug Fixes
596
+
597
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
598
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
599
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
600
+
601
+ ### Features
602
+
603
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
604
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
605
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
606
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
607
+
608
+ # [1.28.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.28.0) (2023-12-18)
609
+
610
+ ### Bug Fixes
611
+
612
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
613
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
614
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
615
+
616
+ ### Features
617
+
618
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
619
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
620
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
621
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
622
+
623
+ # [1.27.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.27.0) (2023-12-12)
624
+
625
+ ### Bug Fixes
626
+
627
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
628
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
629
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
630
+
631
+ ### Features
632
+
633
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
634
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
635
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
636
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
637
+
638
+ # [1.26.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.26.0) (2023-12-09)
639
+
640
+ ### Bug Fixes
641
+
642
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
643
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
644
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
645
+
646
+ ### Features
647
+
648
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
649
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
650
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
651
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
652
+
653
+ # [1.25.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.25.0) (2023-12-05)
654
+
655
+ ### Bug Fixes
656
+
657
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
658
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
659
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
660
+
661
+ ### Features
662
+
663
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
664
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
665
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
666
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
667
+
668
+ # [1.24.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.24.0) (2023-11-28)
669
+
670
+ ### Bug Fixes
671
+
672
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
673
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
674
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
675
+
676
+ ### Features
677
+
678
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
679
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
680
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
681
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
682
+
683
+ # [1.23.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.23.0) (2023-11-24)
684
+
685
+ ### Bug Fixes
686
+
687
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
688
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
689
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
690
+
691
+ ### Features
692
+
693
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
694
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
695
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
696
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
697
+
698
+ # [1.22.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.22.0) (2023-11-17)
699
+
700
+ ### Bug Fixes
701
+
702
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
703
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
704
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
705
+
706
+ ### Features
707
+
708
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
709
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
710
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
711
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
712
+
713
+ # [1.21.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.21.0) (2023-11-13)
714
+
715
+ ### Bug Fixes
716
+
717
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
718
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
719
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
720
+
721
+ ### Features
722
+
723
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
724
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
725
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
726
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
727
+
728
+ # [1.20.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.20.0) (2023-11-13)
729
+
730
+ ### Bug Fixes
731
+
732
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
733
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
734
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
735
+
736
+ ### Features
737
+
738
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
739
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
740
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
741
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
742
+
743
+ # [1.19.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.19.0) (2023-11-13)
744
+
745
+ ### Bug Fixes
746
+
747
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
748
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
749
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
750
+
751
+ ### Features
752
+
753
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
754
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
755
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
756
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
757
+
758
+ # [1.18.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.18.0) (2023-10-20)
759
+
760
+ ### Bug Fixes
761
+
762
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
763
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
764
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
765
+
766
+ ### Features
767
+
768
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
769
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
770
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
771
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
772
+
773
+ # [1.17.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.17.0) (2023-10-18)
774
+
775
+ ### Bug Fixes
776
+
777
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
778
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
779
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
780
+
781
+ ### Features
782
+
783
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
784
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
785
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
786
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
787
+
788
+ # [1.16.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.16.0) (2023-09-25)
789
+
790
+ ### Bug Fixes
791
+
792
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
793
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
794
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
795
+
796
+ ### Features
797
+
798
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
799
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
800
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
801
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
802
+
803
+ # [1.15.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.15.0) (2023-09-09)
804
+
805
+ ### Bug Fixes
806
+
807
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
808
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
809
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
810
+
811
+ ### Features
812
+
813
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
814
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
815
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
816
+
817
+ # [1.14.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.14.0) (2023-09-09)
818
+
819
+ ### Bug Fixes
820
+
821
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
822
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
823
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
824
+
825
+ ### Features
826
+
827
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
828
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
829
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
830
+
831
+ # [1.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.13.0) (2023-09-07)
832
+
833
+ ### Bug Fixes
834
+
835
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
836
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
837
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
838
+
839
+ ### Features
840
+
841
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
842
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
843
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
844
+
845
+ # [1.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.12.0) (2023-09-05)
846
+
847
+ ### Bug Fixes
848
+
849
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
850
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
851
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
852
+
853
+ ### Features
854
+
855
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
856
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
857
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
858
+
859
+ # [1.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.11.0) (2023-09-01)
860
+
861
+ ### Bug Fixes
862
+
863
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
864
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
865
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
866
+
867
+ ### Features
868
+
869
+ - **sdk-coin-trx:** add trx consolidate batch ([79b4c3b](https://github.com/BitGo/BitGoJS/commit/79b4c3b570151851b836d1d96d61997572270994))
870
+ - **sdk-coin-trx:** batch consolidate native TRX to base ([a781709](https://github.com/BitGo/BitGoJS/commit/a781709e296ac37edd8c49587fb46a3ae0202cce))
871
+ - **sdk-coin-trx:** consolidate to base address ([d3b7558](https://github.com/BitGo/BitGoJS/commit/d3b75585471ca22441acffc58b2f94d192e8c2a1))
872
+
873
+ ## [1.10.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.10.5) (2023-08-29)
874
+
875
+ ### Bug Fixes
876
+
877
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
878
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
879
+
880
+ ## [1.10.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.10.4) (2023-08-25)
881
+
882
+ ### Bug Fixes
883
+
884
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
885
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
886
+
887
+ ## [1.10.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.10.3) (2023-08-24)
888
+
889
+ ### Bug Fixes
890
+
891
+ - **sdk-coin-trx:** skip sweep address with balance lower than a threshold ([ebbdc8b](https://github.com/BitGo/BitGoJS/commit/ebbdc8b30e4078ffda1c134dfed0211e050e73c9))
892
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
893
+
894
+ ## [1.10.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.10.2) (2023-08-16)
895
+
896
+ ### Bug Fixes
897
+
898
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
899
+
900
+ ## [1.10.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.10.0...@bitgo/sdk-coin-trx@1.10.1) (2023-08-16)
901
+
902
+ ### Bug Fixes
903
+
904
+ - **sdk-coin-trx:** use a safer fee for sweep ([a7575e0](https://github.com/BitGo/BitGoJS/commit/a7575e081e18e4c9128449e736d970b813a5b021))
905
+
906
+ # [1.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.8.5...@bitgo/sdk-coin-trx@1.10.0) (2023-08-04)
907
+
908
+ ### Features
909
+
910
+ - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
911
+ - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
912
+
913
+ # [1.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.8.5...@bitgo/sdk-coin-trx@1.9.0) (2023-07-28)
914
+
915
+ ### Features
916
+
917
+ - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
918
+ - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
919
+
920
+ ## [1.8.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.8.4...@bitgo/sdk-coin-trx@1.8.5) (2023-07-18)
921
+
922
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
923
+
924
+ ## [1.8.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.8.3...@bitgo/sdk-coin-trx@1.8.4) (2023-06-21)
925
+
926
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
927
+
928
+ ## [1.8.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.8.2...@bitgo/sdk-coin-trx@1.8.3) (2023-06-14)
929
+
930
+ ### Bug Fixes
931
+
932
+ - **sdk-coin-trx:** replace isValidHexAddress method for correct pattern ([5886259](https://github.com/BitGo/BitGoJS/commit/5886259caf4a45bc9016d276e9b2155d969900cf))
933
+
934
+ ## [1.8.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.8.1...@bitgo/sdk-coin-trx@1.8.2) (2023-06-13)
935
+
936
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
937
+
938
+ ## [1.8.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.8.0...@bitgo/sdk-coin-trx@1.8.1) (2023-06-07)
939
+
940
+ ### Bug Fixes
941
+
942
+ - **sdk-coin-trx:** os agnostic commands ([6a740f2](https://github.com/BitGo/BitGoJS/commit/6a740f22ac8e79bdadbe28ee14a8a62cb554bd65))
943
+
944
+ # [1.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.7.6...@bitgo/sdk-coin-trx@1.8.0) (2023-06-05)
945
+
946
+ ### Bug Fixes
947
+
948
+ - **sdk-coin-stx:** fix trx recovery ([8c28f2f](https://github.com/BitGo/BitGoJS/commit/8c28f2ff2c2b29be1e27617f6fb830a5f18b7ced))
949
+
950
+ ### Features
951
+
952
+ - **sdk-coin-trx:** add receive address tron recovery ([2a120fe](https://github.com/BitGo/BitGoJS/commit/2a120fef44345c270f2fa0ff5749f78f821e0d1b))
953
+
954
+ ## [1.7.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.7.5...@bitgo/sdk-coin-trx@1.7.6) (2023-05-25)
955
+
956
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
957
+
958
+ ## [1.7.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.7.4...@bitgo/sdk-coin-trx@1.7.5) (2023-05-17)
959
+
960
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
961
+
962
+ ## [1.7.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.7.3...@bitgo/sdk-coin-trx@1.7.4) (2023-05-10)
963
+
964
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
965
+
966
+ ## [1.7.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.7.2...@bitgo/sdk-coin-trx@1.7.3) (2023-05-03)
967
+
968
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
969
+
970
+ ## [1.7.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.7.1...@bitgo/sdk-coin-trx@1.7.2) (2023-04-25)
971
+
972
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
973
+
974
+ ## [1.7.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.7.0...@bitgo/sdk-coin-trx@1.7.1) (2023-04-20)
975
+
976
+ **Note:** Version bump only for package @bitgo/sdk-coin-trx
977
+
978
+ # [1.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.6.4...@bitgo/sdk-coin-trx@1.7.0) (2023-04-13)
979
+
980
+ ### Features
981
+
982
+ - **sdk-coin-trx:** add tokens to tron recovery method ([1aec210](https://github.com/BitGo/BitGoJS/commit/1aec2109bbd52a5c77d9df529ec73184c9babc85))
983
+
6
984
  ## [1.6.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-trx@1.6.3...@bitgo/sdk-coin-trx@1.6.4) (2023-02-17)
7
985
 
8
986
  **Note:** Version bump only for package @bitgo/sdk-coin-trx