@bitgo-beta/abstract-eth 1.2.3-alpha.22 → 1.2.3-alpha.221

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