@bitgo-beta/abstract-eth 1.2.3-alpha.26 → 1.2.3-alpha.260

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