@bitgo-beta/abstract-eth 1.0.2-beta.117 → 1.0.2-beta.1171

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 (91) hide show
  1. package/CHANGELOG.md +1679 -0
  2. package/dist/src/abstractEthLikeCoin.d.ts +18 -9
  3. package/dist/src/abstractEthLikeCoin.d.ts.map +1 -1
  4. package/dist/src/abstractEthLikeCoin.js +39 -15
  5. package/dist/src/abstractEthLikeNewCoins.d.ts +696 -0
  6. package/dist/src/abstractEthLikeNewCoins.d.ts.map +1 -0
  7. package/dist/src/abstractEthLikeNewCoins.js +2092 -0
  8. package/dist/src/ethLikeToken.d.ts +36 -6
  9. package/dist/src/ethLikeToken.d.ts.map +1 -1
  10. package/dist/src/ethLikeToken.js +286 -10
  11. package/dist/src/index.d.ts +2 -0
  12. package/dist/src/index.d.ts.map +1 -1
  13. package/dist/src/index.js +8 -2
  14. package/dist/src/lib/contractCall.d.ts +8 -0
  15. package/dist/src/lib/contractCall.d.ts.map +1 -0
  16. package/dist/src/lib/contractCall.js +17 -0
  17. package/dist/src/lib/iface.d.ts +133 -0
  18. package/dist/src/lib/iface.d.ts.map +1 -0
  19. package/dist/src/lib/iface.js +8 -0
  20. package/dist/src/lib/index.d.ts +15 -0
  21. package/dist/src/lib/index.d.ts.map +1 -0
  22. package/dist/src/lib/index.js +56 -0
  23. package/dist/src/lib/keyPair.d.ts +26 -0
  24. package/dist/src/lib/keyPair.d.ts.map +1 -0
  25. package/dist/src/lib/keyPair.js +65 -0
  26. package/dist/src/lib/transaction.d.ts +67 -0
  27. package/dist/src/lib/transaction.d.ts.map +1 -0
  28. package/dist/src/lib/transaction.js +142 -0
  29. package/dist/src/lib/transactionBuilder.d.ts +251 -0
  30. package/dist/src/lib/transactionBuilder.d.ts.map +1 -0
  31. package/dist/src/lib/transactionBuilder.js +742 -0
  32. package/dist/src/lib/transferBuilder.d.ts +76 -0
  33. package/dist/src/lib/transferBuilder.d.ts.map +1 -0
  34. package/dist/src/lib/transferBuilder.js +307 -0
  35. package/dist/src/lib/transferBuilders/baseNFTTransferBuilder.d.ts +54 -0
  36. package/dist/src/lib/transferBuilders/baseNFTTransferBuilder.d.ts.map +1 -0
  37. package/dist/src/lib/transferBuilders/baseNFTTransferBuilder.js +120 -0
  38. package/dist/src/lib/transferBuilders/index.d.ts +4 -0
  39. package/dist/src/lib/transferBuilders/index.d.ts.map +1 -0
  40. package/dist/src/lib/transferBuilders/index.js +20 -0
  41. package/dist/src/lib/transferBuilders/transferBuilderERC1155.d.ts +17 -0
  42. package/dist/src/lib/transferBuilders/transferBuilderERC1155.d.ts.map +1 -0
  43. package/dist/src/lib/transferBuilders/transferBuilderERC1155.js +96 -0
  44. package/dist/src/lib/transferBuilders/transferBuilderERC721.d.ts +16 -0
  45. package/dist/src/lib/transferBuilders/transferBuilderERC721.d.ts.map +1 -0
  46. package/dist/src/lib/transferBuilders/transferBuilderERC721.js +81 -0
  47. package/dist/src/lib/types.d.ts +39 -0
  48. package/dist/src/lib/types.d.ts.map +1 -0
  49. package/dist/src/lib/types.js +137 -0
  50. package/dist/src/lib/utils.d.ts +270 -0
  51. package/dist/src/lib/utils.d.ts.map +1 -0
  52. package/dist/src/lib/utils.js +717 -0
  53. package/dist/src/lib/walletUtil.d.ts +32 -0
  54. package/dist/src/lib/walletUtil.d.ts.map +1 -0
  55. package/dist/src/lib/walletUtil.js +35 -0
  56. package/dist/src/types.d.ts +9 -0
  57. package/dist/src/types.d.ts.map +1 -0
  58. package/dist/src/types.js +3 -0
  59. package/dist/test/index.d.ts +2 -0
  60. package/dist/test/index.d.ts.map +1 -0
  61. package/dist/test/index.js +18 -0
  62. package/dist/test/unit/coin.d.ts +8 -0
  63. package/dist/test/unit/coin.d.ts.map +1 -0
  64. package/dist/test/unit/coin.js +577 -0
  65. package/dist/test/unit/index.d.ts +5 -0
  66. package/dist/test/unit/index.d.ts.map +1 -0
  67. package/dist/test/unit/index.js +21 -0
  68. package/dist/test/unit/token.d.ts +2 -0
  69. package/dist/test/unit/token.d.ts.map +1 -0
  70. package/dist/test/unit/token.js +37 -0
  71. package/dist/test/unit/transaction.d.ts +3 -0
  72. package/dist/test/unit/transaction.d.ts.map +1 -0
  73. package/dist/test/unit/transaction.js +60 -0
  74. package/dist/test/unit/transactionBuilder/addressInitialization.d.ts +8 -0
  75. package/dist/test/unit/transactionBuilder/addressInitialization.d.ts.map +1 -0
  76. package/dist/test/unit/transactionBuilder/addressInitialization.js +95 -0
  77. package/dist/test/unit/transactionBuilder/index.d.ts +4 -0
  78. package/dist/test/unit/transactionBuilder/index.d.ts.map +1 -0
  79. package/dist/test/unit/transactionBuilder/index.js +20 -0
  80. package/dist/test/unit/transactionBuilder/send.d.ts +3 -0
  81. package/dist/test/unit/transactionBuilder/send.d.ts.map +1 -0
  82. package/dist/test/unit/transactionBuilder/send.js +197 -0
  83. package/dist/test/unit/transactionBuilder/walletInitialization.d.ts +10 -0
  84. package/dist/test/unit/transactionBuilder/walletInitialization.d.ts.map +1 -0
  85. package/dist/test/unit/transactionBuilder/walletInitialization.js +124 -0
  86. package/dist/test/unit/transferBuilder.d.ts +2 -0
  87. package/dist/test/unit/transferBuilder.d.ts.map +1 -0
  88. package/dist/test/unit/transferBuilder.js +76 -0
  89. package/dist/tsconfig.tsbuildinfo +1 -8010
  90. package/index.ts +2 -0
  91. package/package.json +29 -9
package/CHANGELOG.md CHANGED
@@ -3,6 +3,1685 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [24.5.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@24.5.0...@bitgo/abstract-eth@24.5.1) (2025-06-10)
7
+
8
+ **Note:** Version bump only for package @bitgo/abstract-eth
9
+
10
+ # [24.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@24.4.0...@bitgo/abstract-eth@24.5.0) (2025-06-05)
11
+
12
+ ### Features
13
+
14
+ - **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
15
+
16
+ # [24.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@24.3.5...@bitgo/abstract-eth@24.4.0) (2025-06-02)
17
+
18
+ ### Features
19
+
20
+ - rename audit function naming and signature ([1a885ab](https://github.com/BitGo/BitGoJS/commit/1a885ab60d30ca8595e284a728f2ab9d3c09994e))
21
+ - **root:** add new audit key baseCoin method ([57c1778](https://github.com/BitGo/BitGoJS/commit/57c17784a72ea364f18e3af9dbd83da877827e69))
22
+
23
+ ## [24.3.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@24.3.4...@bitgo/abstract-eth@24.3.5) (2025-05-28)
24
+
25
+ **Note:** Version bump only for package @bitgo/abstract-eth
26
+
27
+ ## [24.3.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@24.3.3...@bitgo/abstract-eth@24.3.4) (2025-05-22)
28
+
29
+ **Note:** Version bump only for package @bitgo/abstract-eth
30
+
31
+ ## [24.3.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@24.3.2...@bitgo/abstract-eth@24.3.3) (2025-05-20)
32
+
33
+ **Note:** Version bump only for package @bitgo/abstract-eth
34
+
35
+ ## [24.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@24.3.1...@bitgo/abstract-eth@24.3.2) (2025-05-07)
36
+
37
+ ### Bug Fixes
38
+
39
+ - **sdk-coin-bsc:** override verifytsstxn method for bsc ([3d29436](https://github.com/BitGo/BitGoJS/commit/3d294365bdda568f9517683067e9b6fd7347e237))
40
+
41
+ ## [24.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@24.3.0...@bitgo/abstract-eth@24.3.1) (2025-04-29)
42
+
43
+ ### Bug Fixes
44
+
45
+ - **sdk-core:** add validation for unsigned txHex ([eff30e3](https://github.com/BitGo/BitGoJS/commit/eff30e3febbfc3c5f987ba5a0e54d4716983c4b5))
46
+
47
+ # [24.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@24.2.0...@bitgo/abstract-eth@24.3.0) (2025-04-25)
48
+
49
+ ### Bug Fixes
50
+
51
+ - **abstract-eth:** fix building using from for first signer ([c8ec337](https://github.com/BitGo/BitGoJS/commit/c8ec3377d5502a580801fabdcece528b4c3ac03a))
52
+
53
+ ### Features
54
+
55
+ - **abstract-eth:** support building eth tx for a first signer ([cbd4d4c](https://github.com/BitGo/BitGoJS/commit/cbd4d4cdee97a6ff51df2c854e945791ac0df4b4))
56
+ - send digital asset ([e4f9135](https://github.com/BitGo/BitGoJS/commit/e4f913543a39fc1eb062cebcc5c62984a3bdde1a))
57
+
58
+ # [24.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@24.1.0...@bitgo/abstract-eth@24.2.0) (2025-04-15)
59
+
60
+ ### Features
61
+
62
+ - enable erc20 sendmany ([a412a7c](https://github.com/BitGo/BitGoJS/commit/a412a7c6454cedf1cd235f4636e29e7e7a8d3232))
63
+
64
+ # [24.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@24.0.1...@bitgo/abstract-eth@24.1.0) (2025-04-04)
65
+
66
+ ### Features
67
+
68
+ - **abstract-eth:** added support for mpcv2 in recovery ([da92bf8](https://github.com/BitGo/BitGoJS/commit/da92bf80d3f34c35ce73b0a9c2581d1ae201d1cc))
69
+
70
+ ## [24.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@24.0.0...@bitgo/abstract-eth@24.0.1) (2025-04-02)
71
+
72
+ **Note:** Version bump only for package @bitgo/abstract-eth
73
+
74
+ # [24.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@23.0.3...@bitgo/abstract-eth@24.0.0) (2025-03-28)
75
+
76
+ ### Bug Fixes
77
+
78
+ - **abstract-eth:** return eip 191 encoded message as a hex string ([6ae1979](https://github.com/BitGo/BitGoJS/commit/6ae19794ff1c738b4984cb4dacc23130da708a17))
79
+
80
+ ### BREAKING CHANGES
81
+
82
+ - **abstract-eth:** messageEncoded is now encoded as a hex string
83
+
84
+ ## [23.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@23.0.2...@bitgo/abstract-eth@23.0.3) (2025-03-20)
85
+
86
+ ### Reverts
87
+
88
+ - Revert "fix(sdk-core): add validation for unsigned txHex" ([4333b10](https://github.com/BitGo/BitGoJS/commit/4333b1014040edbb0f5b347a9f5e343b20e1704f))
89
+
90
+ ## [23.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@23.0.1...@bitgo/abstract-eth@23.0.2) (2025-03-18)
91
+
92
+ ### Bug Fixes
93
+
94
+ - pass isBatch in send API ([b8c0dfc](https://github.com/BitGo/BitGoJS/commit/b8c0dfc0e2748da7aa631dc77e0c505fcd5cbfcb))
95
+ - **sdk-core:** add validation for unsigned txHex ([4a5ba60](https://github.com/BitGo/BitGoJS/commit/4a5ba60cc98a3aededc7c3385cb8dd47f8c21353))
96
+
97
+ ## [23.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@23.0.0...@bitgo/abstract-eth@23.0.1) (2025-03-06)
98
+
99
+ **Note:** Version bump only for package @bitgo/abstract-eth
100
+
101
+ # [23.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.6.0...@bitgo/abstract-eth@23.0.0) (2025-03-04)
102
+
103
+ ### Bug Fixes
104
+
105
+ - **abstract-eth:** gasLimit for hop txn ([4ce0180](https://github.com/BitGo/BitGoJS/commit/4ce01809b424936919fc30bd6d717b4629a5c2f5))
106
+ - dependency fixes for secp256 lib ([826db0b](https://github.com/BitGo/BitGoJS/commit/826db0b5481435bb38b251e8bb5ba8ce9f78d017))
107
+
108
+ ### BREAKING CHANGES
109
+
110
+ - **abstract-eth:** when we have a pending approval for a hop txn
111
+ when approved the txn is using gasLimit provided by hop params
112
+ which is not expected, this commit fixes it
113
+
114
+ TICKET: COIN-3249
115
+
116
+ ## [22.6.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.6.0...@bitgo/abstract-eth@22.6.2) (2025-02-26)
117
+
118
+ **Note:** Version bump only for package @bitgo/abstract-eth
119
+
120
+ ## [22.6.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.6.0...@bitgo/abstract-eth@22.6.1) (2025-02-20)
121
+
122
+ **Note:** Version bump only for package @bitgo/abstract-eth
123
+
124
+ # [22.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.4.14...@bitgo/abstract-eth@22.6.0) (2025-02-19)
125
+
126
+ ### Features
127
+
128
+ - **abstract-eth:** add method to build and send ccr recovery txn ([0221896](https://github.com/BitGo/BitGoJS/commit/022189691a2f9a1ce2aa5ca84ddcc1042fd25e66))
129
+
130
+ # [22.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.4.14...@bitgo/abstract-eth@22.5.0) (2025-02-11)
131
+
132
+ ### Features
133
+
134
+ - **abstract-eth:** add method to build and send ccr recovery txn ([0221896](https://github.com/BitGo/BitGoJS/commit/022189691a2f9a1ce2aa5ca84ddcc1042fd25e66))
135
+
136
+ ## [22.4.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.4.13...@bitgo/abstract-eth@22.4.14) (2025-02-05)
137
+
138
+ **Note:** Version bump only for package @bitgo/abstract-eth
139
+
140
+ ## [22.4.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.4.12...@bitgo/abstract-eth@22.4.13) (2025-01-28)
141
+
142
+ **Note:** Version bump only for package @bitgo/abstract-eth
143
+
144
+ ## [22.4.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.4.11...@bitgo/abstract-eth@22.4.12) (2025-01-23)
145
+
146
+ **Note:** Version bump only for package @bitgo/abstract-eth
147
+
148
+ ## [22.4.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.4.10...@bitgo/abstract-eth@22.4.11) (2025-01-23)
149
+
150
+ **Note:** Version bump only for package @bitgo/abstract-eth
151
+
152
+ ## [22.4.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.4.9...@bitgo/abstract-eth@22.4.10) (2025-01-20)
153
+
154
+ **Note:** Version bump only for package @bitgo/abstract-eth
155
+
156
+ ## [22.4.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.4.8...@bitgo/abstract-eth@22.4.9) (2025-01-15)
157
+
158
+ **Note:** Version bump only for package @bitgo/abstract-eth
159
+
160
+ ## [22.4.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.4.7...@bitgo/abstract-eth@22.4.8) (2025-01-09)
161
+
162
+ ### Bug Fixes
163
+
164
+ - **abstract-eth:** skip derived address validation for v5 forwarder ([18650ac](https://github.com/BitGo/BitGoJS/commit/18650ac8ba0ce36a14058b4c5115125c58cdf85d))
165
+
166
+ ## [22.4.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.4.6...@bitgo/abstract-eth@22.4.7) (2025-01-03)
167
+
168
+ **Note:** Version bump only for package @bitgo/abstract-eth
169
+
170
+ ## [22.4.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.4.5...@bitgo/abstract-eth@22.4.6) (2024-12-24)
171
+
172
+ ### Bug Fixes
173
+
174
+ - **abstract-eth:** fix verifyCoin method to validate native coin ([c2bf82c](https://github.com/BitGo/BitGoJS/commit/c2bf82cd0268f63081d2bc4ef46854dfe0db1819))
175
+
176
+ ## [22.4.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.4.4...@bitgo/abstract-eth@22.4.5) (2024-12-19)
177
+
178
+ **Note:** Version bump only for package @bitgo/abstract-eth
179
+
180
+ ## [22.4.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.4.2...@bitgo/abstract-eth@22.4.4) (2024-12-17)
181
+
182
+ **Note:** Version bump only for package @bitgo/abstract-eth
183
+
184
+ ## [22.4.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.4.2...@bitgo/abstract-eth@22.4.3) (2024-12-17)
185
+
186
+ **Note:** Version bump only for package @bitgo/abstract-eth
187
+
188
+ ## [22.4.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.4.1...@bitgo/abstract-eth@22.4.2) (2024-12-12)
189
+
190
+ **Note:** Version bump only for package @bitgo/abstract-eth
191
+
192
+ ## [22.4.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.4.0...@bitgo/abstract-eth@22.4.1) (2024-12-11)
193
+
194
+ ### Bug Fixes
195
+
196
+ - **abstract-eth:** fix issue with ethlike signTx ([7584c8b](https://github.com/BitGo/BitGoJS/commit/7584c8bf2e3ddea21582cac36abdebe0a0a78646))
197
+
198
+ # [22.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.3.5...@bitgo/abstract-eth@22.4.0) (2024-12-03)
199
+
200
+ ### Bug Fixes
201
+
202
+ - use better string conversion for message signing ([c81d0b1](https://github.com/BitGo/BitGoJS/commit/c81d0b19c379109df69f8bdd7ff92c582492ab45))
203
+
204
+ ### Features
205
+
206
+ - add @types/keccak to packages that use it ([7e25872](https://github.com/BitGo/BitGoJS/commit/7e25872a5749cb6b3281b5355d4f45151d042d67))
207
+
208
+ ## [22.3.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.3.4...@bitgo/abstract-eth@22.3.5) (2024-11-26)
209
+
210
+ **Note:** Version bump only for package @bitgo/abstract-eth
211
+
212
+ ## [22.3.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.3.3...@bitgo/abstract-eth@22.3.4) (2024-11-21)
213
+
214
+ **Note:** Version bump only for package @bitgo/abstract-eth
215
+
216
+ ## [22.3.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.3.1...@bitgo/abstract-eth@22.3.3) (2024-11-19)
217
+
218
+ **Note:** Version bump only for package @bitgo/abstract-eth
219
+
220
+ ## [22.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.3.1...@bitgo/abstract-eth@22.3.2) (2024-11-14)
221
+
222
+ **Note:** Version bump only for package @bitgo/abstract-eth
223
+
224
+ ## [22.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.3.0...@bitgo/abstract-eth@22.3.1) (2024-11-08)
225
+
226
+ **Note:** Version bump only for package @bitgo/abstract-eth
227
+
228
+ # [22.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.2.4...@bitgo/abstract-eth@22.3.0) (2024-11-07)
229
+
230
+ ### Features
231
+
232
+ - retrofit during eth tss recovery ([4a743ac](https://github.com/BitGo/BitGoJS/commit/4a743ac3eb11486d3917ca6c71429ec7b331dcab))
233
+
234
+ ## [22.2.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.2.3...@bitgo/abstract-eth@22.2.4) (2024-11-01)
235
+
236
+ ### Bug Fixes
237
+
238
+ - **sdk-core:** pass correct walletVersion to wallet platform ([6564098](https://github.com/BitGo/BitGoJS/commit/6564098f79dab328128bea52e86b18d0d6684568))
239
+
240
+ ## [22.2.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.2.2...@bitgo/abstract-eth@22.2.3) (2024-10-22)
241
+
242
+ **Note:** Version bump only for package @bitgo/abstract-eth
243
+
244
+ ## [22.2.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.2.1...@bitgo/abstract-eth@22.2.2) (2024-10-15)
245
+
246
+ **Note:** Version bump only for package @bitgo/abstract-eth
247
+
248
+ ## [22.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.2.0...@bitgo/abstract-eth@22.2.1) (2024-10-08)
249
+
250
+ ### Bug Fixes
251
+
252
+ - v4 cold and custody ccr recovery txn ([b840f73](https://github.com/BitGo/BitGoJS/commit/b840f733d661e64694069ae142e127b46c7ad91b))
253
+
254
+ # [22.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.1.2...@bitgo/abstract-eth@22.2.0) (2024-10-04)
255
+
256
+ ### Features
257
+
258
+ - **sdk-coin-avaxc:** add avaxc support for evm ccr ([b37f97b](https://github.com/BitGo/BitGoJS/commit/b37f97bf2aa1e7353e4ee15e53487c2f6024aa7e))
259
+
260
+ ## [22.1.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.1.1...@bitgo/abstract-eth@22.1.2) (2024-09-24)
261
+
262
+ **Note:** Version bump only for package @bitgo/abstract-eth
263
+
264
+ ## [22.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.1.0...@bitgo/abstract-eth@22.1.1) (2024-09-19)
265
+
266
+ **Note:** Version bump only for package @bitgo/abstract-eth
267
+
268
+ # [22.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.0.4...@bitgo/abstract-eth@22.1.0) (2024-09-16)
269
+
270
+ ### Features
271
+
272
+ - **abstract-eth:** fetch gasPrice and gasLimit from explorer ([2a8f36e](https://github.com/BitGo/BitGoJS/commit/2a8f36e19956904e7f3c7d0a2b3be4159da38f73))
273
+
274
+ ## [22.0.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.0.3...@bitgo/abstract-eth@22.0.4) (2024-09-10)
275
+
276
+ **Note:** Version bump only for package @bitgo/abstract-eth
277
+
278
+ ## [22.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.0.2...@bitgo/abstract-eth@22.0.3) (2024-09-03)
279
+
280
+ **Note:** Version bump only for package @bitgo/abstract-eth
281
+
282
+ ## [22.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.0.1...@bitgo/abstract-eth@22.0.2) (2024-08-29)
283
+
284
+ **Note:** Version bump only for package @bitgo/abstract-eth
285
+
286
+ ## [22.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@22.0.0...@bitgo/abstract-eth@22.0.1) (2024-08-27)
287
+
288
+ **Note:** Version bump only for package @bitgo/abstract-eth
289
+
290
+ # [22.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.8.0...@bitgo/abstract-eth@22.0.0) (2024-08-20)
291
+
292
+ ### Features
293
+
294
+ - move opensslbytes to own package ([e23c562](https://github.com/BitGo/BitGoJS/commit/e23c5627957916055e68329541dd1eb775704ca5))
295
+ - **sdk-coin-etc:** non-bitgo recovery support for wrw ([017155b](https://github.com/BitGo/BitGoJS/commit/017155b5a9b008377189bc94b69ed4b45d8004fe))
296
+
297
+ ### BREAKING CHANGES
298
+
299
+ - clients using challenge
300
+ generation & TSS Recovery functions must now
301
+ install @bitgo/sdk-opensslbytes separately &
302
+ provide the openSSLBytes WASM themselves.
303
+
304
+ Ticket: CE-4329
305
+
306
+ ## [21.8.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.8.0...@bitgo/abstract-eth@21.8.1) (2024-08-13)
307
+
308
+ **Note:** Version bump only for package @bitgo/abstract-eth
309
+
310
+ # [21.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.7.6...@bitgo/abstract-eth@21.8.0) (2024-08-07)
311
+
312
+ ### Features
313
+
314
+ - **abstract-cosmos:** add dkls support for cosmos hot wallet recovery ([da24a55](https://github.com/BitGo/BitGoJS/commit/da24a559d42ac0f2975fd03ec335f5e72bcd8f49))
315
+
316
+ ## [21.7.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.7.5...@bitgo/abstract-eth@21.7.6) (2024-07-30)
317
+
318
+ **Note:** Version bump only for package @bitgo/abstract-eth
319
+
320
+ ## [21.7.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.7.4...@bitgo/abstract-eth@21.7.5) (2024-07-24)
321
+
322
+ **Note:** Version bump only for package @bitgo/abstract-eth
323
+
324
+ ## [21.7.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.7.3...@bitgo/abstract-eth@21.7.4) (2024-07-16)
325
+
326
+ **Note:** Version bump only for package @bitgo/abstract-eth
327
+
328
+ ## [21.7.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.7.2...@bitgo/abstract-eth@21.7.3) (2024-07-04)
329
+
330
+ **Note:** Version bump only for package @bitgo/abstract-eth
331
+
332
+ ## [21.7.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.7.1...@bitgo/abstract-eth@21.7.2) (2024-07-02)
333
+
334
+ **Note:** Version bump only for package @bitgo/abstract-eth
335
+
336
+ ## [21.7.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.7.0...@bitgo/abstract-eth@21.7.1) (2024-06-27)
337
+
338
+ **Note:** Version bump only for package @bitgo/abstract-eth
339
+
340
+ # [21.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.6.2...@bitgo/abstract-eth@21.7.0) (2024-06-26)
341
+
342
+ ### Features
343
+
344
+ - **sdk-core:** adding MPCv1 to MPCv2 retrofit helper ([8b13b16](https://github.com/BitGo/BitGoJS/commit/8b13b167463533a051143374b9fea8ccc1ad63b9))
345
+
346
+ ## [21.6.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.6.0...@bitgo/abstract-eth@21.6.2) (2024-06-21)
347
+
348
+ **Note:** Version bump only for package @bitgo/abstract-eth
349
+
350
+ ## [21.6.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.6.0...@bitgo/abstract-eth@21.6.1) (2024-06-20)
351
+
352
+ **Note:** Version bump only for package @bitgo/abstract-eth
353
+
354
+ # [21.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.5.3...@bitgo/abstract-eth@21.6.0) (2024-06-14)
355
+
356
+ ### Features
357
+
358
+ - **sdk-coin-ethlike:** add new eth like coin packages ([ba305cb](https://github.com/BitGo/BitGoJS/commit/ba305cb7f7b564d499d0f931f50919058e85652f))
359
+
360
+ ## [21.5.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.5.2...@bitgo/abstract-eth@21.5.3) (2024-06-11)
361
+
362
+ ### Bug Fixes
363
+
364
+ - **abstract-eth:** use correct derivation path in wrw recover function ([5018147](https://github.com/BitGo/BitGoJS/commit/50181478d487c8871f94da2fb92e7327098b2370))
365
+
366
+ ## [21.5.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.5.1...@bitgo/abstract-eth@21.5.2) (2024-06-05)
367
+
368
+ **Note:** Version bump only for package @bitgo/abstract-eth
369
+
370
+ ## [21.5.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.5.0...@bitgo/abstract-eth@21.5.1) (2024-05-31)
371
+
372
+ **Note:** Version bump only for package @bitgo/abstract-eth
373
+
374
+ # [21.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.4.0...@bitgo/abstract-eth@21.5.0) (2024-05-28)
375
+
376
+ ### Bug Fixes
377
+
378
+ - **abstract-eth:** handle absence of batcher contract for native coin ([37ede15](https://github.com/BitGo/BitGoJS/commit/37ede15f2fc8e24f732a6d8f513327650d58590c))
379
+
380
+ ### Features
381
+
382
+ - **abstract-eth:** add support to build tx for CCR of unsupported token ([a6dac7c](https://github.com/BitGo/BitGoJS/commit/a6dac7c00d47acfa3d4dd072b9cfcdf99215a743))
383
+
384
+ # [21.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.3.0...@bitgo/abstract-eth@21.4.0) (2024-05-22)
385
+
386
+ ### Features
387
+
388
+ - **abstract-eth:** wrw recovery for dkls wallet ([bf374e8](https://github.com/BitGo/BitGoJS/commit/bf374e89522c9688619d9b20ed66d3873b55d75e))
389
+
390
+ # [21.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.2.1...@bitgo/abstract-eth@21.3.0) (2024-05-17)
391
+
392
+ ### Features
393
+
394
+ - **abstract-eth:** refactor eth wrw recovery tss ([0fdbd5e](https://github.com/BitGo/BitGoJS/commit/0fdbd5eaf25c414b43b61bcfa6bdcdf0150b880f))
395
+
396
+ ## [21.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.2.0...@bitgo/abstract-eth@21.2.1) (2024-05-13)
397
+
398
+ **Note:** Version bump only for package @bitgo/abstract-eth
399
+
400
+ # [21.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.1.1...@bitgo/abstract-eth@21.2.0) (2024-05-08)
401
+
402
+ ### Features
403
+
404
+ - **abstract-eth:** support v4 wallet for recover method ([142ec9f](https://github.com/BitGo/BitGoJS/commit/142ec9f220ec2af54545aca4b4d95b39a4179002))
405
+
406
+ ## [21.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.1.0...@bitgo/abstract-eth@21.1.1) (2024-05-01)
407
+
408
+ **Note:** Version bump only for package @bitgo/abstract-eth
409
+
410
+ # [21.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@21.0.0...@bitgo/abstract-eth@21.1.0) (2024-04-25)
411
+
412
+ ### Features
413
+
414
+ - **abstract-eth:** use non packed encode for V4 wallet ([54fd3a8](https://github.com/BitGo/BitGoJS/commit/54fd3a8dbafb14bdeae78204c122885d288d48b6))
415
+
416
+ # [21.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@20.1.6...@bitgo/abstract-eth@21.0.0) (2024-04-24)
417
+
418
+ ### Bug Fixes
419
+
420
+ - superagent upgrade to 9.0 ([6e9aa43](https://github.com/BitGo/BitGoJS/commit/6e9aa43a6d2999298abd450ceb168d664b8b926d))
421
+
422
+ ### Features
423
+
424
+ - **abstract-eth:** support txn bulding for v4 wallet on eth chain ([d8aabea](https://github.com/BitGo/BitGoJS/commit/d8aabead0197072ee5b6c7fb11bd9c379606208d))
425
+
426
+ ### BREAKING CHANGES
427
+
428
+ - **abstract-eth:** Made ChainID mandatory for signAndBuild method
429
+
430
+ ## [20.1.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@20.1.5...@bitgo/abstract-eth@20.1.6) (2024-04-22)
431
+
432
+ ### Bug Fixes
433
+
434
+ - **sdk-coin-polygon:** fix send tx for polygon testnet ([172a081](https://github.com/BitGo/BitGoJS/commit/172a081cc4bec1eedf9876a438bc8828dc543d31))
435
+
436
+ ## [20.1.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@20.1.4...@bitgo/abstract-eth@20.1.5) (2024-04-17)
437
+
438
+ **Note:** Version bump only for package @bitgo/abstract-eth
439
+
440
+ ## [20.1.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@20.1.3...@bitgo/abstract-eth@20.1.4) (2024-04-12)
441
+
442
+ **Note:** Version bump only for package @bitgo/abstract-eth
443
+
444
+ ## [20.1.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@20.1.2...@bitgo/abstract-eth@20.1.3) (2024-04-10)
445
+
446
+ **Note:** Version bump only for package @bitgo/abstract-eth
447
+
448
+ ## [20.1.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@20.1.1...@bitgo/abstract-eth@20.1.2) (2024-04-09)
449
+
450
+ **Note:** Version bump only for package @bitgo/abstract-eth
451
+
452
+ ## [20.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@20.1.0...@bitgo/abstract-eth@20.1.1) (2024-04-08)
453
+
454
+ ### Bug Fixes
455
+
456
+ - **abstract-eth:** fix flush v4 tx building from hex ([f20dc10](https://github.com/BitGo/BitGoJS/commit/f20dc106e90222f27f0ee774fe9844fc0b55f77e))
457
+
458
+ # [20.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@20.0.0...@bitgo/abstract-eth@20.1.0) (2024-04-05)
459
+
460
+ ### Bug Fixes
461
+
462
+ - **abstract-eth:** error msg when fee is low than expected ([5adb4cd](https://github.com/BitGo/BitGoJS/commit/5adb4cd838790f0fb0f65a6bf3242f987ce3a7bc))
463
+ - **abstract-eth:** fix opeth:op transfers ([37a8f4f](https://github.com/BitGo/BitGoJS/commit/37a8f4f03325d76c32b4764381e3d2d7976dd414))
464
+
465
+ ### Features
466
+
467
+ - **abstract-eth:** support token flush directly from forwarderV4 contract ([f41a404](https://github.com/BitGo/BitGoJS/commit/f41a404bac7ed952b41effe88e818c6d602a9c22))
468
+
469
+ # [20.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@19.0.4...@bitgo/abstract-eth@20.0.0) (2024-03-28)
470
+
471
+ ### Features
472
+
473
+ - **root:** deprecate node 16 ([d3ec624](https://github.com/BitGo/BitGoJS/commit/d3ec6240bddae2a4ab7fa80c4a16efecc36210bd))
474
+
475
+ ### BREAKING CHANGES
476
+
477
+ - **root:** Node 16 is no longer supported in bitgojs.
478
+ TICKET: WP-1100
479
+
480
+ ## [19.0.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@19.0.3...@bitgo/abstract-eth@19.0.4) (2024-03-19)
481
+
482
+ ### Bug Fixes
483
+
484
+ - factor gas and eip1559 params on ethlike token recovery ([7744d83](https://github.com/BitGo/BitGoJS/commit/7744d831f7d974802501245312787b81f8abae47))
485
+
486
+ ## [19.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@19.0.2...@bitgo/abstract-eth@19.0.3) (2024-03-11)
487
+
488
+ ### Bug Fixes
489
+
490
+ - **abstract-eth:** fix recover method in case of 0 funds ([3738568](https://github.com/BitGo/BitGoJS/commit/37385687397f1f8c4522cc8e1f6843504d47eca8))
491
+ - **abstract-eth:** fixes issue related to gasestimate for ethlike ([190bdb2](https://github.com/BitGo/BitGoJS/commit/190bdb2b225fc2fd87fe536aeb77734f102b9984))
492
+
493
+ ## [19.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@19.0.1...@bitgo/abstract-eth@19.0.2) (2024-02-28)
494
+
495
+ ### Bug Fixes
496
+
497
+ - **abstract-eth:** fix recover token method for ethlike ([0c074a9](https://github.com/BitGo/BitGoJS/commit/0c074a923125c0528d7327e22153a351e5950d30))
498
+
499
+ ## [19.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@19.0.0...@bitgo/abstract-eth@19.0.1) (2024-02-22)
500
+
501
+ **Note:** Version bump only for package @bitgo/abstract-eth
502
+
503
+ # [19.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@19.0.0) (2024-02-19)
504
+
505
+ ### Bug Fixes
506
+
507
+ - **abstract-eth:** change tx encoding method for arb and op ([c11b0dd](https://github.com/BitGo/BitGoJS/commit/c11b0dd4705b0de4aaf9fff26eecf361d78b9f10))
508
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
509
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
510
+
511
+ ### Code Refactoring
512
+
513
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
514
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
515
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
516
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
517
+
518
+ ### Features
519
+
520
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
521
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
522
+ - **abstract-eth:** add v4 forwarder creation logic ([25faaa3](https://github.com/BitGo/BitGoJS/commit/25faaa33723feb2a4f7ce7209a64841b438a4367))
523
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
524
+
525
+ ### BREAKING CHANGES
526
+
527
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
528
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
529
+ getCustomChainName method is removed from Polygon class because a common
530
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
531
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
532
+ and needs to be passed to derive the Eth common object from the chainId.
533
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
534
+ it can be used for other EthLike coins. getBaseFactor method in Eth
535
+ and Polygon class returns number instead of string just to align with
536
+ AbstractEthLikeCoin
537
+ Ticket: WIN-1012
538
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
539
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
540
+ getCustomChainName method is removed from Polygon class because a common
541
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
542
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
543
+ and needs to be passed to derive the Eth common object from the chainId.
544
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
545
+ it can be used for other EthLike coins. getBaseFactor method in Eth
546
+ and Polygon class returns number instead of string just to align with
547
+ AbstractEthLikeCoin
548
+ Ticket: WIN-1012
549
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
550
+ a new class AbstractEthLikeNewCoins which will be having both multisig
551
+ and MPC related methods
552
+
553
+ TICKET: WIN-1021
554
+
555
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
556
+ class in abstract-eth module because TransactionBuilder in the
557
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
558
+ be added to the class that will inherit EthLikeToken class
559
+
560
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
561
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
562
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
563
+ support for hop transactions, batch transactions, etc
564
+
565
+ TICKET: WIN-1021
566
+
567
+ # [18.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@18.0.0) (2024-01-30)
568
+
569
+ ### Bug Fixes
570
+
571
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
572
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
573
+
574
+ ### Code Refactoring
575
+
576
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
577
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
578
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
579
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
580
+
581
+ ### Features
582
+
583
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
584
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
585
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
586
+
587
+ ### BREAKING CHANGES
588
+
589
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
590
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
591
+ getCustomChainName method is removed from Polygon class because a common
592
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
593
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
594
+ and needs to be passed to derive the Eth common object from the chainId.
595
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
596
+ it can be used for other EthLike coins. getBaseFactor method in Eth
597
+ and Polygon class returns number instead of string just to align with
598
+ AbstractEthLikeCoin
599
+ Ticket: WIN-1012
600
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
601
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
602
+ getCustomChainName method is removed from Polygon class because a common
603
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
604
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
605
+ and needs to be passed to derive the Eth common object from the chainId.
606
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
607
+ it can be used for other EthLike coins. getBaseFactor method in Eth
608
+ and Polygon class returns number instead of string just to align with
609
+ AbstractEthLikeCoin
610
+ Ticket: WIN-1012
611
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
612
+ a new class AbstractEthLikeNewCoins which will be having both multisig
613
+ and MPC related methods
614
+
615
+ TICKET: WIN-1021
616
+
617
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
618
+ class in abstract-eth module because TransactionBuilder in the
619
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
620
+ be added to the class that will inherit EthLikeToken class
621
+
622
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
623
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
624
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
625
+ support for hop transactions, batch transactions, etc
626
+
627
+ TICKET: WIN-1021
628
+
629
+ # [17.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@17.0.0) (2024-01-26)
630
+
631
+ ### Bug Fixes
632
+
633
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
634
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
635
+
636
+ ### Code Refactoring
637
+
638
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
639
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
640
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
641
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
642
+
643
+ ### Features
644
+
645
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
646
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
647
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
648
+
649
+ ### BREAKING CHANGES
650
+
651
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
652
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
653
+ getCustomChainName method is removed from Polygon class because a common
654
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
655
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
656
+ and needs to be passed to derive the Eth common object from the chainId.
657
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
658
+ it can be used for other EthLike coins. getBaseFactor method in Eth
659
+ and Polygon class returns number instead of string just to align with
660
+ AbstractEthLikeCoin
661
+ Ticket: WIN-1012
662
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
663
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
664
+ getCustomChainName method is removed from Polygon class because a common
665
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
666
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
667
+ and needs to be passed to derive the Eth common object from the chainId.
668
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
669
+ it can be used for other EthLike coins. getBaseFactor method in Eth
670
+ and Polygon class returns number instead of string just to align with
671
+ AbstractEthLikeCoin
672
+ Ticket: WIN-1012
673
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
674
+ a new class AbstractEthLikeNewCoins which will be having both multisig
675
+ and MPC related methods
676
+
677
+ TICKET: WIN-1021
678
+
679
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
680
+ class in abstract-eth module because TransactionBuilder in the
681
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
682
+ be added to the class that will inherit EthLikeToken class
683
+
684
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
685
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
686
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
687
+ support for hop transactions, batch transactions, etc
688
+
689
+ TICKET: WIN-1021
690
+
691
+ # [16.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@16.0.0) (2024-01-26)
692
+
693
+ ### Bug Fixes
694
+
695
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
696
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
697
+
698
+ ### Code Refactoring
699
+
700
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
701
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
702
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
703
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
704
+
705
+ ### Features
706
+
707
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
708
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
709
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
710
+
711
+ ### BREAKING CHANGES
712
+
713
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
714
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
715
+ getCustomChainName method is removed from Polygon class because a common
716
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
717
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
718
+ and needs to be passed to derive the Eth common object from the chainId.
719
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
720
+ it can be used for other EthLike coins. getBaseFactor method in Eth
721
+ and Polygon class returns number instead of string just to align with
722
+ AbstractEthLikeCoin
723
+ Ticket: WIN-1012
724
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
725
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
726
+ getCustomChainName method is removed from Polygon class because a common
727
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
728
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
729
+ and needs to be passed to derive the Eth common object from the chainId.
730
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
731
+ it can be used for other EthLike coins. getBaseFactor method in Eth
732
+ and Polygon class returns number instead of string just to align with
733
+ AbstractEthLikeCoin
734
+ Ticket: WIN-1012
735
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
736
+ a new class AbstractEthLikeNewCoins which will be having both multisig
737
+ and MPC related methods
738
+
739
+ TICKET: WIN-1021
740
+
741
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
742
+ class in abstract-eth module because TransactionBuilder in the
743
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
744
+ be added to the class that will inherit EthLikeToken class
745
+
746
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
747
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
748
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
749
+ support for hop transactions, batch transactions, etc
750
+
751
+ TICKET: WIN-1021
752
+
753
+ # [15.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@15.0.0) (2024-01-25)
754
+
755
+ ### Bug Fixes
756
+
757
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
758
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
759
+
760
+ ### Code Refactoring
761
+
762
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
763
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
764
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
765
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
766
+
767
+ ### Features
768
+
769
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
770
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
771
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
772
+
773
+ ### BREAKING CHANGES
774
+
775
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
776
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
777
+ getCustomChainName method is removed from Polygon class because a common
778
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
779
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
780
+ and needs to be passed to derive the Eth common object from the chainId.
781
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
782
+ it can be used for other EthLike coins. getBaseFactor method in Eth
783
+ and Polygon class returns number instead of string just to align with
784
+ AbstractEthLikeCoin
785
+ Ticket: WIN-1012
786
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
787
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
788
+ getCustomChainName method is removed from Polygon class because a common
789
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
790
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
791
+ and needs to be passed to derive the Eth common object from the chainId.
792
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
793
+ it can be used for other EthLike coins. getBaseFactor method in Eth
794
+ and Polygon class returns number instead of string just to align with
795
+ AbstractEthLikeCoin
796
+ Ticket: WIN-1012
797
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
798
+ a new class AbstractEthLikeNewCoins which will be having both multisig
799
+ and MPC related methods
800
+
801
+ TICKET: WIN-1021
802
+
803
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
804
+ class in abstract-eth module because TransactionBuilder in the
805
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
806
+ be added to the class that will inherit EthLikeToken class
807
+
808
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
809
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
810
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
811
+ support for hop transactions, batch transactions, etc
812
+
813
+ TICKET: WIN-1021
814
+
815
+ # [14.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@14.0.0) (2024-01-22)
816
+
817
+ ### Bug Fixes
818
+
819
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
820
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
821
+
822
+ ### Code Refactoring
823
+
824
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
825
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
826
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
827
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
828
+
829
+ ### Features
830
+
831
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
832
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
833
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
834
+
835
+ ### BREAKING CHANGES
836
+
837
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
838
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
839
+ getCustomChainName method is removed from Polygon class because a common
840
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
841
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
842
+ and needs to be passed to derive the Eth common object from the chainId.
843
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
844
+ it can be used for other EthLike coins. getBaseFactor method in Eth
845
+ and Polygon class returns number instead of string just to align with
846
+ AbstractEthLikeCoin
847
+ Ticket: WIN-1012
848
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
849
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
850
+ getCustomChainName method is removed from Polygon class because a common
851
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
852
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
853
+ and needs to be passed to derive the Eth common object from the chainId.
854
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
855
+ it can be used for other EthLike coins. getBaseFactor method in Eth
856
+ and Polygon class returns number instead of string just to align with
857
+ AbstractEthLikeCoin
858
+ Ticket: WIN-1012
859
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
860
+ a new class AbstractEthLikeNewCoins which will be having both multisig
861
+ and MPC related methods
862
+
863
+ TICKET: WIN-1021
864
+
865
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
866
+ class in abstract-eth module because TransactionBuilder in the
867
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
868
+ be added to the class that will inherit EthLikeToken class
869
+
870
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
871
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
872
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
873
+ support for hop transactions, batch transactions, etc
874
+
875
+ TICKET: WIN-1021
876
+
877
+ # [13.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@13.0.0) (2024-01-09)
878
+
879
+ ### Bug Fixes
880
+
881
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
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:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
888
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
889
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
890
+
891
+ ### Features
892
+
893
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
894
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
895
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
896
+
897
+ ### BREAKING CHANGES
898
+
899
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
900
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
901
+ getCustomChainName method is removed from Polygon class because a common
902
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
903
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
904
+ and needs to be passed to derive the Eth common object from the chainId.
905
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
906
+ it can be used for other EthLike coins. getBaseFactor method in Eth
907
+ and Polygon class returns number instead of string just to align with
908
+ AbstractEthLikeCoin
909
+ Ticket: WIN-1012
910
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
911
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
912
+ getCustomChainName method is removed from Polygon class because a common
913
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
914
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
915
+ and needs to be passed to derive the Eth common object from the chainId.
916
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
917
+ it can be used for other EthLike coins. getBaseFactor method in Eth
918
+ and Polygon class returns number instead of string just to align with
919
+ AbstractEthLikeCoin
920
+ Ticket: WIN-1012
921
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
922
+ a new class AbstractEthLikeNewCoins which will be having both multisig
923
+ and MPC related methods
924
+
925
+ TICKET: WIN-1021
926
+
927
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
928
+ class in abstract-eth module because TransactionBuilder in the
929
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
930
+ be added to the class that will inherit EthLikeToken class
931
+
932
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
933
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
934
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
935
+ support for hop transactions, batch transactions, etc
936
+
937
+ TICKET: WIN-1021
938
+
939
+ # [12.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@12.0.0) (2024-01-03)
940
+
941
+ ### Bug Fixes
942
+
943
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
944
+
945
+ ### Code Refactoring
946
+
947
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
948
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
949
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
950
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
951
+
952
+ ### Features
953
+
954
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
955
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
956
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
957
+
958
+ ### BREAKING CHANGES
959
+
960
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
961
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
962
+ getCustomChainName method is removed from Polygon class because a common
963
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
964
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
965
+ and needs to be passed to derive the Eth common object from the chainId.
966
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
967
+ it can be used for other EthLike coins. getBaseFactor method in Eth
968
+ and Polygon class returns number instead of string just to align with
969
+ AbstractEthLikeCoin
970
+ Ticket: WIN-1012
971
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
972
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
973
+ getCustomChainName method is removed from Polygon class because a common
974
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
975
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
976
+ and needs to be passed to derive the Eth common object from the chainId.
977
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
978
+ it can be used for other EthLike coins. getBaseFactor method in Eth
979
+ and Polygon class returns number instead of string just to align with
980
+ AbstractEthLikeCoin
981
+ Ticket: WIN-1012
982
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
983
+ a new class AbstractEthLikeNewCoins which will be having both multisig
984
+ and MPC related methods
985
+
986
+ TICKET: WIN-1021
987
+
988
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
989
+ class in abstract-eth module because TransactionBuilder in the
990
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
991
+ be added to the class that will inherit EthLikeToken class
992
+
993
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
994
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
995
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
996
+ support for hop transactions, batch transactions, etc
997
+
998
+ TICKET: WIN-1021
999
+
1000
+ # [11.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@11.0.0) (2023-12-18)
1001
+
1002
+ ### Bug Fixes
1003
+
1004
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1005
+
1006
+ ### Code Refactoring
1007
+
1008
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
1009
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
1010
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1011
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
1012
+
1013
+ ### Features
1014
+
1015
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
1016
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
1017
+
1018
+ ### BREAKING CHANGES
1019
+
1020
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1021
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1022
+ getCustomChainName method is removed from Polygon class because a common
1023
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1024
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1025
+ and needs to be passed to derive the Eth common object from the chainId.
1026
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1027
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1028
+ and Polygon class returns number instead of string just to align with
1029
+ AbstractEthLikeCoin
1030
+ Ticket: WIN-1012
1031
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1032
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1033
+ getCustomChainName method is removed from Polygon class because a common
1034
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1035
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1036
+ and needs to be passed to derive the Eth common object from the chainId.
1037
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1038
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1039
+ and Polygon class returns number instead of string just to align with
1040
+ AbstractEthLikeCoin
1041
+ Ticket: WIN-1012
1042
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
1043
+ a new class AbstractEthLikeNewCoins which will be having both multisig
1044
+ and MPC related methods
1045
+
1046
+ TICKET: WIN-1021
1047
+
1048
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
1049
+ class in abstract-eth module because TransactionBuilder in the
1050
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
1051
+ be added to the class that will inherit EthLikeToken class
1052
+
1053
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
1054
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
1055
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
1056
+ support for hop transactions, batch transactions, etc
1057
+
1058
+ TICKET: WIN-1021
1059
+
1060
+ # [10.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@10.0.0) (2023-12-12)
1061
+
1062
+ ### Bug Fixes
1063
+
1064
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1065
+
1066
+ ### Code Refactoring
1067
+
1068
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
1069
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
1070
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1071
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
1072
+
1073
+ ### Features
1074
+
1075
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
1076
+
1077
+ ### BREAKING CHANGES
1078
+
1079
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1080
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1081
+ getCustomChainName method is removed from Polygon class because a common
1082
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1083
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1084
+ and needs to be passed to derive the Eth common object from the chainId.
1085
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1086
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1087
+ and Polygon class returns number instead of string just to align with
1088
+ AbstractEthLikeCoin
1089
+ Ticket: WIN-1012
1090
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1091
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1092
+ getCustomChainName method is removed from Polygon class because a common
1093
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1094
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1095
+ and needs to be passed to derive the Eth common object from the chainId.
1096
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1097
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1098
+ and Polygon class returns number instead of string just to align with
1099
+ AbstractEthLikeCoin
1100
+ Ticket: WIN-1012
1101
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
1102
+ a new class AbstractEthLikeNewCoins which will be having both multisig
1103
+ and MPC related methods
1104
+
1105
+ TICKET: WIN-1021
1106
+
1107
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
1108
+ class in abstract-eth module because TransactionBuilder in the
1109
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
1110
+ be added to the class that will inherit EthLikeToken class
1111
+
1112
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
1113
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
1114
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
1115
+ support for hop transactions, batch transactions, etc
1116
+
1117
+ TICKET: WIN-1021
1118
+
1119
+ # [9.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@9.0.0) (2023-12-09)
1120
+
1121
+ ### Bug Fixes
1122
+
1123
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1124
+
1125
+ ### Code Refactoring
1126
+
1127
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
1128
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
1129
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1130
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
1131
+
1132
+ ### Features
1133
+
1134
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
1135
+
1136
+ ### BREAKING CHANGES
1137
+
1138
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1139
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1140
+ getCustomChainName method is removed from Polygon class because a common
1141
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1142
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1143
+ and needs to be passed to derive the Eth common object from the chainId.
1144
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1145
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1146
+ and Polygon class returns number instead of string just to align with
1147
+ AbstractEthLikeCoin
1148
+ Ticket: WIN-1012
1149
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1150
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1151
+ getCustomChainName method is removed from Polygon class because a common
1152
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1153
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1154
+ and needs to be passed to derive the Eth common object from the chainId.
1155
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1156
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1157
+ and Polygon class returns number instead of string just to align with
1158
+ AbstractEthLikeCoin
1159
+ Ticket: WIN-1012
1160
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
1161
+ a new class AbstractEthLikeNewCoins which will be having both multisig
1162
+ and MPC related methods
1163
+
1164
+ TICKET: WIN-1021
1165
+
1166
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
1167
+ class in abstract-eth module because TransactionBuilder in the
1168
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
1169
+ be added to the class that will inherit EthLikeToken class
1170
+
1171
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
1172
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
1173
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
1174
+ support for hop transactions, batch transactions, etc
1175
+
1176
+ TICKET: WIN-1021
1177
+
1178
+ # [8.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@8.0.0) (2023-12-05)
1179
+
1180
+ ### Bug Fixes
1181
+
1182
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1183
+
1184
+ ### Code Refactoring
1185
+
1186
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
1187
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
1188
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1189
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
1190
+
1191
+ ### Features
1192
+
1193
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
1194
+
1195
+ ### BREAKING CHANGES
1196
+
1197
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1198
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1199
+ getCustomChainName method is removed from Polygon class because a common
1200
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1201
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1202
+ and needs to be passed to derive the Eth common object from the chainId.
1203
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1204
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1205
+ and Polygon class returns number instead of string just to align with
1206
+ AbstractEthLikeCoin
1207
+ Ticket: WIN-1012
1208
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1209
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1210
+ getCustomChainName method is removed from Polygon class because a common
1211
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1212
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1213
+ and needs to be passed to derive the Eth common object from the chainId.
1214
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1215
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1216
+ and Polygon class returns number instead of string just to align with
1217
+ AbstractEthLikeCoin
1218
+ Ticket: WIN-1012
1219
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
1220
+ a new class AbstractEthLikeNewCoins which will be having both multisig
1221
+ and MPC related methods
1222
+
1223
+ TICKET: WIN-1021
1224
+
1225
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
1226
+ class in abstract-eth module because TransactionBuilder in the
1227
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
1228
+ be added to the class that will inherit EthLikeToken class
1229
+
1230
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
1231
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
1232
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
1233
+ support for hop transactions, batch transactions, etc
1234
+
1235
+ TICKET: WIN-1021
1236
+
1237
+ # [7.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@7.0.0) (2023-11-28)
1238
+
1239
+ ### Bug Fixes
1240
+
1241
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1242
+
1243
+ ### Code Refactoring
1244
+
1245
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
1246
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
1247
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1248
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
1249
+
1250
+ ### Features
1251
+
1252
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
1253
+
1254
+ ### BREAKING CHANGES
1255
+
1256
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1257
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1258
+ getCustomChainName method is removed from Polygon class because a common
1259
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1260
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1261
+ and needs to be passed to derive the Eth common object from the chainId.
1262
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1263
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1264
+ and Polygon class returns number instead of string just to align with
1265
+ AbstractEthLikeCoin
1266
+ Ticket: WIN-1012
1267
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1268
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1269
+ getCustomChainName method is removed from Polygon class because a common
1270
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1271
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1272
+ and needs to be passed to derive the Eth common object from the chainId.
1273
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1274
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1275
+ and Polygon class returns number instead of string just to align with
1276
+ AbstractEthLikeCoin
1277
+ Ticket: WIN-1012
1278
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
1279
+ a new class AbstractEthLikeNewCoins which will be having both multisig
1280
+ and MPC related methods
1281
+
1282
+ TICKET: WIN-1021
1283
+
1284
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
1285
+ class in abstract-eth module because TransactionBuilder in the
1286
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
1287
+ be added to the class that will inherit EthLikeToken class
1288
+
1289
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
1290
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
1291
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
1292
+ support for hop transactions, batch transactions, etc
1293
+
1294
+ TICKET: WIN-1021
1295
+
1296
+ # [6.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@6.0.0) (2023-11-24)
1297
+
1298
+ ### Bug Fixes
1299
+
1300
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1301
+
1302
+ ### Code Refactoring
1303
+
1304
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
1305
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
1306
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1307
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
1308
+
1309
+ ### Features
1310
+
1311
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
1312
+
1313
+ ### BREAKING CHANGES
1314
+
1315
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1316
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1317
+ getCustomChainName method is removed from Polygon class because a common
1318
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1319
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1320
+ and needs to be passed to derive the Eth common object from the chainId.
1321
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1322
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1323
+ and Polygon class returns number instead of string just to align with
1324
+ AbstractEthLikeCoin
1325
+ Ticket: WIN-1012
1326
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1327
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1328
+ getCustomChainName method is removed from Polygon class because a common
1329
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1330
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1331
+ and needs to be passed to derive the Eth common object from the chainId.
1332
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1333
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1334
+ and Polygon class returns number instead of string just to align with
1335
+ AbstractEthLikeCoin
1336
+ Ticket: WIN-1012
1337
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
1338
+ a new class AbstractEthLikeNewCoins which will be having both multisig
1339
+ and MPC related methods
1340
+
1341
+ TICKET: WIN-1021
1342
+
1343
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
1344
+ class in abstract-eth module because TransactionBuilder in the
1345
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
1346
+ be added to the class that will inherit EthLikeToken class
1347
+
1348
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
1349
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
1350
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
1351
+ support for hop transactions, batch transactions, etc
1352
+
1353
+ TICKET: WIN-1021
1354
+
1355
+ # [5.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@5.0.0) (2023-11-17)
1356
+
1357
+ ### Bug Fixes
1358
+
1359
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1360
+
1361
+ ### Code Refactoring
1362
+
1363
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
1364
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
1365
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1366
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
1367
+
1368
+ ### Features
1369
+
1370
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
1371
+
1372
+ ### BREAKING CHANGES
1373
+
1374
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1375
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1376
+ getCustomChainName method is removed from Polygon class because a common
1377
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1378
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1379
+ and needs to be passed to derive the Eth common object from the chainId.
1380
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1381
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1382
+ and Polygon class returns number instead of string just to align with
1383
+ AbstractEthLikeCoin
1384
+ Ticket: WIN-1012
1385
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1386
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1387
+ getCustomChainName method is removed from Polygon class because a common
1388
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1389
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1390
+ and needs to be passed to derive the Eth common object from the chainId.
1391
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1392
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1393
+ and Polygon class returns number instead of string just to align with
1394
+ AbstractEthLikeCoin
1395
+ Ticket: WIN-1012
1396
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
1397
+ a new class AbstractEthLikeNewCoins which will be having both multisig
1398
+ and MPC related methods
1399
+
1400
+ TICKET: WIN-1021
1401
+
1402
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
1403
+ class in abstract-eth module because TransactionBuilder in the
1404
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
1405
+ be added to the class that will inherit EthLikeToken class
1406
+
1407
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
1408
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
1409
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
1410
+ support for hop transactions, batch transactions, etc
1411
+
1412
+ TICKET: WIN-1021
1413
+
1414
+ # [4.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@4.0.0) (2023-11-13)
1415
+
1416
+ ### Code Refactoring
1417
+
1418
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
1419
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1420
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
1421
+
1422
+ ### Features
1423
+
1424
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
1425
+
1426
+ ### BREAKING CHANGES
1427
+
1428
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1429
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1430
+ getCustomChainName method is removed from Polygon class because a common
1431
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1432
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1433
+ and needs to be passed to derive the Eth common object from the chainId.
1434
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1435
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1436
+ and Polygon class returns number instead of string just to align with
1437
+ AbstractEthLikeCoin
1438
+ Ticket: WIN-1012
1439
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
1440
+ a new class AbstractEthLikeNewCoins which will be having both multisig
1441
+ and MPC related methods
1442
+
1443
+ TICKET: WIN-1021
1444
+
1445
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
1446
+ class in abstract-eth module because TransactionBuilder in the
1447
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
1448
+ be added to the class that will inherit EthLikeToken class
1449
+
1450
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
1451
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
1452
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
1453
+ support for hop transactions, batch transactions, etc
1454
+
1455
+ TICKET: WIN-1021
1456
+
1457
+ # [3.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@3.0.0) (2023-11-13)
1458
+
1459
+ ### Code Refactoring
1460
+
1461
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
1462
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1463
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
1464
+
1465
+ ### Features
1466
+
1467
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
1468
+
1469
+ ### BREAKING CHANGES
1470
+
1471
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1472
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1473
+ getCustomChainName method is removed from Polygon class because a common
1474
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1475
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1476
+ and needs to be passed to derive the Eth common object from the chainId.
1477
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1478
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1479
+ and Polygon class returns number instead of string just to align with
1480
+ AbstractEthLikeCoin
1481
+ Ticket: WIN-1012
1482
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
1483
+ a new class AbstractEthLikeNewCoins which will be having both multisig
1484
+ and MPC related methods
1485
+
1486
+ TICKET: WIN-1021
1487
+
1488
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
1489
+ class in abstract-eth module because TransactionBuilder in the
1490
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
1491
+ be added to the class that will inherit EthLikeToken class
1492
+
1493
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
1494
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
1495
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
1496
+ support for hop transactions, batch transactions, etc
1497
+
1498
+ TICKET: WIN-1021
1499
+
1500
+ # [2.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@2.0.0) (2023-11-13)
1501
+
1502
+ ### Code Refactoring
1503
+
1504
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
1505
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1506
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
1507
+
1508
+ ### Features
1509
+
1510
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
1511
+
1512
+ ### BREAKING CHANGES
1513
+
1514
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1515
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1516
+ getCustomChainName method is removed from Polygon class because a common
1517
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1518
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1519
+ and needs to be passed to derive the Eth common object from the chainId.
1520
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1521
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1522
+ and Polygon class returns number instead of string just to align with
1523
+ AbstractEthLikeCoin
1524
+ Ticket: WIN-1012
1525
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
1526
+ a new class AbstractEthLikeNewCoins which will be having both multisig
1527
+ and MPC related methods
1528
+
1529
+ TICKET: WIN-1021
1530
+
1531
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
1532
+ class in abstract-eth module because TransactionBuilder in the
1533
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
1534
+ be added to the class that will inherit EthLikeToken class
1535
+
1536
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
1537
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
1538
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
1539
+ support for hop transactions, batch transactions, etc
1540
+
1541
+ TICKET: WIN-1021
1542
+
1543
+ # [1.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.6.0) (2023-10-20)
1544
+
1545
+ ### Features
1546
+
1547
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
1548
+
1549
+ # [1.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.5.0) (2023-10-18)
1550
+
1551
+ ### Features
1552
+
1553
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
1554
+
1555
+ ## [1.4.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.11) (2023-09-25)
1556
+
1557
+ **Note:** Version bump only for package @bitgo/abstract-eth
1558
+
1559
+ ## [1.4.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.10) (2023-09-09)
1560
+
1561
+ **Note:** Version bump only for package @bitgo/abstract-eth
1562
+
1563
+ ## [1.4.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.9) (2023-09-09)
1564
+
1565
+ **Note:** Version bump only for package @bitgo/abstract-eth
1566
+
1567
+ ## [1.4.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.8) (2023-09-07)
1568
+
1569
+ **Note:** Version bump only for package @bitgo/abstract-eth
1570
+
1571
+ ## [1.4.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.7) (2023-09-05)
1572
+
1573
+ **Note:** Version bump only for package @bitgo/abstract-eth
1574
+
1575
+ ## [1.4.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.6) (2023-09-01)
1576
+
1577
+ **Note:** Version bump only for package @bitgo/abstract-eth
1578
+
1579
+ ## [1.4.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.5) (2023-08-29)
1580
+
1581
+ **Note:** Version bump only for package @bitgo/abstract-eth
1582
+
1583
+ ## [1.4.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.4) (2023-08-25)
1584
+
1585
+ **Note:** Version bump only for package @bitgo/abstract-eth
1586
+
1587
+ ## [1.4.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.3) (2023-08-24)
1588
+
1589
+ **Note:** Version bump only for package @bitgo/abstract-eth
1590
+
1591
+ ## [1.4.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.2) (2023-08-16)
1592
+
1593
+ **Note:** Version bump only for package @bitgo/abstract-eth
1594
+
1595
+ ## [1.4.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.1) (2023-08-16)
1596
+
1597
+ **Note:** Version bump only for package @bitgo/abstract-eth
1598
+
1599
+ # [1.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.28...@bitgo/abstract-eth@1.4.0) (2023-08-04)
1600
+
1601
+ ### Features
1602
+
1603
+ - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
1604
+ - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
1605
+
1606
+ # [1.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.28...@bitgo/abstract-eth@1.3.0) (2023-07-28)
1607
+
1608
+ ### Features
1609
+
1610
+ - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
1611
+ - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
1612
+
1613
+ ## [1.2.28](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.27...@bitgo/abstract-eth@1.2.28) (2023-07-18)
1614
+
1615
+ **Note:** Version bump only for package @bitgo/abstract-eth
1616
+
1617
+ ## [1.2.27](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.26...@bitgo/abstract-eth@1.2.27) (2023-06-21)
1618
+
1619
+ **Note:** Version bump only for package @bitgo/abstract-eth
1620
+
1621
+ ## [1.2.26](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.25...@bitgo/abstract-eth@1.2.26) (2023-06-14)
1622
+
1623
+ **Note:** Version bump only for package @bitgo/abstract-eth
1624
+
1625
+ ## [1.2.25](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.24...@bitgo/abstract-eth@1.2.25) (2023-06-13)
1626
+
1627
+ **Note:** Version bump only for package @bitgo/abstract-eth
1628
+
1629
+ ## [1.2.24](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.23...@bitgo/abstract-eth@1.2.24) (2023-06-07)
1630
+
1631
+ **Note:** Version bump only for package @bitgo/abstract-eth
1632
+
1633
+ ## [1.2.23](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.22...@bitgo/abstract-eth@1.2.23) (2023-06-05)
1634
+
1635
+ **Note:** Version bump only for package @bitgo/abstract-eth
1636
+
1637
+ ## [1.2.22](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.21...@bitgo/abstract-eth@1.2.22) (2023-05-25)
1638
+
1639
+ **Note:** Version bump only for package @bitgo/abstract-eth
1640
+
1641
+ ## [1.2.21](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.20...@bitgo/abstract-eth@1.2.21) (2023-05-17)
1642
+
1643
+ **Note:** Version bump only for package @bitgo/abstract-eth
1644
+
1645
+ ## [1.2.20](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.19...@bitgo/abstract-eth@1.2.20) (2023-05-10)
1646
+
1647
+ **Note:** Version bump only for package @bitgo/abstract-eth
1648
+
1649
+ ## [1.2.19](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.18...@bitgo/abstract-eth@1.2.19) (2023-05-03)
1650
+
1651
+ **Note:** Version bump only for package @bitgo/abstract-eth
1652
+
1653
+ ## [1.2.18](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.17...@bitgo/abstract-eth@1.2.18) (2023-04-25)
1654
+
1655
+ **Note:** Version bump only for package @bitgo/abstract-eth
1656
+
1657
+ ## [1.2.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.16...@bitgo/abstract-eth@1.2.17) (2023-04-20)
1658
+
1659
+ **Note:** Version bump only for package @bitgo/abstract-eth
1660
+
1661
+ ## [1.2.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.15...@bitgo/abstract-eth@1.2.16) (2023-04-13)
1662
+
1663
+ **Note:** Version bump only for package @bitgo/abstract-eth
1664
+
1665
+ ## [1.2.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.14...@bitgo/abstract-eth@1.2.15) (2023-02-17)
1666
+
1667
+ **Note:** Version bump only for package @bitgo/abstract-eth
1668
+
1669
+ ## [1.2.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.11...@bitgo/abstract-eth@1.2.14) (2023-02-16)
1670
+
1671
+ **Note:** Version bump only for package @bitgo/abstract-eth
1672
+
1673
+ ## [1.2.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.11...@bitgo/abstract-eth@1.2.13) (2023-02-08)
1674
+
1675
+ **Note:** Version bump only for package @bitgo/abstract-eth
1676
+
1677
+ ## [1.2.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.11...@bitgo/abstract-eth@1.2.12) (2023-01-30)
1678
+
1679
+ **Note:** Version bump only for package @bitgo/abstract-eth
1680
+
1681
+ ## [1.2.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.10...@bitgo/abstract-eth@1.2.11) (2023-01-25)
1682
+
1683
+ **Note:** Version bump only for package @bitgo/abstract-eth
1684
+
6
1685
  ## [1.2.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.9...@bitgo/abstract-eth@1.2.10) (2022-12-23)
7
1686
 
8
1687
  **Note:** Version bump only for package @bitgo/abstract-eth