@bitgo-beta/sdk-coin-trx 1.2.3-alpha.405 → 1.2.3-alpha.407

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