@bitgo-beta/sdk-coin-trx 1.2.3-alpha.38 → 1.2.3-alpha.381

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