@bitgo-beta/sdk-coin-trx 1.2.3-alpha.401 → 1.2.3-alpha.403

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