@bitgo-beta/abstract-eth 1.2.3-alpha.24 → 1.2.3-alpha.240

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