@bitgo-beta/sdk-coin-polygon 1.3.3-alpha.401 → 1.3.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 (68) 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/index.d.ts +7 -0
  5. package/dist/src/lib/index.d.ts.map +1 -0
  6. package/dist/src/lib/index.js +51 -0
  7. package/dist/src/lib/resources.d.ts +10 -0
  8. package/dist/src/lib/resources.d.ts.map +1 -0
  9. package/dist/src/lib/resources.js +29 -0
  10. package/dist/src/lib/transactionBuilder.d.ts +20 -0
  11. package/dist/src/lib/transactionBuilder.d.ts.map +1 -0
  12. package/dist/src/lib/transactionBuilder.js +44 -0
  13. package/dist/src/lib/transferBuilder.d.ts +19 -0
  14. package/dist/src/lib/transferBuilder.d.ts.map +1 -0
  15. package/dist/src/lib/transferBuilder.js +27 -0
  16. package/dist/src/lib/utils.d.ts +17 -0
  17. package/dist/src/lib/utils.d.ts.map +1 -0
  18. package/dist/src/lib/utils.js +42 -0
  19. package/dist/src/lib/walletUtil.d.ts +48 -0
  20. package/dist/src/lib/walletUtil.d.ts.map +1 -0
  21. package/dist/src/lib/walletUtil.js +632 -0
  22. package/dist/src/polygon.d.ts +41 -0
  23. package/dist/src/polygon.d.ts.map +1 -0
  24. package/dist/src/polygon.js +66 -0
  25. package/dist/src/polygonToken.d.ts +28 -0
  26. package/dist/src/polygonToken.d.ts.map +1 -0
  27. package/dist/src/polygonToken.js +51 -0
  28. package/dist/src/register.d.ts +3 -0
  29. package/dist/src/register.d.ts.map +1 -0
  30. package/dist/src/register.js +15 -0
  31. package/dist/src/tpolygon.d.ts +11 -0
  32. package/dist/src/tpolygon.d.ts.map +1 -0
  33. package/dist/src/tpolygon.js +14 -0
  34. package/dist/test/fixtures/polygon.d.ts +151 -0
  35. package/dist/test/fixtures/polygon.d.ts.map +1 -0
  36. package/dist/test/fixtures/polygon.js +233 -0
  37. package/dist/test/getBuilder.d.ts +3 -0
  38. package/dist/test/getBuilder.d.ts.map +1 -0
  39. package/dist/test/getBuilder.js +9 -0
  40. package/dist/test/resources.d.ts +27 -0
  41. package/dist/test/resources.d.ts.map +1 -0
  42. package/dist/test/resources.js +41 -0
  43. package/dist/test/unit/polygon.d.ts +2 -0
  44. package/dist/test/unit/polygon.d.ts.map +1 -0
  45. package/dist/test/unit/polygon.js +1163 -0
  46. package/dist/test/unit/polygonToken.d.ts +2 -0
  47. package/dist/test/unit/polygonToken.d.ts.map +1 -0
  48. package/dist/test/unit/polygonToken.js +62 -0
  49. package/dist/test/unit/transaction.d.ts +2 -0
  50. package/dist/test/unit/transaction.d.ts.map +1 -0
  51. package/dist/test/unit/transaction.js +92 -0
  52. package/dist/test/unit/transactionBuilder/addressInitialization.d.ts +2 -0
  53. package/dist/test/unit/transactionBuilder/addressInitialization.d.ts.map +1 -0
  54. package/dist/test/unit/transactionBuilder/addressInitialization.js +104 -0
  55. package/dist/test/unit/transactionBuilder/flushTokens.d.ts +2 -0
  56. package/dist/test/unit/transactionBuilder/flushTokens.d.ts.map +1 -0
  57. package/dist/test/unit/transactionBuilder/flushTokens.js +9 -0
  58. package/dist/test/unit/transactionBuilder/send.d.ts +2 -0
  59. package/dist/test/unit/transactionBuilder/send.d.ts.map +1 -0
  60. package/dist/test/unit/transactionBuilder/send.js +114 -0
  61. package/dist/test/unit/transactionBuilder/walletInitialization.d.ts +2 -0
  62. package/dist/test/unit/transactionBuilder/walletInitialization.d.ts.map +1 -0
  63. package/dist/test/unit/transactionBuilder/walletInitialization.js +169 -0
  64. package/dist/tsconfig.tsbuildinfo +1 -0
  65. package/package.json +12 -9
  66. package/.eslintignore +0 -5
  67. package/.mocharc.yml +0 -8
  68. package/CHANGELOG.md +0 -1429
package/CHANGELOG.md DELETED
@@ -1,1429 +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
- ## [21.5.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.5.0...@bitgo/sdk-coin-polygon@21.5.1) (2025-09-29)
7
-
8
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
9
-
10
- # [21.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.4.4...@bitgo/sdk-coin-polygon@21.5.0) (2025-09-25)
11
-
12
- ### Features
13
-
14
- - **abstract-eth:** add flush token support for ERC721 and ERC1155 ([5d4fa35](https://github.com/BitGo/BitGoJS/commit/5d4fa353088b2bd99ed5e6423bf17d3e1c300e35))
15
- - configure learn to skip git operations ([ee3a622](https://github.com/BitGo/BitGoJS/commit/ee3a6220496476aa7f4545b5f4a9a3bf97d9bdb9))
16
-
17
- ## [21.4.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.4.3...@bitgo/sdk-coin-polygon@21.4.4) (2025-09-03)
18
-
19
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
20
-
21
- ## [21.4.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.4.2...@bitgo/sdk-coin-polygon@21.4.3) (2025-08-30)
22
-
23
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
24
-
25
- ## [21.4.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.4.1...@bitgo/sdk-coin-polygon@21.4.2) (2025-08-29)
26
-
27
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
28
-
29
- ## [21.4.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.4.0...@bitgo/sdk-coin-polygon@21.4.1) (2025-08-27)
30
-
31
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
32
-
33
- # [21.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.3.5...@bitgo/sdk-coin-polygon@21.4.0) (2025-08-22)
34
-
35
- ### Features
36
-
37
- - **root:** migrate ts-node -> tsx ([ea180b4](https://github.com/BitGo/BitGoJS/commit/ea180b43001d8e956196bc07b32798e3a7031eeb))
38
-
39
- ## [21.3.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.3.4...@bitgo/sdk-coin-polygon@21.3.5) (2025-08-22)
40
-
41
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
42
-
43
- ## [21.3.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.3.3...@bitgo/sdk-coin-polygon@21.3.4) (2025-08-19)
44
-
45
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
46
-
47
- ## [21.3.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.3.2...@bitgo/sdk-coin-polygon@21.3.3) (2025-08-14)
48
-
49
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
50
-
51
- ## [21.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.3.1...@bitgo/sdk-coin-polygon@21.3.2) (2025-08-07)
52
-
53
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
54
-
55
- ## [21.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.3.0...@bitgo/sdk-coin-polygon@21.3.1) (2025-07-31)
56
-
57
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
58
-
59
- # [21.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.2.9...@bitgo/sdk-coin-polygon@21.3.0) (2025-07-30)
60
-
61
- ### Features
62
-
63
- - **root:** enable passing apiKey for recovery on eth likes ([dc8d3c2](https://github.com/BitGo/BitGoJS/commit/dc8d3c201b5ab82b05e1db69f310a0860e21bf78))
64
-
65
- ## [21.2.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.2.7...@bitgo/sdk-coin-polygon@21.2.9) (2025-07-25)
66
-
67
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
68
-
69
- ## [21.2.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.2.7...@bitgo/sdk-coin-polygon@21.2.8) (2025-07-23)
70
-
71
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
72
-
73
- ## [21.2.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.2.6...@bitgo/sdk-coin-polygon@21.2.7) (2025-07-15)
74
-
75
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
76
-
77
- ## [21.2.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.2.5...@bitgo/sdk-coin-polygon@21.2.6) (2025-07-10)
78
-
79
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
80
-
81
- ## [21.2.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.2.4...@bitgo/sdk-coin-polygon@21.2.5) (2025-07-03)
82
-
83
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
84
-
85
- ## [21.2.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.2.3...@bitgo/sdk-coin-polygon@21.2.4) (2025-06-25)
86
-
87
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
88
-
89
- ## [21.2.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.2.2...@bitgo/sdk-coin-polygon@21.2.3) (2025-06-24)
90
-
91
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
92
-
93
- ## [21.2.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.2.1...@bitgo/sdk-coin-polygon@21.2.2) (2025-06-18)
94
-
95
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
96
-
97
- ## [21.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.2.0...@bitgo/sdk-coin-polygon@21.2.1) (2025-06-10)
98
-
99
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
100
-
101
- # [21.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.1.7...@bitgo/sdk-coin-polygon@21.2.0) (2025-06-05)
102
-
103
- ### Features
104
-
105
- - **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
106
-
107
- ## [21.1.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.1.6...@bitgo/sdk-coin-polygon@21.1.7) (2025-06-02)
108
-
109
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
110
-
111
- ## [21.1.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.1.5...@bitgo/sdk-coin-polygon@21.1.6) (2025-05-28)
112
-
113
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
114
-
115
- ## [21.1.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.1.4...@bitgo/sdk-coin-polygon@21.1.5) (2025-05-22)
116
-
117
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
118
-
119
- ## [21.1.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.1.3...@bitgo/sdk-coin-polygon@21.1.4) (2025-05-20)
120
-
121
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
122
-
123
- ## [21.1.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.1.2...@bitgo/sdk-coin-polygon@21.1.3) (2025-05-07)
124
-
125
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
126
-
127
- ## [21.1.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.1.1...@bitgo/sdk-coin-polygon@21.1.2) (2025-04-29)
128
-
129
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
130
-
131
- ## [21.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.1.0...@bitgo/sdk-coin-polygon@21.1.1) (2025-04-25)
132
-
133
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
134
-
135
- # [21.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.44...@bitgo/sdk-coin-polygon@21.1.0) (2025-04-15)
136
-
137
- ### Features
138
-
139
- - **polygon:** added support for mpcv2 in recovery ([d4a5538](https://github.com/BitGo/BitGoJS/commit/d4a553823b92213f384d39922cada9b69019581e)), closes [#5877](https://github.com/BitGo/BitGoJS/issues/5877)
140
-
141
- ## [21.0.44](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.43...@bitgo/sdk-coin-polygon@21.0.44) (2025-04-04)
142
-
143
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
144
-
145
- ## [21.0.43](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.42...@bitgo/sdk-coin-polygon@21.0.43) (2025-04-02)
146
-
147
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
148
-
149
- ## [21.0.42](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.41...@bitgo/sdk-coin-polygon@21.0.42) (2025-03-28)
150
-
151
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
152
-
153
- ## [21.0.41](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.40...@bitgo/sdk-coin-polygon@21.0.41) (2025-03-20)
154
-
155
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
156
-
157
- ## [21.0.40](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.39...@bitgo/sdk-coin-polygon@21.0.40) (2025-03-18)
158
-
159
- ### Bug Fixes
160
-
161
- - pass isBatch in send API ([b8c0dfc](https://github.com/BitGo/BitGoJS/commit/b8c0dfc0e2748da7aa631dc77e0c505fcd5cbfcb))
162
- - **sdk-core:** set default multisig if empty ([e2727df](https://github.com/BitGo/BitGoJS/commit/e2727dfc89dd314a607b737e761e5eff824606af))
163
-
164
- ## [21.0.39](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.38...@bitgo/sdk-coin-polygon@21.0.39) (2025-03-06)
165
-
166
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
167
-
168
- ## [21.0.38](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.35...@bitgo/sdk-coin-polygon@21.0.38) (2025-03-04)
169
-
170
- ### Bug Fixes
171
-
172
- - dependency fixes for secp256 lib ([826db0b](https://github.com/BitGo/BitGoJS/commit/826db0b5481435bb38b251e8bb5ba8ce9f78d017))
173
-
174
- ## [21.0.37](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.35...@bitgo/sdk-coin-polygon@21.0.37) (2025-02-26)
175
-
176
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
177
-
178
- ## [21.0.36](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.35...@bitgo/sdk-coin-polygon@21.0.36) (2025-02-20)
179
-
180
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
181
-
182
- ## [21.0.35](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.34...@bitgo/sdk-coin-polygon@21.0.35) (2025-02-19)
183
-
184
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
185
-
186
- ## [21.0.34](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.33...@bitgo/sdk-coin-polygon@21.0.34) (2025-02-11)
187
-
188
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
189
-
190
- ## [21.0.33](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.32...@bitgo/sdk-coin-polygon@21.0.33) (2025-02-05)
191
-
192
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
193
-
194
- ## [21.0.32](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.31...@bitgo/sdk-coin-polygon@21.0.32) (2025-01-28)
195
-
196
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
197
-
198
- ## [21.0.31](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.30...@bitgo/sdk-coin-polygon@21.0.31) (2025-01-23)
199
-
200
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
201
-
202
- ## [21.0.30](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.29...@bitgo/sdk-coin-polygon@21.0.30) (2025-01-23)
203
-
204
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
205
-
206
- ## [21.0.29](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.28...@bitgo/sdk-coin-polygon@21.0.29) (2025-01-20)
207
-
208
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
209
-
210
- ## [21.0.28](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.27...@bitgo/sdk-coin-polygon@21.0.28) (2025-01-15)
211
-
212
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
213
-
214
- ## [21.0.27](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.26...@bitgo/sdk-coin-polygon@21.0.27) (2025-01-09)
215
-
216
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
217
-
218
- ## [21.0.26](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.25...@bitgo/sdk-coin-polygon@21.0.26) (2025-01-03)
219
-
220
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
221
-
222
- ## [21.0.25](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.24...@bitgo/sdk-coin-polygon@21.0.25) (2024-12-24)
223
-
224
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
225
-
226
- ## [21.0.24](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.23...@bitgo/sdk-coin-polygon@21.0.24) (2024-12-19)
227
-
228
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
229
-
230
- ## [21.0.23](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.21...@bitgo/sdk-coin-polygon@21.0.23) (2024-12-17)
231
-
232
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
233
-
234
- ## [21.0.22](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.21...@bitgo/sdk-coin-polygon@21.0.22) (2024-12-17)
235
-
236
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
237
-
238
- ## [21.0.21](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.20...@bitgo/sdk-coin-polygon@21.0.21) (2024-12-12)
239
-
240
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
241
-
242
- ## [21.0.20](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.19...@bitgo/sdk-coin-polygon@21.0.20) (2024-12-11)
243
-
244
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
245
-
246
- ## [21.0.19](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.18...@bitgo/sdk-coin-polygon@21.0.19) (2024-12-03)
247
-
248
- ### Bug Fixes
249
-
250
- - use better string conversion for message signing ([c81d0b1](https://github.com/BitGo/BitGoJS/commit/c81d0b19c379109df69f8bdd7ff92c582492ab45))
251
-
252
- ## [21.0.18](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.17...@bitgo/sdk-coin-polygon@21.0.18) (2024-11-26)
253
-
254
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
255
-
256
- ## [21.0.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.16...@bitgo/sdk-coin-polygon@21.0.17) (2024-11-21)
257
-
258
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
259
-
260
- ## [21.0.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.14...@bitgo/sdk-coin-polygon@21.0.16) (2024-11-19)
261
-
262
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
263
-
264
- ## [21.0.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.14...@bitgo/sdk-coin-polygon@21.0.15) (2024-11-14)
265
-
266
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
267
-
268
- ## [21.0.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.13...@bitgo/sdk-coin-polygon@21.0.14) (2024-11-08)
269
-
270
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
271
-
272
- ## [21.0.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.12...@bitgo/sdk-coin-polygon@21.0.13) (2024-11-07)
273
-
274
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
275
-
276
- ## [21.0.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.11...@bitgo/sdk-coin-polygon@21.0.12) (2024-11-01)
277
-
278
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
279
-
280
- ## [21.0.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.10...@bitgo/sdk-coin-polygon@21.0.11) (2024-10-22)
281
-
282
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
283
-
284
- ## [21.0.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.9...@bitgo/sdk-coin-polygon@21.0.10) (2024-10-15)
285
-
286
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
287
-
288
- ## [21.0.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.8...@bitgo/sdk-coin-polygon@21.0.9) (2024-10-08)
289
-
290
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
291
-
292
- ## [21.0.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.7...@bitgo/sdk-coin-polygon@21.0.8) (2024-10-04)
293
-
294
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
295
-
296
- ## [21.0.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.6...@bitgo/sdk-coin-polygon@21.0.7) (2024-09-24)
297
-
298
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
299
-
300
- ## [21.0.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.5...@bitgo/sdk-coin-polygon@21.0.6) (2024-09-19)
301
-
302
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
303
-
304
- ## [21.0.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.4...@bitgo/sdk-coin-polygon@21.0.5) (2024-09-16)
305
-
306
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
307
-
308
- ## [21.0.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.3...@bitgo/sdk-coin-polygon@21.0.4) (2024-09-10)
309
-
310
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
311
-
312
- ## [21.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.2...@bitgo/sdk-coin-polygon@21.0.3) (2024-09-03)
313
-
314
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
315
-
316
- ## [21.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.1...@bitgo/sdk-coin-polygon@21.0.2) (2024-08-29)
317
-
318
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
319
-
320
- ## [21.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@21.0.0...@bitgo/sdk-coin-polygon@21.0.1) (2024-08-27)
321
-
322
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
323
-
324
- # [21.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.5.13...@bitgo/sdk-coin-polygon@21.0.0) (2024-08-20)
325
-
326
- ### Features
327
-
328
- - move opensslbytes to own package ([e23c562](https://github.com/BitGo/BitGoJS/commit/e23c5627957916055e68329541dd1eb775704ca5))
329
-
330
- ### BREAKING CHANGES
331
-
332
- - clients using challenge
333
- generation & TSS Recovery functions must now
334
- install @bitgo/sdk-opensslbytes separately &
335
- provide the openSSLBytes WASM themselves.
336
-
337
- Ticket: CE-4329
338
-
339
- ## [20.5.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.5.13...@bitgo/sdk-coin-polygon@20.5.14) (2024-08-13)
340
-
341
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
342
-
343
- ## [20.5.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.5.12...@bitgo/sdk-coin-polygon@20.5.13) (2024-08-07)
344
-
345
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
346
-
347
- ## [20.5.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.5.11...@bitgo/sdk-coin-polygon@20.5.12) (2024-07-30)
348
-
349
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
350
-
351
- ## [20.5.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.5.10...@bitgo/sdk-coin-polygon@20.5.11) (2024-07-24)
352
-
353
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
354
-
355
- ## [20.5.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.5.9...@bitgo/sdk-coin-polygon@20.5.10) (2024-07-16)
356
-
357
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
358
-
359
- ## [20.5.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.5.8...@bitgo/sdk-coin-polygon@20.5.9) (2024-07-04)
360
-
361
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
362
-
363
- ## [20.5.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.5.7...@bitgo/sdk-coin-polygon@20.5.8) (2024-07-02)
364
-
365
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
366
-
367
- ## [20.5.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.5.6...@bitgo/sdk-coin-polygon@20.5.7) (2024-06-27)
368
-
369
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
370
-
371
- ## [20.5.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.5.5...@bitgo/sdk-coin-polygon@20.5.6) (2024-06-26)
372
-
373
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
374
-
375
- ## [20.5.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.5.3...@bitgo/sdk-coin-polygon@20.5.5) (2024-06-21)
376
-
377
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
378
-
379
- ## [20.5.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.5.3...@bitgo/sdk-coin-polygon@20.5.4) (2024-06-20)
380
-
381
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
382
-
383
- ## [20.5.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.5.2...@bitgo/sdk-coin-polygon@20.5.3) (2024-06-14)
384
-
385
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
386
-
387
- ## [20.5.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.5.1...@bitgo/sdk-coin-polygon@20.5.2) (2024-06-11)
388
-
389
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
390
-
391
- ## [20.5.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.5.0...@bitgo/sdk-coin-polygon@20.5.1) (2024-06-05)
392
-
393
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
394
-
395
- # [20.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.4.0...@bitgo/sdk-coin-polygon@20.5.0) (2024-05-31)
396
-
397
- ### Features
398
-
399
- - **abstract-eth:** add recovery support for bsc and polygon mpcv2 ([820e7b4](https://github.com/BitGo/BitGoJS/commit/820e7b40574add1bc7a05954961c7e7473972168))
400
-
401
- # [20.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.3.3...@bitgo/sdk-coin-polygon@20.4.0) (2024-05-28)
402
-
403
- ### Features
404
-
405
- - **abstract-eth:** add support to build tx for CCR of unsupported token ([a6dac7c](https://github.com/BitGo/BitGoJS/commit/a6dac7c00d47acfa3d4dd072b9cfcdf99215a743))
406
-
407
- ## [20.3.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.3.2...@bitgo/sdk-coin-polygon@20.3.3) (2024-05-22)
408
-
409
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
410
-
411
- ## [20.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.3.1...@bitgo/sdk-coin-polygon@20.3.2) (2024-05-17)
412
-
413
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
414
-
415
- ## [20.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.3.0...@bitgo/sdk-coin-polygon@20.3.1) (2024-05-13)
416
-
417
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
418
-
419
- # [20.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.2.1...@bitgo/sdk-coin-polygon@20.3.0) (2024-05-08)
420
-
421
- ### Features
422
-
423
- - **abstract-eth:** support v4 wallet for recover method ([142ec9f](https://github.com/BitGo/BitGoJS/commit/142ec9f220ec2af54545aca4b4d95b39a4179002))
424
-
425
- ## [20.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.2.0...@bitgo/sdk-coin-polygon@20.2.1) (2024-05-01)
426
-
427
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
428
-
429
- # [20.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.1.1...@bitgo/sdk-coin-polygon@20.2.0) (2024-04-25)
430
-
431
- ### Features
432
-
433
- - **abstract-eth:** use non packed encode for V4 wallet ([54fd3a8](https://github.com/BitGo/BitGoJS/commit/54fd3a8dbafb14bdeae78204c122885d288d48b6))
434
-
435
- ## [20.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.1.0...@bitgo/sdk-coin-polygon@20.1.1) (2024-04-24)
436
-
437
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
438
-
439
- # [20.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.0.6...@bitgo/sdk-coin-polygon@20.1.0) (2024-04-22)
440
-
441
- ### Bug Fixes
442
-
443
- - **sdk-coin-polygon:** fix send tx for polygon testnet ([172a081](https://github.com/BitGo/BitGoJS/commit/172a081cc4bec1eedf9876a438bc8828dc543d31))
444
-
445
- ### Features
446
-
447
- - **statics:** add polygon amoy testnet ([b9a770d](https://github.com/BitGo/BitGoJS/commit/b9a770d4833a9175832629912ecae4687b2681b4))
448
-
449
- ## [20.0.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.0.5...@bitgo/sdk-coin-polygon@20.0.6) (2024-04-17)
450
-
451
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
452
-
453
- ## [20.0.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.0.4...@bitgo/sdk-coin-polygon@20.0.5) (2024-04-12)
454
-
455
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
456
-
457
- ## [20.0.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.0.3...@bitgo/sdk-coin-polygon@20.0.4) (2024-04-10)
458
-
459
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
460
-
461
- ## [20.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.0.2...@bitgo/sdk-coin-polygon@20.0.3) (2024-04-09)
462
-
463
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
464
-
465
- ## [20.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.0.1...@bitgo/sdk-coin-polygon@20.0.2) (2024-04-08)
466
-
467
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
468
-
469
- ## [20.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@20.0.0...@bitgo/sdk-coin-polygon@20.0.1) (2024-04-05)
470
-
471
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
472
-
473
- # [20.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@19.0.4...@bitgo/sdk-coin-polygon@20.0.0) (2024-03-28)
474
-
475
- ### Features
476
-
477
- - **root:** deprecate node 16 ([d3ec624](https://github.com/BitGo/BitGoJS/commit/d3ec6240bddae2a4ab7fa80c4a16efecc36210bd))
478
-
479
- ### BREAKING CHANGES
480
-
481
- - **root:** Node 16 is no longer supported in bitgojs.
482
- TICKET: WP-1100
483
-
484
- ## [19.0.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@19.0.3...@bitgo/sdk-coin-polygon@19.0.4) (2024-03-19)
485
-
486
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
487
-
488
- ## [19.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@19.0.2...@bitgo/sdk-coin-polygon@19.0.3) (2024-03-11)
489
-
490
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
491
-
492
- ## [19.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@19.0.1...@bitgo/sdk-coin-polygon@19.0.2) (2024-02-28)
493
-
494
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
495
-
496
- ## [19.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@19.0.0...@bitgo/sdk-coin-polygon@19.0.1) (2024-02-22)
497
-
498
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
499
-
500
- # [19.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@19.0.0) (2024-02-19)
501
-
502
- ### Bug Fixes
503
-
504
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
505
- - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
506
-
507
- ### Code Refactoring
508
-
509
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
510
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
511
-
512
- ### Features
513
-
514
- - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
515
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
516
-
517
- ### BREAKING CHANGES
518
-
519
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
520
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
521
- getCustomChainName method is removed from Polygon class because a common
522
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
523
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
524
- and needs to be passed to derive the Eth common object from the chainId.
525
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
526
- it can be used for other EthLike coins. getBaseFactor method in Eth
527
- and Polygon class returns number instead of string just to align with
528
- AbstractEthLikeCoin
529
- Ticket: WIN-1012
530
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
531
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
532
- getCustomChainName method is removed from Polygon class because a common
533
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
534
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
535
- and needs to be passed to derive the Eth common object from the chainId.
536
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
537
- it can be used for other EthLike coins. getBaseFactor method in Eth
538
- and Polygon class returns number instead of string just to align with
539
- AbstractEthLikeCoin
540
- Ticket: WIN-1012
541
-
542
- # [18.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@18.0.0) (2024-01-30)
543
-
544
- ### Bug Fixes
545
-
546
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
547
- - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
548
-
549
- ### Code Refactoring
550
-
551
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
552
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
553
-
554
- ### Features
555
-
556
- - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
557
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
558
-
559
- ### BREAKING CHANGES
560
-
561
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
562
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
563
- getCustomChainName method is removed from Polygon class because a common
564
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
565
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
566
- and needs to be passed to derive the Eth common object from the chainId.
567
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
568
- it can be used for other EthLike coins. getBaseFactor method in Eth
569
- and Polygon class returns number instead of string just to align with
570
- AbstractEthLikeCoin
571
- Ticket: WIN-1012
572
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
573
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
574
- getCustomChainName method is removed from Polygon class because a common
575
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
576
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
577
- and needs to be passed to derive the Eth common object from the chainId.
578
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
579
- it can be used for other EthLike coins. getBaseFactor method in Eth
580
- and Polygon class returns number instead of string just to align with
581
- AbstractEthLikeCoin
582
- Ticket: WIN-1012
583
-
584
- # [17.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@17.0.0) (2024-01-26)
585
-
586
- ### Bug Fixes
587
-
588
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
589
- - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
590
-
591
- ### Code Refactoring
592
-
593
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
594
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
595
-
596
- ### Features
597
-
598
- - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
599
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
600
-
601
- ### BREAKING CHANGES
602
-
603
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
604
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
605
- getCustomChainName method is removed from Polygon class because a common
606
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
607
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
608
- and needs to be passed to derive the Eth common object from the chainId.
609
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
610
- it can be used for other EthLike coins. getBaseFactor method in Eth
611
- and Polygon class returns number instead of string just to align with
612
- AbstractEthLikeCoin
613
- Ticket: WIN-1012
614
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
615
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
616
- getCustomChainName method is removed from Polygon class because a common
617
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
618
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
619
- and needs to be passed to derive the Eth common object from the chainId.
620
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
621
- it can be used for other EthLike coins. getBaseFactor method in Eth
622
- and Polygon class returns number instead of string just to align with
623
- AbstractEthLikeCoin
624
- Ticket: WIN-1012
625
-
626
- # [16.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@16.0.0) (2024-01-26)
627
-
628
- ### Bug Fixes
629
-
630
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
631
- - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
632
-
633
- ### Code Refactoring
634
-
635
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
636
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
637
-
638
- ### Features
639
-
640
- - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
641
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
642
-
643
- ### BREAKING CHANGES
644
-
645
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
646
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
647
- getCustomChainName method is removed from Polygon class because a common
648
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
649
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
650
- and needs to be passed to derive the Eth common object from the chainId.
651
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
652
- it can be used for other EthLike coins. getBaseFactor method in Eth
653
- and Polygon class returns number instead of string just to align with
654
- AbstractEthLikeCoin
655
- Ticket: WIN-1012
656
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
657
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
658
- getCustomChainName method is removed from Polygon class because a common
659
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
660
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
661
- and needs to be passed to derive the Eth common object from the chainId.
662
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
663
- it can be used for other EthLike coins. getBaseFactor method in Eth
664
- and Polygon class returns number instead of string just to align with
665
- AbstractEthLikeCoin
666
- Ticket: WIN-1012
667
-
668
- # [15.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@15.0.0) (2024-01-25)
669
-
670
- ### Bug Fixes
671
-
672
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
673
- - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
674
-
675
- ### Code Refactoring
676
-
677
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
678
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
679
-
680
- ### Features
681
-
682
- - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
683
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
684
-
685
- ### BREAKING CHANGES
686
-
687
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
688
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
689
- getCustomChainName method is removed from Polygon class because a common
690
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
691
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
692
- and needs to be passed to derive the Eth common object from the chainId.
693
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
694
- it can be used for other EthLike coins. getBaseFactor method in Eth
695
- and Polygon class returns number instead of string just to align with
696
- AbstractEthLikeCoin
697
- Ticket: WIN-1012
698
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
699
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
700
- getCustomChainName method is removed from Polygon class because a common
701
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
702
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
703
- and needs to be passed to derive the Eth common object from the chainId.
704
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
705
- it can be used for other EthLike coins. getBaseFactor method in Eth
706
- and Polygon class returns number instead of string just to align with
707
- AbstractEthLikeCoin
708
- Ticket: WIN-1012
709
-
710
- # [14.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@14.0.0) (2024-01-22)
711
-
712
- ### Bug Fixes
713
-
714
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
715
- - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
716
-
717
- ### Code Refactoring
718
-
719
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
720
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
721
-
722
- ### Features
723
-
724
- - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
725
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
726
-
727
- ### BREAKING CHANGES
728
-
729
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
730
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
731
- getCustomChainName method is removed from Polygon class because a common
732
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
733
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
734
- and needs to be passed to derive the Eth common object from the chainId.
735
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
736
- it can be used for other EthLike coins. getBaseFactor method in Eth
737
- and Polygon class returns number instead of string just to align with
738
- AbstractEthLikeCoin
739
- Ticket: WIN-1012
740
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
741
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
742
- getCustomChainName method is removed from Polygon class because a common
743
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
744
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
745
- and needs to be passed to derive the Eth common object from the chainId.
746
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
747
- it can be used for other EthLike coins. getBaseFactor method in Eth
748
- and Polygon class returns number instead of string just to align with
749
- AbstractEthLikeCoin
750
- Ticket: WIN-1012
751
-
752
- # [13.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@13.0.0) (2024-01-09)
753
-
754
- ### Bug Fixes
755
-
756
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
757
- - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
758
-
759
- ### Code Refactoring
760
-
761
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
762
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
763
-
764
- ### Features
765
-
766
- - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
767
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
768
-
769
- ### BREAKING CHANGES
770
-
771
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
772
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
773
- getCustomChainName method is removed from Polygon class because a common
774
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
775
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
776
- and needs to be passed to derive the Eth common object from the chainId.
777
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
778
- it can be used for other EthLike coins. getBaseFactor method in Eth
779
- and Polygon class returns number instead of string just to align with
780
- AbstractEthLikeCoin
781
- Ticket: WIN-1012
782
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
783
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
784
- getCustomChainName method is removed from Polygon class because a common
785
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
786
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
787
- and needs to be passed to derive the Eth common object from the chainId.
788
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
789
- it can be used for other EthLike coins. getBaseFactor method in Eth
790
- and Polygon class returns number instead of string just to align with
791
- AbstractEthLikeCoin
792
- Ticket: WIN-1012
793
-
794
- # [12.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@12.0.0) (2024-01-03)
795
-
796
- ### Bug Fixes
797
-
798
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
799
- - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
800
-
801
- ### Code Refactoring
802
-
803
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
804
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
805
-
806
- ### Features
807
-
808
- - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
809
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
810
-
811
- ### BREAKING CHANGES
812
-
813
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
814
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
815
- getCustomChainName method is removed from Polygon class because a common
816
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
817
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
818
- and needs to be passed to derive the Eth common object from the chainId.
819
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
820
- it can be used for other EthLike coins. getBaseFactor method in Eth
821
- and Polygon class returns number instead of string just to align with
822
- AbstractEthLikeCoin
823
- Ticket: WIN-1012
824
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
825
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
826
- getCustomChainName method is removed from Polygon class because a common
827
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
828
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
829
- and needs to be passed to derive the Eth common object from the chainId.
830
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
831
- it can be used for other EthLike coins. getBaseFactor method in Eth
832
- and Polygon class returns number instead of string just to align with
833
- AbstractEthLikeCoin
834
- Ticket: WIN-1012
835
-
836
- # [11.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@11.0.0) (2023-12-18)
837
-
838
- ### Bug Fixes
839
-
840
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
841
- - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
842
-
843
- ### Code Refactoring
844
-
845
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
846
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
847
-
848
- ### Features
849
-
850
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
851
-
852
- ### BREAKING CHANGES
853
-
854
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
855
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
856
- getCustomChainName method is removed from Polygon class because a common
857
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
858
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
859
- and needs to be passed to derive the Eth common object from the chainId.
860
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
861
- it can be used for other EthLike coins. getBaseFactor method in Eth
862
- and Polygon class returns number instead of string just to align with
863
- AbstractEthLikeCoin
864
- Ticket: WIN-1012
865
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
866
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
867
- getCustomChainName method is removed from Polygon class because a common
868
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
869
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
870
- and needs to be passed to derive the Eth common object from the chainId.
871
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
872
- it can be used for other EthLike coins. getBaseFactor method in Eth
873
- and Polygon class returns number instead of string just to align with
874
- AbstractEthLikeCoin
875
- Ticket: WIN-1012
876
-
877
- # [10.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@10.0.0) (2023-12-12)
878
-
879
- ### Bug Fixes
880
-
881
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
882
- - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
883
-
884
- ### Code Refactoring
885
-
886
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
887
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
888
-
889
- ### Features
890
-
891
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
892
-
893
- ### BREAKING CHANGES
894
-
895
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
896
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
897
- getCustomChainName method is removed from Polygon class because a common
898
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
899
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
900
- and needs to be passed to derive the Eth common object from the chainId.
901
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
902
- it can be used for other EthLike coins. getBaseFactor method in Eth
903
- and Polygon class returns number instead of string just to align with
904
- AbstractEthLikeCoin
905
- Ticket: WIN-1012
906
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
907
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
908
- getCustomChainName method is removed from Polygon class because a common
909
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
910
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
911
- and needs to be passed to derive the Eth common object from the chainId.
912
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
913
- it can be used for other EthLike coins. getBaseFactor method in Eth
914
- and Polygon class returns number instead of string just to align with
915
- AbstractEthLikeCoin
916
- Ticket: WIN-1012
917
-
918
- # [9.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@9.0.0) (2023-12-09)
919
-
920
- ### Bug Fixes
921
-
922
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
923
- - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
924
-
925
- ### Code Refactoring
926
-
927
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
928
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
929
-
930
- ### Features
931
-
932
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
933
-
934
- ### BREAKING CHANGES
935
-
936
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
937
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
938
- getCustomChainName method is removed from Polygon class because a common
939
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
940
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
941
- and needs to be passed to derive the Eth common object from the chainId.
942
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
943
- it can be used for other EthLike coins. getBaseFactor method in Eth
944
- and Polygon class returns number instead of string just to align with
945
- AbstractEthLikeCoin
946
- Ticket: WIN-1012
947
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
948
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
949
- getCustomChainName method is removed from Polygon class because a common
950
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
951
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
952
- and needs to be passed to derive the Eth common object from the chainId.
953
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
954
- it can be used for other EthLike coins. getBaseFactor method in Eth
955
- and Polygon class returns number instead of string just to align with
956
- AbstractEthLikeCoin
957
- Ticket: WIN-1012
958
-
959
- # [8.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@8.0.0) (2023-12-05)
960
-
961
- ### Bug Fixes
962
-
963
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
964
- - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
965
-
966
- ### Code Refactoring
967
-
968
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
969
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
970
-
971
- ### Features
972
-
973
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
974
-
975
- ### BREAKING CHANGES
976
-
977
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
978
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
979
- getCustomChainName method is removed from Polygon class because a common
980
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
981
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
982
- and needs to be passed to derive the Eth common object from the chainId.
983
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
984
- it can be used for other EthLike coins. getBaseFactor method in Eth
985
- and Polygon class returns number instead of string just to align with
986
- AbstractEthLikeCoin
987
- Ticket: WIN-1012
988
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
989
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
990
- getCustomChainName method is removed from Polygon class because a common
991
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
992
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
993
- and needs to be passed to derive the Eth common object from the chainId.
994
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
995
- it can be used for other EthLike coins. getBaseFactor method in Eth
996
- and Polygon class returns number instead of string just to align with
997
- AbstractEthLikeCoin
998
- Ticket: WIN-1012
999
-
1000
- # [7.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@7.0.0) (2023-11-28)
1001
-
1002
- ### Bug Fixes
1003
-
1004
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
1005
- - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1006
-
1007
- ### Code Refactoring
1008
-
1009
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
1010
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1011
-
1012
- ### Features
1013
-
1014
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
1015
-
1016
- ### BREAKING CHANGES
1017
-
1018
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1019
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1020
- getCustomChainName method is removed from Polygon class because a common
1021
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1022
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1023
- and needs to be passed to derive the Eth common object from the chainId.
1024
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1025
- it can be used for other EthLike coins. getBaseFactor method in Eth
1026
- and Polygon class returns number instead of string just to align with
1027
- AbstractEthLikeCoin
1028
- Ticket: WIN-1012
1029
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1030
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1031
- getCustomChainName method is removed from Polygon class because a common
1032
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1033
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1034
- and needs to be passed to derive the Eth common object from the chainId.
1035
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1036
- it can be used for other EthLike coins. getBaseFactor method in Eth
1037
- and Polygon class returns number instead of string just to align with
1038
- AbstractEthLikeCoin
1039
- Ticket: WIN-1012
1040
-
1041
- # [6.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@6.0.0) (2023-11-24)
1042
-
1043
- ### Bug Fixes
1044
-
1045
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
1046
- - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1047
-
1048
- ### Code Refactoring
1049
-
1050
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
1051
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1052
-
1053
- ### Features
1054
-
1055
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
1056
-
1057
- ### BREAKING CHANGES
1058
-
1059
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1060
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1061
- getCustomChainName method is removed from Polygon class because a common
1062
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1063
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1064
- and needs to be passed to derive the Eth common object from the chainId.
1065
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1066
- it can be used for other EthLike coins. getBaseFactor method in Eth
1067
- and Polygon class returns number instead of string just to align with
1068
- AbstractEthLikeCoin
1069
- Ticket: WIN-1012
1070
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1071
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1072
- getCustomChainName method is removed from Polygon class because a common
1073
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1074
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1075
- and needs to be passed to derive the Eth common object from the chainId.
1076
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1077
- it can be used for other EthLike coins. getBaseFactor method in Eth
1078
- and Polygon class returns number instead of string just to align with
1079
- AbstractEthLikeCoin
1080
- Ticket: WIN-1012
1081
-
1082
- # [5.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@5.0.0) (2023-11-17)
1083
-
1084
- ### Bug Fixes
1085
-
1086
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
1087
- - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1088
-
1089
- ### Code Refactoring
1090
-
1091
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
1092
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1093
-
1094
- ### Features
1095
-
1096
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
1097
-
1098
- ### BREAKING CHANGES
1099
-
1100
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1101
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1102
- getCustomChainName method is removed from Polygon class because a common
1103
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1104
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1105
- and needs to be passed to derive the Eth common object from the chainId.
1106
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1107
- it can be used for other EthLike coins. getBaseFactor method in Eth
1108
- and Polygon class returns number instead of string just to align with
1109
- AbstractEthLikeCoin
1110
- Ticket: WIN-1012
1111
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1112
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1113
- getCustomChainName method is removed from Polygon class because a common
1114
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1115
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1116
- and needs to be passed to derive the Eth common object from the chainId.
1117
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1118
- it can be used for other EthLike coins. getBaseFactor method in Eth
1119
- and Polygon class returns number instead of string just to align with
1120
- AbstractEthLikeCoin
1121
- Ticket: WIN-1012
1122
-
1123
- # [4.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@4.0.0) (2023-11-13)
1124
-
1125
- ### Bug Fixes
1126
-
1127
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
1128
-
1129
- ### Code Refactoring
1130
-
1131
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1132
-
1133
- ### Features
1134
-
1135
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
1136
-
1137
- ### BREAKING CHANGES
1138
-
1139
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1140
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1141
- getCustomChainName method is removed from Polygon class because a common
1142
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1143
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1144
- and needs to be passed to derive the Eth common object from the chainId.
1145
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1146
- it can be used for other EthLike coins. getBaseFactor method in Eth
1147
- and Polygon class returns number instead of string just to align with
1148
- AbstractEthLikeCoin
1149
- Ticket: WIN-1012
1150
-
1151
- # [3.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@3.0.0) (2023-11-13)
1152
-
1153
- ### Bug Fixes
1154
-
1155
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
1156
-
1157
- ### Code Refactoring
1158
-
1159
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1160
-
1161
- ### Features
1162
-
1163
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
1164
-
1165
- ### BREAKING CHANGES
1166
-
1167
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1168
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1169
- getCustomChainName method is removed from Polygon class because a common
1170
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1171
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1172
- and needs to be passed to derive the Eth common object from the chainId.
1173
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1174
- it can be used for other EthLike coins. getBaseFactor method in Eth
1175
- and Polygon class returns number instead of string just to align with
1176
- AbstractEthLikeCoin
1177
- Ticket: WIN-1012
1178
-
1179
- # [2.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@2.0.0) (2023-11-13)
1180
-
1181
- ### Bug Fixes
1182
-
1183
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
1184
-
1185
- ### Code Refactoring
1186
-
1187
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1188
-
1189
- ### Features
1190
-
1191
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
1192
-
1193
- ### BREAKING CHANGES
1194
-
1195
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1196
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1197
- getCustomChainName method is removed from Polygon class because a common
1198
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1199
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1200
- and needs to be passed to derive the Eth common object from the chainId.
1201
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1202
- it can be used for other EthLike coins. getBaseFactor method in Eth
1203
- and Polygon class returns number instead of string just to align with
1204
- AbstractEthLikeCoin
1205
- Ticket: WIN-1012
1206
-
1207
- # [1.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@1.10.0) (2023-10-20)
1208
-
1209
- ### Features
1210
-
1211
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
1212
-
1213
- # [1.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@1.9.0) (2023-10-18)
1214
-
1215
- ### Features
1216
-
1217
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
1218
-
1219
- # [1.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@1.8.0) (2023-09-25)
1220
-
1221
- ### Features
1222
-
1223
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
1224
-
1225
- ## [1.7.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@1.7.10) (2023-09-09)
1226
-
1227
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1228
-
1229
- ## [1.7.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@1.7.9) (2023-09-09)
1230
-
1231
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1232
-
1233
- ## [1.7.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@1.7.8) (2023-09-07)
1234
-
1235
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1236
-
1237
- ## [1.7.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@1.7.7) (2023-09-05)
1238
-
1239
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1240
-
1241
- ## [1.7.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@1.7.6) (2023-09-01)
1242
-
1243
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1244
-
1245
- ## [1.7.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@1.7.5) (2023-08-29)
1246
-
1247
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1248
-
1249
- ## [1.7.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@1.7.4) (2023-08-25)
1250
-
1251
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1252
-
1253
- ## [1.7.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@1.7.3) (2023-08-24)
1254
-
1255
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1256
-
1257
- ## [1.7.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@1.7.2) (2023-08-16)
1258
-
1259
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1260
-
1261
- ## [1.7.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@1.7.1) (2023-08-16)
1262
-
1263
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1264
-
1265
- # [1.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.5.12...@bitgo/sdk-coin-polygon@1.7.0) (2023-08-04)
1266
-
1267
- ### Features
1268
-
1269
- - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
1270
- - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
1271
-
1272
- # [1.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.5.12...@bitgo/sdk-coin-polygon@1.6.0) (2023-07-28)
1273
-
1274
- ### Features
1275
-
1276
- - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
1277
- - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
1278
-
1279
- ## [1.5.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.5.11...@bitgo/sdk-coin-polygon@1.5.12) (2023-07-18)
1280
-
1281
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1282
-
1283
- ## [1.5.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.5.10...@bitgo/sdk-coin-polygon@1.5.11) (2023-06-21)
1284
-
1285
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1286
-
1287
- ## [1.5.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.5.9...@bitgo/sdk-coin-polygon@1.5.10) (2023-06-14)
1288
-
1289
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1290
-
1291
- ## [1.5.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.5.8...@bitgo/sdk-coin-polygon@1.5.9) (2023-06-13)
1292
-
1293
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1294
-
1295
- ## [1.5.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.5.7...@bitgo/sdk-coin-polygon@1.5.8) (2023-06-07)
1296
-
1297
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1298
-
1299
- ## [1.5.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.5.6...@bitgo/sdk-coin-polygon@1.5.7) (2023-06-05)
1300
-
1301
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1302
-
1303
- ## [1.5.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.5.5...@bitgo/sdk-coin-polygon@1.5.6) (2023-05-25)
1304
-
1305
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1306
-
1307
- ## [1.5.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.5.4...@bitgo/sdk-coin-polygon@1.5.5) (2023-05-17)
1308
-
1309
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1310
-
1311
- ## [1.5.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.5.3...@bitgo/sdk-coin-polygon@1.5.4) (2023-05-10)
1312
-
1313
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1314
-
1315
- ## [1.5.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.5.2...@bitgo/sdk-coin-polygon@1.5.3) (2023-05-03)
1316
-
1317
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1318
-
1319
- ## [1.5.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.5.1...@bitgo/sdk-coin-polygon@1.5.2) (2023-04-25)
1320
-
1321
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1322
-
1323
- ## [1.5.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.5.0...@bitgo/sdk-coin-polygon@1.5.1) (2023-04-20)
1324
-
1325
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1326
-
1327
- # [1.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.4.8...@bitgo/sdk-coin-polygon@1.5.0) (2023-04-13)
1328
-
1329
- ### Features
1330
-
1331
- - **sdk-coin-polygon:** support evm based cross chain recovery ([a88681f](https://github.com/BitGo/BitGoJS/commit/a88681f8428bcb6617ee2c7cfe5e8294b603af9f))
1332
-
1333
- ## [1.4.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.4.7...@bitgo/sdk-coin-polygon@1.4.8) (2023-02-17)
1334
-
1335
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1336
-
1337
- ## [1.4.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.4.4...@bitgo/sdk-coin-polygon@1.4.7) (2023-02-16)
1338
-
1339
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1340
-
1341
- ## [1.4.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.4.4...@bitgo/sdk-coin-polygon@1.4.6) (2023-02-08)
1342
-
1343
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1344
-
1345
- ## [1.4.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.4.4...@bitgo/sdk-coin-polygon@1.4.5) (2023-01-30)
1346
-
1347
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1348
-
1349
- ## [1.4.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.4.3...@bitgo/sdk-coin-polygon@1.4.4) (2023-01-25)
1350
-
1351
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1352
-
1353
- ## [1.4.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.4.2...@bitgo/sdk-coin-polygon@1.4.3) (2022-12-23)
1354
-
1355
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1356
-
1357
- ## [1.4.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.4.1...@bitgo/sdk-coin-polygon@1.4.2) (2022-12-20)
1358
-
1359
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1360
-
1361
- ## [1.4.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.4.0...@bitgo/sdk-coin-polygon@1.4.1) (2022-12-09)
1362
-
1363
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1364
-
1365
- # [1.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.3.6...@bitgo/sdk-coin-polygon@1.4.0) (2022-12-06)
1366
-
1367
- ### Features
1368
-
1369
- - **sdk-coin-polygon:** crossChainRecovery support ([9b42813](https://github.com/BitGo/BitGoJS/commit/9b4281333a8d3835219e566e31cba28ab448c85f))
1370
-
1371
- ## [1.3.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.3.5...@bitgo/sdk-coin-polygon@1.3.6) (2022-12-01)
1372
-
1373
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1374
-
1375
- ## [1.3.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.3.0...@bitgo/sdk-coin-polygon@1.3.5) (2022-11-29)
1376
-
1377
- ### Bug Fixes
1378
-
1379
- - **sdk-coin-polygon:** remove unused data in recovery ([6ee161c](https://github.com/BitGo/BitGoJS/commit/6ee161c28e2e627456541b479d8f362fbf96979d))
1380
-
1381
- ## [1.3.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.3.0...@bitgo/sdk-coin-polygon@1.3.4) (2022-11-04)
1382
-
1383
- ### Bug Fixes
1384
-
1385
- - **sdk-coin-polygon:** remove unused data in recovery ([6ee161c](https://github.com/BitGo/BitGoJS/commit/6ee161c28e2e627456541b479d8f362fbf96979d))
1386
-
1387
- ## [1.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.3.0...@bitgo/sdk-coin-polygon@1.3.2) (2022-10-27)
1388
-
1389
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1390
-
1391
- ## [1.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.3.0...@bitgo/sdk-coin-polygon@1.3.1) (2022-10-25)
1392
-
1393
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1394
-
1395
- # [1.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.0.1-rc.0...@bitgo/sdk-coin-polygon@1.3.0) (2022-10-18)
1396
-
1397
- ### Bug Fixes
1398
-
1399
- - **core:** fix bip32/ecpair, API vs Interface ([bec9c1e](https://github.com/BitGo/BitGoJS/commit/bec9c1e6ff0c23108dc27e171abdd3e4d2cfdfb1))
1400
- - **sdk-coin-eth:** fix v1 address init code ([9a3bb82](https://github.com/BitGo/BitGoJS/commit/9a3bb8216da92cf3cf3ce009d6595bf2a1a66885))
1401
- - **sdk-coin-polygon:** fix sign for test polygon ([aff93c4](https://github.com/BitGo/BitGoJS/commit/aff93c4f97d6685b12a702df5a1d804537049d2a))
1402
- - **sdk-coin-polygon:** update polygon token names ([8bb61cf](https://github.com/BitGo/BitGoJS/commit/8bb61cf2112a668255746366a32f8e5c8105a481))
1403
-
1404
- ### Features
1405
-
1406
- - add message signing support for polygon ([ab2bac1](https://github.com/BitGo/BitGoJS/commit/ab2bac13dad55ce8571d014796298aa52a24a5f2))
1407
- - **sdk-coin-eth:** add v1 wallet init code ([b1c983d](https://github.com/BitGo/BitGoJS/commit/b1c983d2f0723aa6647fca3d01a4c814639624b4))
1408
- - **sdk-coin-polygon:** add second signing ([c053924](https://github.com/BitGo/BitGoJS/commit/c05392483224194fc9aa97f02592534d25ef9ade))
1409
- - **sdk-coin-polygon:** add signTx method ([3458ed0](https://github.com/BitGo/BitGoJS/commit/3458ed0f10d46489be5f1765679a8de3e786b020))
1410
- - **sdk-coin-polygon:** support recovery ([15d6021](https://github.com/BitGo/BitGoJS/commit/15d602164d3a2b504d7995e65aa0fbcb38f98e89))
1411
- - **sdk-coin-polygon:** support tokens ([8870307](https://github.com/BitGo/BitGoJS/commit/8870307b63f460031019aecf30c60df4f2c0a112))
1412
- - **sdk-coin-polygon:** support tss in polygon controller ([5a5514c](https://github.com/BitGo/BitGoJS/commit/5a5514c98ca58cfcd794473cc5547342e8276dbc))
1413
- - **statics:** support NAME NFT on tpolygon BG-58416 ([dba1b90](https://github.com/BitGo/BitGoJS/commit/dba1b9087b59336292c51215785ff366bbd262be))
1414
-
1415
- ### BREAKING CHANGES
1416
-
1417
- - **sdk-coin-eth:** Changes the return for exported method
1418
- decodeWalletCreationData() in sdk-coin-eth
1419
- BG-53733
1420
-
1421
- ## [1.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.0.1-rc.0...@bitgo/sdk-coin-polygon@1.0.1) (2022-07-19)
1422
-
1423
- **Note:** Version bump only for package @bitgo/sdk-coin-polygon
1424
-
1425
- ## 1.0.1-rc.0 (2022-07-19)
1426
-
1427
- ### Bug Fixes
1428
-
1429
- - update bad dependency match ([5cc3255](https://github.com/BitGo/BitGoJS/commit/5cc3255aecba1ffb112da3ba10d8d36d2074b3e3))