@bitgo-beta/abstract-eth 1.0.2-beta.118 → 1.0.2-beta.1180

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