@bitgo-beta/sdk-coin-hbar 2.0.73-alpha.110 → 2.0.73-alpha.112

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 (101) hide show
  1. package/dist/src/hbar.d.ts +168 -0
  2. package/dist/src/hbar.d.ts.map +1 -0
  3. package/dist/src/hbar.js +497 -0
  4. package/dist/src/hbarToken.d.ts +21 -0
  5. package/dist/src/hbarToken.d.ts.map +1 -0
  6. package/dist/src/hbarToken.js +58 -0
  7. package/dist/src/index.d.ts +6 -0
  8. package/dist/src/index.d.ts.map +1 -0
  9. package/dist/src/index.js +22 -0
  10. package/dist/src/lib/coinTransferBuilder.d.ts +47 -0
  11. package/dist/src/lib/coinTransferBuilder.d.ts.map +1 -0
  12. package/dist/src/lib/coinTransferBuilder.js +159 -0
  13. package/dist/src/lib/constants.d.ts +8 -0
  14. package/dist/src/lib/constants.d.ts.map +1 -0
  15. package/dist/src/lib/constants.js +12 -0
  16. package/dist/src/lib/iface.d.ts +50 -0
  17. package/dist/src/lib/iface.d.ts.map +1 -0
  18. package/dist/src/lib/iface.js +3 -0
  19. package/dist/src/lib/index.d.ts +10 -0
  20. package/dist/src/lib/index.d.ts.map +1 -0
  21. package/dist/src/lib/index.js +53 -0
  22. package/dist/src/lib/keyPair.d.ts +24 -0
  23. package/dist/src/lib/keyPair.d.ts.map +1 -0
  24. package/dist/src/lib/keyPair.js +70 -0
  25. package/dist/src/lib/tokenAssociateBuilder.d.ts +38 -0
  26. package/dist/src/lib/tokenAssociateBuilder.d.ts.map +1 -0
  27. package/dist/src/lib/tokenAssociateBuilder.js +107 -0
  28. package/dist/src/lib/tokenTransferBuilder.d.ts +25 -0
  29. package/dist/src/lib/tokenTransferBuilder.d.ts.map +1 -0
  30. package/dist/src/lib/tokenTransferBuilder.js +130 -0
  31. package/dist/src/lib/transaction.d.ts +106 -0
  32. package/dist/src/lib/transaction.d.ts.map +1 -0
  33. package/dist/src/lib/transaction.js +330 -0
  34. package/dist/src/lib/transactionBuilder.d.ts +111 -0
  35. package/dist/src/lib/transactionBuilder.d.ts.map +1 -0
  36. package/dist/src/lib/transactionBuilder.js +284 -0
  37. package/dist/src/lib/transactionBuilderFactory.d.ts +47 -0
  38. package/dist/src/lib/transactionBuilderFactory.d.ts.map +1 -0
  39. package/dist/src/lib/transactionBuilderFactory.js +88 -0
  40. package/dist/src/lib/transferBuilder.d.ts +24 -0
  41. package/dist/src/lib/transferBuilder.d.ts.map +1 -0
  42. package/dist/src/lib/transferBuilder.js +55 -0
  43. package/dist/src/lib/utils.d.ts +210 -0
  44. package/dist/src/lib/utils.d.ts.map +1 -0
  45. package/dist/src/lib/utils.js +481 -0
  46. package/dist/src/lib/walletInitializationBuilder.d.ts +28 -0
  47. package/dist/src/lib/walletInitializationBuilder.d.ts.map +1 -0
  48. package/dist/src/lib/walletInitializationBuilder.js +124 -0
  49. package/dist/src/register.d.ts +3 -0
  50. package/dist/src/register.d.ts.map +1 -0
  51. package/dist/src/register.js +15 -0
  52. package/dist/src/seedValidator.d.ts +31 -0
  53. package/dist/src/seedValidator.d.ts.map +1 -0
  54. package/dist/src/seedValidator.js +103 -0
  55. package/dist/src/thbar.d.ts +14 -0
  56. package/dist/src/thbar.d.ts.map +1 -0
  57. package/dist/src/thbar.js +17 -0
  58. package/dist/test/fixtures/hbar.d.ts +6 -0
  59. package/dist/test/fixtures/hbar.d.ts.map +1 -0
  60. package/dist/test/fixtures/hbar.js +9 -0
  61. package/dist/test/resources/hbar.d.ts +67 -0
  62. package/dist/test/resources/hbar.d.ts.map +1 -0
  63. package/dist/test/resources/hbar.js +73 -0
  64. package/dist/test/unit/fixtures/hbarBackupKey.d.ts +4 -0
  65. package/dist/test/unit/fixtures/hbarBackupKey.d.ts.map +1 -0
  66. package/dist/test/unit/fixtures/hbarBackupKey.js +10 -0
  67. package/dist/test/unit/getBuilderFactory.d.ts +3 -0
  68. package/dist/test/unit/getBuilderFactory.d.ts.map +1 -0
  69. package/dist/test/unit/getBuilderFactory.js +10 -0
  70. package/dist/test/unit/hbar.d.ts +2 -0
  71. package/dist/test/unit/hbar.d.ts.map +1 -0
  72. package/dist/test/unit/hbar.js +1216 -0
  73. package/dist/test/unit/hbarToken.d.ts +2 -0
  74. package/dist/test/unit/hbarToken.d.ts.map +1 -0
  75. package/dist/test/unit/hbarToken.js +34 -0
  76. package/dist/test/unit/keyPair.d.ts +2 -0
  77. package/dist/test/unit/keyPair.d.ts.map +1 -0
  78. package/dist/test/unit/keyPair.js +179 -0
  79. package/dist/test/unit/transaction.d.ts +2 -0
  80. package/dist/test/unit/transaction.d.ts.map +1 -0
  81. package/dist/test/unit/transaction.js +94 -0
  82. package/dist/test/unit/transactionBuilder/tokenAssociateBuilder.d.ts +2 -0
  83. package/dist/test/unit/transactionBuilder/tokenAssociateBuilder.d.ts.map +1 -0
  84. package/dist/test/unit/transactionBuilder/tokenAssociateBuilder.js +215 -0
  85. package/dist/test/unit/transactionBuilder/tokenTransferBuilder.d.ts +2 -0
  86. package/dist/test/unit/transactionBuilder/tokenTransferBuilder.d.ts.map +1 -0
  87. package/dist/test/unit/transactionBuilder/tokenTransferBuilder.js +329 -0
  88. package/dist/test/unit/transactionBuilder/transferBuilder.d.ts +2 -0
  89. package/dist/test/unit/transactionBuilder/transferBuilder.d.ts.map +1 -0
  90. package/dist/test/unit/transactionBuilder/transferBuilder.js +353 -0
  91. package/dist/test/unit/transactionBuilder/walletInitialization.d.ts +2 -0
  92. package/dist/test/unit/transactionBuilder/walletInitialization.d.ts.map +1 -0
  93. package/dist/test/unit/transactionBuilder/walletInitialization.js +214 -0
  94. package/dist/test/unit/utils.d.ts +2 -0
  95. package/dist/test/unit/utils.d.ts.map +1 -0
  96. package/dist/test/unit/utils.js +275 -0
  97. package/dist/tsconfig.tsbuildinfo +1 -0
  98. package/package.json +10 -7
  99. package/.eslintignore +0 -5
  100. package/.mocharc.yml +0 -8
  101. package/CHANGELOG.md +0 -882
package/CHANGELOG.md DELETED
@@ -1,882 +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
- ## [2.4.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.4.0...@bitgo/sdk-coin-hbar@2.4.1) (2025-09-29)
7
-
8
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
9
-
10
- # [2.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.3.4...@bitgo/sdk-coin-hbar@2.4.0) (2025-09-25)
11
-
12
- ### Bug Fixes
13
-
14
- - **account-lib:** gRPC Memory Allocation Vulnerability ([3b9aee3](https://github.com/BitGo/BitGoJS/commit/3b9aee3bc4dcfe7a403f958362f177f4d881f490))
15
-
16
- ### Features
17
-
18
- - configure learn to skip git operations ([ee3a622](https://github.com/BitGo/BitGoJS/commit/ee3a6220496476aa7f4545b5f4a9a3bf97d9bdb9))
19
-
20
- ## [2.3.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.3.3...@bitgo/sdk-coin-hbar@2.3.4) (2025-09-03)
21
-
22
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
23
-
24
- ## [2.3.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.3.2...@bitgo/sdk-coin-hbar@2.3.3) (2025-08-30)
25
-
26
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
27
-
28
- ## [2.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.3.1...@bitgo/sdk-coin-hbar@2.3.2) (2025-08-29)
29
-
30
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
31
-
32
- ## [2.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.3.0...@bitgo/sdk-coin-hbar@2.3.1) (2025-08-27)
33
-
34
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
35
-
36
- # [2.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.2.15...@bitgo/sdk-coin-hbar@2.3.0) (2025-08-22)
37
-
38
- ### Features
39
-
40
- - **root:** migrate ts-node -> tsx ([ea180b4](https://github.com/BitGo/BitGoJS/commit/ea180b43001d8e956196bc07b32798e3a7031eeb))
41
-
42
- ## [2.2.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.2.14...@bitgo/sdk-coin-hbar@2.2.15) (2025-08-22)
43
-
44
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
45
-
46
- ## [2.2.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.2.13...@bitgo/sdk-coin-hbar@2.2.14) (2025-08-19)
47
-
48
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
49
-
50
- ## [2.2.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.2.12...@bitgo/sdk-coin-hbar@2.2.13) (2025-08-14)
51
-
52
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
53
-
54
- ## [2.2.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.2.11...@bitgo/sdk-coin-hbar@2.2.12) (2025-08-07)
55
-
56
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
57
-
58
- ## [2.2.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.2.10...@bitgo/sdk-coin-hbar@2.2.11) (2025-07-31)
59
-
60
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
61
-
62
- ## [2.2.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.2.9...@bitgo/sdk-coin-hbar@2.2.10) (2025-07-30)
63
-
64
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
65
-
66
- ## [2.2.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.2.7...@bitgo/sdk-coin-hbar@2.2.9) (2025-07-25)
67
-
68
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
69
-
70
- ## [2.2.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.2.7...@bitgo/sdk-coin-hbar@2.2.8) (2025-07-23)
71
-
72
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
73
-
74
- ## [2.2.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.2.6...@bitgo/sdk-coin-hbar@2.2.7) (2025-07-15)
75
-
76
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
77
-
78
- ## [2.2.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.2.5...@bitgo/sdk-coin-hbar@2.2.6) (2025-07-10)
79
-
80
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
81
-
82
- ## [2.2.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.2.4...@bitgo/sdk-coin-hbar@2.2.5) (2025-07-03)
83
-
84
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
85
-
86
- ## [2.2.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.2.3...@bitgo/sdk-coin-hbar@2.2.4) (2025-06-25)
87
-
88
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
89
-
90
- ## [2.2.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.2.2...@bitgo/sdk-coin-hbar@2.2.3) (2025-06-24)
91
-
92
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
93
-
94
- ## [2.2.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.2.1...@bitgo/sdk-coin-hbar@2.2.2) (2025-06-18)
95
-
96
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
97
-
98
- ## [2.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.2.0...@bitgo/sdk-coin-hbar@2.2.1) (2025-06-10)
99
-
100
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
101
-
102
- # [2.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.1.0...@bitgo/sdk-coin-hbar@2.2.0) (2025-06-05)
103
-
104
- ### Features
105
-
106
- - **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
107
-
108
- # [2.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.82...@bitgo/sdk-coin-hbar@2.1.0) (2025-06-02)
109
-
110
- ### Bug Fixes
111
-
112
- - **sdk-coin-hbar:** fix thbar usdc token id ([3234f57](https://github.com/BitGo/BitGoJS/commit/3234f57768ed8fe563f58955b4d23c6b4cdd4cb9))
113
-
114
- ### Features
115
-
116
- - rename audit function naming and signature ([1a885ab](https://github.com/BitGo/BitGoJS/commit/1a885ab60d30ca8595e284a728f2ab9d3c09994e))
117
- - **root:** add new audit key baseCoin method ([57c1778](https://github.com/BitGo/BitGoJS/commit/57c17784a72ea364f18e3af9dbd83da877827e69))
118
-
119
- ## [2.0.82](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.81...@bitgo/sdk-coin-hbar@2.0.82) (2025-05-28)
120
-
121
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
122
-
123
- ## [2.0.81](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.80...@bitgo/sdk-coin-hbar@2.0.81) (2025-05-22)
124
-
125
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
126
-
127
- ## [2.0.80](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.79...@bitgo/sdk-coin-hbar@2.0.80) (2025-05-20)
128
-
129
- ### Bug Fixes
130
-
131
- - support memoid along with address for send transaction ([6b6d25a](https://github.com/BitGo/BitGoJS/commit/6b6d25a5003c49208a75b2c6fa21b54a0afae5ad))
132
-
133
- ## [2.0.79](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.78...@bitgo/sdk-coin-hbar@2.0.79) (2025-05-07)
134
-
135
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
136
-
137
- ## [2.0.78](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.77...@bitgo/sdk-coin-hbar@2.0.78) (2025-04-29)
138
-
139
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
140
-
141
- ## [2.0.77](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.76...@bitgo/sdk-coin-hbar@2.0.77) (2025-04-25)
142
-
143
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
144
-
145
- ## [2.0.76](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.75...@bitgo/sdk-coin-hbar@2.0.76) (2025-04-15)
146
-
147
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
148
-
149
- ## [2.0.75](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.74...@bitgo/sdk-coin-hbar@2.0.75) (2025-04-04)
150
-
151
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
152
-
153
- ## [2.0.74](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.73...@bitgo/sdk-coin-hbar@2.0.74) (2025-04-02)
154
-
155
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
156
-
157
- ## [2.0.73](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.72...@bitgo/sdk-coin-hbar@2.0.73) (2025-03-28)
158
-
159
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
160
-
161
- ## [2.0.72](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.71...@bitgo/sdk-coin-hbar@2.0.72) (2025-03-20)
162
-
163
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
164
-
165
- ## [2.0.71](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.70...@bitgo/sdk-coin-hbar@2.0.71) (2025-03-18)
166
-
167
- ### Bug Fixes
168
-
169
- - **sdk-core:** set default multisig if empty ([e2727df](https://github.com/BitGo/BitGoJS/commit/e2727dfc89dd314a607b737e761e5eff824606af))
170
-
171
- ## [2.0.70](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.69...@bitgo/sdk-coin-hbar@2.0.70) (2025-03-06)
172
-
173
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
174
-
175
- ## [2.0.69](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.66...@bitgo/sdk-coin-hbar@2.0.69) (2025-03-04)
176
-
177
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
178
-
179
- ## [2.0.68](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.66...@bitgo/sdk-coin-hbar@2.0.68) (2025-02-26)
180
-
181
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
182
-
183
- ## [2.0.67](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.66...@bitgo/sdk-coin-hbar@2.0.67) (2025-02-20)
184
-
185
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
186
-
187
- ## [2.0.66](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.65...@bitgo/sdk-coin-hbar@2.0.66) (2025-02-19)
188
-
189
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
190
-
191
- ## [2.0.65](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.64...@bitgo/sdk-coin-hbar@2.0.65) (2025-02-11)
192
-
193
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
194
-
195
- ## [2.0.64](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.63...@bitgo/sdk-coin-hbar@2.0.64) (2025-02-05)
196
-
197
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
198
-
199
- ## [2.0.63](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.62...@bitgo/sdk-coin-hbar@2.0.63) (2025-01-28)
200
-
201
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
202
-
203
- ## [2.0.62](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.61...@bitgo/sdk-coin-hbar@2.0.62) (2025-01-23)
204
-
205
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
206
-
207
- ## [2.0.61](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.60...@bitgo/sdk-coin-hbar@2.0.61) (2025-01-23)
208
-
209
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
210
-
211
- ## [2.0.60](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.59...@bitgo/sdk-coin-hbar@2.0.60) (2025-01-20)
212
-
213
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
214
-
215
- ## [2.0.59](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.58...@bitgo/sdk-coin-hbar@2.0.59) (2025-01-15)
216
-
217
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
218
-
219
- ## [2.0.58](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.57...@bitgo/sdk-coin-hbar@2.0.58) (2025-01-09)
220
-
221
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
222
-
223
- ## [2.0.57](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.56...@bitgo/sdk-coin-hbar@2.0.57) (2025-01-03)
224
-
225
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
226
-
227
- ## [2.0.56](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.55...@bitgo/sdk-coin-hbar@2.0.56) (2024-12-24)
228
-
229
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
230
-
231
- ## [2.0.55](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.54...@bitgo/sdk-coin-hbar@2.0.55) (2024-12-19)
232
-
233
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
234
-
235
- ## [2.0.54](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.52...@bitgo/sdk-coin-hbar@2.0.54) (2024-12-17)
236
-
237
- ### Bug Fixes
238
-
239
- - **abstract-utxo:** pass actual wallet to signTransaction ([55caa4a](https://github.com/BitGo/BitGoJS/commit/55caa4a6ddcb7699732d6259f1a2db014008a815))
240
-
241
- ## [2.0.53](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.52...@bitgo/sdk-coin-hbar@2.0.53) (2024-12-17)
242
-
243
- ### Bug Fixes
244
-
245
- - **abstract-utxo:** pass actual wallet to signTransaction ([55caa4a](https://github.com/BitGo/BitGoJS/commit/55caa4a6ddcb7699732d6259f1a2db014008a815))
246
-
247
- ## [2.0.52](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.51...@bitgo/sdk-coin-hbar@2.0.52) (2024-12-12)
248
-
249
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
250
-
251
- ## [2.0.51](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.50...@bitgo/sdk-coin-hbar@2.0.51) (2024-12-11)
252
-
253
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
254
-
255
- ## [2.0.50](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.49...@bitgo/sdk-coin-hbar@2.0.50) (2024-12-03)
256
-
257
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
258
-
259
- ## [2.0.49](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.48...@bitgo/sdk-coin-hbar@2.0.49) (2024-11-26)
260
-
261
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
262
-
263
- ## [2.0.48](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.47...@bitgo/sdk-coin-hbar@2.0.48) (2024-11-21)
264
-
265
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
266
-
267
- ## [2.0.47](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.45...@bitgo/sdk-coin-hbar@2.0.47) (2024-11-19)
268
-
269
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
270
-
271
- ## [2.0.46](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.45...@bitgo/sdk-coin-hbar@2.0.46) (2024-11-14)
272
-
273
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
274
-
275
- ## [2.0.45](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.44...@bitgo/sdk-coin-hbar@2.0.45) (2024-11-08)
276
-
277
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
278
-
279
- ## [2.0.44](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.43...@bitgo/sdk-coin-hbar@2.0.44) (2024-11-07)
280
-
281
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
282
-
283
- ## [2.0.43](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.42...@bitgo/sdk-coin-hbar@2.0.43) (2024-11-01)
284
-
285
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
286
-
287
- ## [2.0.42](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.41...@bitgo/sdk-coin-hbar@2.0.42) (2024-10-22)
288
-
289
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
290
-
291
- ## [2.0.41](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.40...@bitgo/sdk-coin-hbar@2.0.41) (2024-10-15)
292
-
293
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
294
-
295
- ## [2.0.40](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.39...@bitgo/sdk-coin-hbar@2.0.40) (2024-10-08)
296
-
297
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
298
-
299
- ## [2.0.39](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.38...@bitgo/sdk-coin-hbar@2.0.39) (2024-10-04)
300
-
301
- ### Bug Fixes
302
-
303
- - **sdk-coin-hbar:** hbar address validation ([7015310](https://github.com/BitGo/BitGoJS/commit/70153106ed77c0de469d88880cd42631aa6e2e5d))
304
-
305
- ## [2.0.38](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.37...@bitgo/sdk-coin-hbar@2.0.38) (2024-09-24)
306
-
307
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
308
-
309
- ## [2.0.37](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.36...@bitgo/sdk-coin-hbar@2.0.37) (2024-09-19)
310
-
311
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
312
-
313
- ## [2.0.36](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.35...@bitgo/sdk-coin-hbar@2.0.36) (2024-09-16)
314
-
315
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
316
-
317
- ## [2.0.35](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.34...@bitgo/sdk-coin-hbar@2.0.35) (2024-09-10)
318
-
319
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
320
-
321
- ## [2.0.34](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.33...@bitgo/sdk-coin-hbar@2.0.34) (2024-09-03)
322
-
323
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
324
-
325
- ## [2.0.33](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.32...@bitgo/sdk-coin-hbar@2.0.33) (2024-08-29)
326
-
327
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
328
-
329
- ## [2.0.32](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.31...@bitgo/sdk-coin-hbar@2.0.32) (2024-08-27)
330
-
331
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
332
-
333
- ## [2.0.31](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.29...@bitgo/sdk-coin-hbar@2.0.31) (2024-08-20)
334
-
335
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
336
-
337
- ## [2.0.30](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.29...@bitgo/sdk-coin-hbar@2.0.30) (2024-08-13)
338
-
339
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
340
-
341
- ## [2.0.29](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.28...@bitgo/sdk-coin-hbar@2.0.29) (2024-08-07)
342
-
343
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
344
-
345
- ## [2.0.28](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.27...@bitgo/sdk-coin-hbar@2.0.28) (2024-07-30)
346
-
347
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
348
-
349
- ## [2.0.27](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.26...@bitgo/sdk-coin-hbar@2.0.27) (2024-07-24)
350
-
351
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
352
-
353
- ## [2.0.26](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.25...@bitgo/sdk-coin-hbar@2.0.26) (2024-07-16)
354
-
355
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
356
-
357
- ## [2.0.25](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.24...@bitgo/sdk-coin-hbar@2.0.25) (2024-07-04)
358
-
359
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
360
-
361
- ## [2.0.24](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.23...@bitgo/sdk-coin-hbar@2.0.24) (2024-07-02)
362
-
363
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
364
-
365
- ## [2.0.23](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.22...@bitgo/sdk-coin-hbar@2.0.23) (2024-06-27)
366
-
367
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
368
-
369
- ## [2.0.22](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.21...@bitgo/sdk-coin-hbar@2.0.22) (2024-06-26)
370
-
371
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
372
-
373
- ## [2.0.21](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.19...@bitgo/sdk-coin-hbar@2.0.21) (2024-06-21)
374
-
375
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
376
-
377
- ## [2.0.20](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.19...@bitgo/sdk-coin-hbar@2.0.20) (2024-06-20)
378
-
379
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
380
-
381
- ## [2.0.19](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.18...@bitgo/sdk-coin-hbar@2.0.19) (2024-06-14)
382
-
383
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
384
-
385
- ## [2.0.18](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.17...@bitgo/sdk-coin-hbar@2.0.18) (2024-06-11)
386
-
387
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
388
-
389
- ## [2.0.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.16...@bitgo/sdk-coin-hbar@2.0.17) (2024-06-05)
390
-
391
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
392
-
393
- ## [2.0.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.15...@bitgo/sdk-coin-hbar@2.0.16) (2024-05-31)
394
-
395
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
396
-
397
- ## [2.0.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.14...@bitgo/sdk-coin-hbar@2.0.15) (2024-05-28)
398
-
399
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
400
-
401
- ## [2.0.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.13...@bitgo/sdk-coin-hbar@2.0.14) (2024-05-22)
402
-
403
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
404
-
405
- ## [2.0.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.12...@bitgo/sdk-coin-hbar@2.0.13) (2024-05-17)
406
-
407
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
408
-
409
- ## [2.0.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.11...@bitgo/sdk-coin-hbar@2.0.12) (2024-05-13)
410
-
411
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
412
-
413
- ## [2.0.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.10...@bitgo/sdk-coin-hbar@2.0.11) (2024-05-08)
414
-
415
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
416
-
417
- ## [2.0.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.9...@bitgo/sdk-coin-hbar@2.0.10) (2024-05-01)
418
-
419
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
420
-
421
- ## [2.0.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.8...@bitgo/sdk-coin-hbar@2.0.9) (2024-04-25)
422
-
423
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
424
-
425
- ## [2.0.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.7...@bitgo/sdk-coin-hbar@2.0.8) (2024-04-24)
426
-
427
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
428
-
429
- ## [2.0.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.6...@bitgo/sdk-coin-hbar@2.0.7) (2024-04-22)
430
-
431
- ### Bug Fixes
432
-
433
- - **sdk-core:** update protobufjs to fix critical vulnerability ([7066ada](https://github.com/BitGo/BitGoJS/commit/7066ada07272968a1325f84c36d5146b9e9d9abf))
434
-
435
- ## [2.0.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.5...@bitgo/sdk-coin-hbar@2.0.6) (2024-04-17)
436
-
437
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
438
-
439
- ## [2.0.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.4...@bitgo/sdk-coin-hbar@2.0.5) (2024-04-12)
440
-
441
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
442
-
443
- ## [2.0.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.3...@bitgo/sdk-coin-hbar@2.0.4) (2024-04-10)
444
-
445
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
446
-
447
- ## [2.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.2...@bitgo/sdk-coin-hbar@2.0.3) (2024-04-09)
448
-
449
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
450
-
451
- ## [2.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.1...@bitgo/sdk-coin-hbar@2.0.2) (2024-04-08)
452
-
453
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
454
-
455
- ## [2.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@2.0.0...@bitgo/sdk-coin-hbar@2.0.1) (2024-04-05)
456
-
457
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
458
-
459
- # [2.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.14.1...@bitgo/sdk-coin-hbar@2.0.0) (2024-03-28)
460
-
461
- ### Features
462
-
463
- - **root:** deprecate node 16 ([d3ec624](https://github.com/BitGo/BitGoJS/commit/d3ec6240bddae2a4ab7fa80c4a16efecc36210bd))
464
-
465
- ### BREAKING CHANGES
466
-
467
- - **root:** Node 16 is no longer supported in bitgojs.
468
- TICKET: WP-1100
469
-
470
- ## [1.14.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.14.0...@bitgo/sdk-coin-hbar@1.14.1) (2024-03-19)
471
-
472
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
473
-
474
- # [1.14.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.13.1...@bitgo/sdk-coin-hbar@1.14.0) (2024-03-11)
475
-
476
- ### Features
477
-
478
- - **sdk-coin-hbar:** fix and test hbar recovery with root keys ([b9bdcb7](https://github.com/BitGo/BitGoJS/commit/b9bdcb73351a0a5131093748eeb9a768777a9e76))
479
- - **sdk-core:** add new supportsDeriveKeyWithSeed flag ([c82bc46](https://github.com/BitGo/BitGoJS/commit/c82bc4686806d572be158b3862c232ab58547657))
480
-
481
- ## [1.13.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.13.0...@bitgo/sdk-coin-hbar@1.13.1) (2024-02-28)
482
-
483
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
484
-
485
- # [1.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.12.0...@bitgo/sdk-coin-hbar@1.13.0) (2024-02-22)
486
-
487
- ### Bug Fixes
488
-
489
- - **sdk-coin-hbar:** deprecate hbar deriveKeyWithSeed ([b7b3c83](https://github.com/BitGo/BitGoJS/commit/b7b3c8372fc52ffe3aa6027ab02219a66da574b5))
490
-
491
- ### Features
492
-
493
- - **sdk-coin-hbar:** implement hbar root keys ([1f85407](https://github.com/BitGo/BitGoJS/commit/1f85407b16f636cc0e9a01c5b1ab9a77337dd148))
494
-
495
- # [1.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.12.0) (2024-02-19)
496
-
497
- ### Bug Fixes
498
-
499
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
500
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
501
- - **sdk-coin-hbar:** hbar transaction valid duration ([74d7c4d](https://github.com/BitGo/BitGoJS/commit/74d7c4dd71d21a089274b87172aeae126a5af49d))
502
-
503
- ### Features
504
-
505
- - **sdk-coin-hbar:** implement recover method for native hbar ([45c4b7a](https://github.com/BitGo/BitGoJS/commit/45c4b7a7591176cb665efbdbb4279d40f3a869dd))
506
- - **statics:** update thbar usdc token address ([f83d2aa](https://github.com/BitGo/BitGoJS/commit/f83d2aab9e3bc12cebe73b4bb11f284aab00b2ee))
507
-
508
- # [1.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.10.0) (2024-01-30)
509
-
510
- ### Bug Fixes
511
-
512
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
513
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
514
- - **sdk-coin-hbar:** hbar transaction valid duration ([74d7c4d](https://github.com/BitGo/BitGoJS/commit/74d7c4dd71d21a089274b87172aeae126a5af49d))
515
-
516
- ### Features
517
-
518
- - **sdk-coin-hbar:** implement recover method for native hbar ([45c4b7a](https://github.com/BitGo/BitGoJS/commit/45c4b7a7591176cb665efbdbb4279d40f3a869dd))
519
- - **statics:** update thbar usdc token address ([f83d2aa](https://github.com/BitGo/BitGoJS/commit/f83d2aab9e3bc12cebe73b4bb11f284aab00b2ee))
520
-
521
- # [1.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.9.0) (2024-01-26)
522
-
523
- ### Bug Fixes
524
-
525
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
526
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
527
- - **sdk-coin-hbar:** hbar transaction valid duration ([74d7c4d](https://github.com/BitGo/BitGoJS/commit/74d7c4dd71d21a089274b87172aeae126a5af49d))
528
-
529
- ### Features
530
-
531
- - **sdk-coin-hbar:** implement recover method for native hbar ([45c4b7a](https://github.com/BitGo/BitGoJS/commit/45c4b7a7591176cb665efbdbb4279d40f3a869dd))
532
- - **statics:** update thbar usdc token address ([f83d2aa](https://github.com/BitGo/BitGoJS/commit/f83d2aab9e3bc12cebe73b4bb11f284aab00b2ee))
533
-
534
- # [1.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.8.0) (2024-01-26)
535
-
536
- ### Bug Fixes
537
-
538
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
539
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
540
- - **sdk-coin-hbar:** hbar transaction valid duration ([74d7c4d](https://github.com/BitGo/BitGoJS/commit/74d7c4dd71d21a089274b87172aeae126a5af49d))
541
-
542
- ### Features
543
-
544
- - **sdk-coin-hbar:** implement recover method for native hbar ([45c4b7a](https://github.com/BitGo/BitGoJS/commit/45c4b7a7591176cb665efbdbb4279d40f3a869dd))
545
- - **statics:** update thbar usdc token address ([f83d2aa](https://github.com/BitGo/BitGoJS/commit/f83d2aab9e3bc12cebe73b4bb11f284aab00b2ee))
546
-
547
- # [1.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.7.0) (2024-01-25)
548
-
549
- ### Bug Fixes
550
-
551
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
552
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
553
- - **sdk-coin-hbar:** hbar transaction valid duration ([74d7c4d](https://github.com/BitGo/BitGoJS/commit/74d7c4dd71d21a089274b87172aeae126a5af49d))
554
-
555
- ### Features
556
-
557
- - **statics:** update thbar usdc token address ([f83d2aa](https://github.com/BitGo/BitGoJS/commit/f83d2aab9e3bc12cebe73b4bb11f284aab00b2ee))
558
-
559
- # [1.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.6.0) (2024-01-22)
560
-
561
- ### Bug Fixes
562
-
563
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
564
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
565
- - **sdk-coin-hbar:** hbar transaction valid duration ([74d7c4d](https://github.com/BitGo/BitGoJS/commit/74d7c4dd71d21a089274b87172aeae126a5af49d))
566
-
567
- ### Features
568
-
569
- - **statics:** update thbar usdc token address ([f83d2aa](https://github.com/BitGo/BitGoJS/commit/f83d2aab9e3bc12cebe73b4bb11f284aab00b2ee))
570
-
571
- ## [1.5.25](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.25) (2024-01-09)
572
-
573
- ### Bug Fixes
574
-
575
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
576
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
577
- - **sdk-coin-hbar:** hbar transaction valid duration ([74d7c4d](https://github.com/BitGo/BitGoJS/commit/74d7c4dd71d21a089274b87172aeae126a5af49d))
578
-
579
- ## [1.5.24](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.24) (2024-01-03)
580
-
581
- ### Bug Fixes
582
-
583
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
584
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
585
- - **sdk-coin-hbar:** hbar transaction valid duration ([74d7c4d](https://github.com/BitGo/BitGoJS/commit/74d7c4dd71d21a089274b87172aeae126a5af49d))
586
-
587
- ## [1.5.23](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.23) (2023-12-18)
588
-
589
- ### Bug Fixes
590
-
591
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
592
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
593
-
594
- ## [1.5.22](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.22) (2023-12-12)
595
-
596
- ### Bug Fixes
597
-
598
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
599
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
600
-
601
- ## [1.5.21](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.21) (2023-12-09)
602
-
603
- ### Bug Fixes
604
-
605
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
606
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
607
-
608
- ## [1.5.20](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.20) (2023-12-05)
609
-
610
- ### Bug Fixes
611
-
612
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
613
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
614
-
615
- ## [1.5.19](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.19) (2023-11-28)
616
-
617
- ### Bug Fixes
618
-
619
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
620
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
621
-
622
- ## [1.5.18](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.18) (2023-11-24)
623
-
624
- ### Bug Fixes
625
-
626
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
627
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
628
-
629
- ## [1.5.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.17) (2023-11-17)
630
-
631
- ### Bug Fixes
632
-
633
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
634
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
635
-
636
- ## [1.5.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.16) (2023-11-13)
637
-
638
- ### Bug Fixes
639
-
640
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
641
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
642
-
643
- ## [1.5.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.15) (2023-11-13)
644
-
645
- ### Bug Fixes
646
-
647
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
648
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
649
-
650
- ## [1.5.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.14) (2023-11-13)
651
-
652
- ### Bug Fixes
653
-
654
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
655
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
656
-
657
- ## [1.5.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.13) (2023-10-20)
658
-
659
- ### Bug Fixes
660
-
661
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
662
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
663
-
664
- ## [1.5.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.12) (2023-10-18)
665
-
666
- ### Bug Fixes
667
-
668
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
669
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
670
-
671
- ## [1.5.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.11) (2023-09-25)
672
-
673
- ### Bug Fixes
674
-
675
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
676
- - **sdk-coin-hbar:** allow explain txn to take both feeParam as well as parsed json ([fcc8bc5](https://github.com/BitGo/BitGoJS/commit/fcc8bc571efb5c7ec218ef1d30b8eac4640a5d7e))
677
-
678
- ## [1.5.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.10) (2023-09-09)
679
-
680
- ### Bug Fixes
681
-
682
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
683
-
684
- ## [1.5.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.9) (2023-09-09)
685
-
686
- ### Bug Fixes
687
-
688
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
689
-
690
- ## [1.5.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.8) (2023-09-07)
691
-
692
- ### Bug Fixes
693
-
694
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
695
-
696
- ## [1.5.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.7) (2023-09-05)
697
-
698
- ### Bug Fixes
699
-
700
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
701
-
702
- ## [1.5.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.6) (2023-09-01)
703
-
704
- ### Bug Fixes
705
-
706
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
707
-
708
- ## [1.5.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.5) (2023-08-29)
709
-
710
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
711
-
712
- ## [1.5.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.4) (2023-08-25)
713
-
714
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
715
-
716
- ## [1.5.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.3) (2023-08-24)
717
-
718
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
719
-
720
- ## [1.5.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.2) (2023-08-16)
721
-
722
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
723
-
724
- ## [1.5.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.5.0...@bitgo/sdk-coin-hbar@1.5.1) (2023-08-16)
725
-
726
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
727
-
728
- # [1.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.28...@bitgo/sdk-coin-hbar@1.5.0) (2023-08-04)
729
-
730
- ### Features
731
-
732
- - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
733
- - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
734
-
735
- # [1.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.28...@bitgo/sdk-coin-hbar@1.4.0) (2023-07-28)
736
-
737
- ### Features
738
-
739
- - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
740
- - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
741
-
742
- ## [1.3.28](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.27...@bitgo/sdk-coin-hbar@1.3.28) (2023-07-18)
743
-
744
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
745
-
746
- ## [1.3.27](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.26...@bitgo/sdk-coin-hbar@1.3.27) (2023-06-21)
747
-
748
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
749
-
750
- ## [1.3.26](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.25...@bitgo/sdk-coin-hbar@1.3.26) (2023-06-14)
751
-
752
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
753
-
754
- ## [1.3.25](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.24...@bitgo/sdk-coin-hbar@1.3.25) (2023-06-13)
755
-
756
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
757
-
758
- ## [1.3.24](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.23...@bitgo/sdk-coin-hbar@1.3.24) (2023-06-07)
759
-
760
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
761
-
762
- ## [1.3.23](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.22...@bitgo/sdk-coin-hbar@1.3.23) (2023-06-05)
763
-
764
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
765
-
766
- ## [1.3.22](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.21...@bitgo/sdk-coin-hbar@1.3.22) (2023-05-25)
767
-
768
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
769
-
770
- ## [1.3.21](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.20...@bitgo/sdk-coin-hbar@1.3.21) (2023-05-17)
771
-
772
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
773
-
774
- ## [1.3.20](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.19...@bitgo/sdk-coin-hbar@1.3.20) (2023-05-10)
775
-
776
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
777
-
778
- ## [1.3.19](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.18...@bitgo/sdk-coin-hbar@1.3.19) (2023-05-03)
779
-
780
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
781
-
782
- ## [1.3.18](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.17...@bitgo/sdk-coin-hbar@1.3.18) (2023-04-25)
783
-
784
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
785
-
786
- ## [1.3.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.16...@bitgo/sdk-coin-hbar@1.3.17) (2023-04-20)
787
-
788
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
789
-
790
- ## [1.3.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.15...@bitgo/sdk-coin-hbar@1.3.16) (2023-04-13)
791
-
792
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
793
-
794
- ## [1.3.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.14...@bitgo/sdk-coin-hbar@1.3.15) (2023-02-17)
795
-
796
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
797
-
798
- ## [1.3.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.11...@bitgo/sdk-coin-hbar@1.3.14) (2023-02-16)
799
-
800
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
801
-
802
- ## [1.3.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.11...@bitgo/sdk-coin-hbar@1.3.13) (2023-02-08)
803
-
804
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
805
-
806
- ## [1.3.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.11...@bitgo/sdk-coin-hbar@1.3.12) (2023-01-30)
807
-
808
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
809
-
810
- ## [1.3.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.10...@bitgo/sdk-coin-hbar@1.3.11) (2023-01-25)
811
-
812
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
813
-
814
- ## [1.3.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.9...@bitgo/sdk-coin-hbar@1.3.10) (2022-12-23)
815
-
816
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
817
-
818
- ## [1.3.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.8...@bitgo/sdk-coin-hbar@1.3.9) (2022-12-20)
819
-
820
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
821
-
822
- ## [1.3.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.7...@bitgo/sdk-coin-hbar@1.3.8) (2022-12-09)
823
-
824
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
825
-
826
- ## [1.3.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.6...@bitgo/sdk-coin-hbar@1.3.7) (2022-12-06)
827
-
828
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
829
-
830
- ## [1.3.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.5...@bitgo/sdk-coin-hbar@1.3.6) (2022-12-01)
831
-
832
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
833
-
834
- ## [1.3.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.0...@bitgo/sdk-coin-hbar@1.3.5) (2022-11-29)
835
-
836
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
837
-
838
- ## [1.3.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.0...@bitgo/sdk-coin-hbar@1.3.4) (2022-11-04)
839
-
840
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
841
-
842
- ## [1.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.0...@bitgo/sdk-coin-hbar@1.3.2) (2022-10-27)
843
-
844
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
845
-
846
- ## [1.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.3.0...@bitgo/sdk-coin-hbar@1.3.1) (2022-10-25)
847
-
848
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
849
-
850
- # [1.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.0.1-rc.3...@bitgo/sdk-coin-hbar@1.3.0) (2022-10-18)
851
-
852
- ### Bug Fixes
853
-
854
- - **sdk-coin-hbar:** verify transaction should work without token name specified ([e83164a](https://github.com/BitGo/BitGoJS/commit/e83164a1dbc2ca267b0112a14bb2989797830258))
855
-
856
- ### Features
857
-
858
- - **sdk-coin-hbar:** hbar verifyTransaction ([0c12750](https://github.com/BitGo/BitGoJS/commit/0c12750816a5168bf92467adb0c963facb95d5be))
859
- - **sdk-coin-sol:** sol token multi ata init ([736318f](https://github.com/BitGo/BitGoJS/commit/736318fff36f074fa841b97f3bc0c8cd95fae001))
860
- - **sdk-core:** add specialized enable token functions ([3e60cef](https://github.com/BitGo/BitGoJS/commit/3e60cef71a0ae76b378356508338738eac49a920))
861
-
862
- ## [1.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.0.1-rc.3...@bitgo/sdk-coin-hbar@1.0.1) (2022-07-19)
863
-
864
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
865
-
866
- ## [1.0.1-rc.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.0.1-rc.1...@bitgo/sdk-coin-hbar@1.0.1-rc.3) (2022-07-19)
867
-
868
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
869
-
870
- ## [1.0.1-rc.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.0.1-rc.1...@bitgo/sdk-coin-hbar@1.0.1-rc.2) (2022-07-18)
871
-
872
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar
873
-
874
- ## [1.0.1-rc.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-hbar@1.0.1-rc.0...@bitgo/sdk-coin-hbar@1.0.1-rc.1) (2022-07-15)
875
-
876
- ### Bug Fixes
877
-
878
- - **sdk-coin-hbar:** expose transfer builder class ([4a30957](https://github.com/BitGo/BitGoJS/commit/4a30957f622521fef68b4123f302cd05d824327a))
879
-
880
- ## 1.0.1-rc.0 (2022-07-15)
881
-
882
- **Note:** Version bump only for package @bitgo/sdk-coin-hbar