@bitgo-beta/abstract-eth 1.0.2-beta.52 → 1.0.2-beta.521

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 (57) hide show
  1. package/CHANGELOG.md +1233 -0
  2. package/dist/src/abstractEthLikeCoin.d.ts +10 -5
  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 +625 -0
  6. package/dist/src/abstractEthLikeNewCoins.d.ts.map +1 -0
  7. package/dist/src/abstractEthLikeNewCoins.js +1833 -0
  8. package/dist/src/ethLikeToken.d.ts +34 -4
  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 +131 -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 +239 -0
  30. package/dist/src/lib/transactionBuilder.d.ts.map +1 -0
  31. package/dist/src/lib/transactionBuilder.js +712 -0
  32. package/dist/src/lib/transferBuilder.d.ts +67 -0
  33. package/dist/src/lib/transferBuilder.d.ts.map +1 -0
  34. package/dist/src/lib/transferBuilder.js +246 -0
  35. package/dist/src/lib/transferBuilders/baseNFTTransferBuilder.d.ts +52 -0
  36. package/dist/src/lib/transferBuilders/baseNFTTransferBuilder.d.ts.map +1 -0
  37. package/dist/src/lib/transferBuilders/baseNFTTransferBuilder.js +114 -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 +260 -0
  51. package/dist/src/lib/utils.d.ts.map +1 -0
  52. package/dist/src/lib/utils.js +650 -0
  53. package/dist/src/lib/walletUtil.d.ts +28 -0
  54. package/dist/src/lib/walletUtil.d.ts.map +1 -0
  55. package/dist/src/lib/walletUtil.js +31 -0
  56. package/dist/tsconfig.tsbuildinfo +1 -7914
  57. package/package.json +24 -9
package/CHANGELOG.md CHANGED
@@ -3,6 +3,1239 @@
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
+ ## [19.0.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@19.0.3...@bitgo/abstract-eth@19.0.4) (2024-03-19)
7
+
8
+ ### Bug Fixes
9
+
10
+ - factor gas and eip1559 params on ethlike token recovery ([7744d83](https://github.com/BitGo/BitGoJS/commit/7744d831f7d974802501245312787b81f8abae47))
11
+
12
+ ## [19.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@19.0.2...@bitgo/abstract-eth@19.0.3) (2024-03-11)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **abstract-eth:** fix recover method in case of 0 funds ([3738568](https://github.com/BitGo/BitGoJS/commit/37385687397f1f8c4522cc8e1f6843504d47eca8))
17
+ - **abstract-eth:** fixes issue related to gasestimate for ethlike ([190bdb2](https://github.com/BitGo/BitGoJS/commit/190bdb2b225fc2fd87fe536aeb77734f102b9984))
18
+
19
+ ## [19.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@19.0.1...@bitgo/abstract-eth@19.0.2) (2024-02-28)
20
+
21
+ ### Bug Fixes
22
+
23
+ - **abstract-eth:** fix recover token method for ethlike ([0c074a9](https://github.com/BitGo/BitGoJS/commit/0c074a923125c0528d7327e22153a351e5950d30))
24
+
25
+ ## [19.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@19.0.0...@bitgo/abstract-eth@19.0.1) (2024-02-22)
26
+
27
+ **Note:** Version bump only for package @bitgo/abstract-eth
28
+
29
+ # [19.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@19.0.0) (2024-02-19)
30
+
31
+ ### Bug Fixes
32
+
33
+ - **abstract-eth:** change tx encoding method for arb and op ([c11b0dd](https://github.com/BitGo/BitGoJS/commit/c11b0dd4705b0de4aaf9fff26eecf361d78b9f10))
34
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
35
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
36
+
37
+ ### Code Refactoring
38
+
39
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
40
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
41
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
42
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
43
+
44
+ ### Features
45
+
46
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
47
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
48
+ - **abstract-eth:** add v4 forwarder creation logic ([25faaa3](https://github.com/BitGo/BitGoJS/commit/25faaa33723feb2a4f7ce7209a64841b438a4367))
49
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
50
+
51
+ ### BREAKING CHANGES
52
+
53
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
54
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
55
+ getCustomChainName method is removed from Polygon class because a common
56
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
57
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
58
+ and needs to be passed to derive the Eth common object from the chainId.
59
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
60
+ it can be used for other EthLike coins. getBaseFactor method in Eth
61
+ and Polygon class returns number instead of string just to align with
62
+ AbstractEthLikeCoin
63
+ Ticket: WIN-1012
64
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
65
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
66
+ getCustomChainName method is removed from Polygon class because a common
67
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
68
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
69
+ and needs to be passed to derive the Eth common object from the chainId.
70
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
71
+ it can be used for other EthLike coins. getBaseFactor method in Eth
72
+ and Polygon class returns number instead of string just to align with
73
+ AbstractEthLikeCoin
74
+ Ticket: WIN-1012
75
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
76
+ a new class AbstractEthLikeNewCoins which will be having both multisig
77
+ and MPC related methods
78
+
79
+ TICKET: WIN-1021
80
+
81
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
82
+ class in abstract-eth module because TransactionBuilder in the
83
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
84
+ be added to the class that will inherit EthLikeToken class
85
+
86
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
87
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
88
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
89
+ support for hop transactions, batch transactions, etc
90
+
91
+ TICKET: WIN-1021
92
+
93
+ # [18.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@18.0.0) (2024-01-30)
94
+
95
+ ### Bug Fixes
96
+
97
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
98
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
99
+
100
+ ### Code Refactoring
101
+
102
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
103
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
104
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
105
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
106
+
107
+ ### Features
108
+
109
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
110
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
111
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
112
+
113
+ ### BREAKING CHANGES
114
+
115
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
116
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
117
+ getCustomChainName method is removed from Polygon class because a common
118
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
119
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
120
+ and needs to be passed to derive the Eth common object from the chainId.
121
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
122
+ it can be used for other EthLike coins. getBaseFactor method in Eth
123
+ and Polygon class returns number instead of string just to align with
124
+ AbstractEthLikeCoin
125
+ Ticket: WIN-1012
126
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
127
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
128
+ getCustomChainName method is removed from Polygon class because a common
129
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
130
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
131
+ and needs to be passed to derive the Eth common object from the chainId.
132
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
133
+ it can be used for other EthLike coins. getBaseFactor method in Eth
134
+ and Polygon class returns number instead of string just to align with
135
+ AbstractEthLikeCoin
136
+ Ticket: WIN-1012
137
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
138
+ a new class AbstractEthLikeNewCoins which will be having both multisig
139
+ and MPC related methods
140
+
141
+ TICKET: WIN-1021
142
+
143
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
144
+ class in abstract-eth module because TransactionBuilder in the
145
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
146
+ be added to the class that will inherit EthLikeToken class
147
+
148
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
149
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
150
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
151
+ support for hop transactions, batch transactions, etc
152
+
153
+ TICKET: WIN-1021
154
+
155
+ # [17.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@17.0.0) (2024-01-26)
156
+
157
+ ### Bug Fixes
158
+
159
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
160
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
161
+
162
+ ### Code Refactoring
163
+
164
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
165
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
166
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
167
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
168
+
169
+ ### Features
170
+
171
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
172
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
173
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
174
+
175
+ ### BREAKING CHANGES
176
+
177
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
178
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
179
+ getCustomChainName method is removed from Polygon class because a common
180
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
181
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
182
+ and needs to be passed to derive the Eth common object from the chainId.
183
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
184
+ it can be used for other EthLike coins. getBaseFactor method in Eth
185
+ and Polygon class returns number instead of string just to align with
186
+ AbstractEthLikeCoin
187
+ Ticket: WIN-1012
188
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
189
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
190
+ getCustomChainName method is removed from Polygon class because a common
191
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
192
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
193
+ and needs to be passed to derive the Eth common object from the chainId.
194
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
195
+ it can be used for other EthLike coins. getBaseFactor method in Eth
196
+ and Polygon class returns number instead of string just to align with
197
+ AbstractEthLikeCoin
198
+ Ticket: WIN-1012
199
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
200
+ a new class AbstractEthLikeNewCoins which will be having both multisig
201
+ and MPC related methods
202
+
203
+ TICKET: WIN-1021
204
+
205
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
206
+ class in abstract-eth module because TransactionBuilder in the
207
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
208
+ be added to the class that will inherit EthLikeToken class
209
+
210
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
211
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
212
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
213
+ support for hop transactions, batch transactions, etc
214
+
215
+ TICKET: WIN-1021
216
+
217
+ # [16.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@16.0.0) (2024-01-26)
218
+
219
+ ### Bug Fixes
220
+
221
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
222
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
223
+
224
+ ### Code Refactoring
225
+
226
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
227
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
228
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
229
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
230
+
231
+ ### Features
232
+
233
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
234
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
235
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
236
+
237
+ ### BREAKING CHANGES
238
+
239
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
240
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
241
+ getCustomChainName method is removed from Polygon class because a common
242
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
243
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
244
+ and needs to be passed to derive the Eth common object from the chainId.
245
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
246
+ it can be used for other EthLike coins. getBaseFactor method in Eth
247
+ and Polygon class returns number instead of string just to align with
248
+ AbstractEthLikeCoin
249
+ Ticket: WIN-1012
250
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
251
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
252
+ getCustomChainName method is removed from Polygon class because a common
253
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
254
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
255
+ and needs to be passed to derive the Eth common object from the chainId.
256
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
257
+ it can be used for other EthLike coins. getBaseFactor method in Eth
258
+ and Polygon class returns number instead of string just to align with
259
+ AbstractEthLikeCoin
260
+ Ticket: WIN-1012
261
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
262
+ a new class AbstractEthLikeNewCoins which will be having both multisig
263
+ and MPC related methods
264
+
265
+ TICKET: WIN-1021
266
+
267
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
268
+ class in abstract-eth module because TransactionBuilder in the
269
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
270
+ be added to the class that will inherit EthLikeToken class
271
+
272
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
273
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
274
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
275
+ support for hop transactions, batch transactions, etc
276
+
277
+ TICKET: WIN-1021
278
+
279
+ # [15.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@15.0.0) (2024-01-25)
280
+
281
+ ### Bug Fixes
282
+
283
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
284
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
285
+
286
+ ### Code Refactoring
287
+
288
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
289
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
290
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
291
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
292
+
293
+ ### Features
294
+
295
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
296
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
297
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
298
+
299
+ ### BREAKING CHANGES
300
+
301
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
302
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
303
+ getCustomChainName method is removed from Polygon class because a common
304
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
305
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
306
+ and needs to be passed to derive the Eth common object from the chainId.
307
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
308
+ it can be used for other EthLike coins. getBaseFactor method in Eth
309
+ and Polygon class returns number instead of string just to align with
310
+ AbstractEthLikeCoin
311
+ Ticket: WIN-1012
312
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
313
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
314
+ getCustomChainName method is removed from Polygon class because a common
315
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
316
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
317
+ and needs to be passed to derive the Eth common object from the chainId.
318
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
319
+ it can be used for other EthLike coins. getBaseFactor method in Eth
320
+ and Polygon class returns number instead of string just to align with
321
+ AbstractEthLikeCoin
322
+ Ticket: WIN-1012
323
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
324
+ a new class AbstractEthLikeNewCoins which will be having both multisig
325
+ and MPC related methods
326
+
327
+ TICKET: WIN-1021
328
+
329
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
330
+ class in abstract-eth module because TransactionBuilder in the
331
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
332
+ be added to the class that will inherit EthLikeToken class
333
+
334
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
335
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
336
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
337
+ support for hop transactions, batch transactions, etc
338
+
339
+ TICKET: WIN-1021
340
+
341
+ # [14.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@14.0.0) (2024-01-22)
342
+
343
+ ### Bug Fixes
344
+
345
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
346
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
347
+
348
+ ### Code Refactoring
349
+
350
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
351
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
352
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
353
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
354
+
355
+ ### Features
356
+
357
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
358
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
359
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
360
+
361
+ ### BREAKING CHANGES
362
+
363
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
364
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
365
+ getCustomChainName method is removed from Polygon class because a common
366
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
367
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
368
+ and needs to be passed to derive the Eth common object from the chainId.
369
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
370
+ it can be used for other EthLike coins. getBaseFactor method in Eth
371
+ and Polygon class returns number instead of string just to align with
372
+ AbstractEthLikeCoin
373
+ Ticket: WIN-1012
374
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
375
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
376
+ getCustomChainName method is removed from Polygon class because a common
377
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
378
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
379
+ and needs to be passed to derive the Eth common object from the chainId.
380
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
381
+ it can be used for other EthLike coins. getBaseFactor method in Eth
382
+ and Polygon class returns number instead of string just to align with
383
+ AbstractEthLikeCoin
384
+ Ticket: WIN-1012
385
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
386
+ a new class AbstractEthLikeNewCoins which will be having both multisig
387
+ and MPC related methods
388
+
389
+ TICKET: WIN-1021
390
+
391
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
392
+ class in abstract-eth module because TransactionBuilder in the
393
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
394
+ be added to the class that will inherit EthLikeToken class
395
+
396
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
397
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
398
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
399
+ support for hop transactions, batch transactions, etc
400
+
401
+ TICKET: WIN-1021
402
+
403
+ # [13.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@13.0.0) (2024-01-09)
404
+
405
+ ### Bug Fixes
406
+
407
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
408
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
409
+
410
+ ### Code Refactoring
411
+
412
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
413
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
414
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
415
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
416
+
417
+ ### Features
418
+
419
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
420
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
421
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
422
+
423
+ ### BREAKING CHANGES
424
+
425
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
426
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
427
+ getCustomChainName method is removed from Polygon class because a common
428
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
429
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
430
+ and needs to be passed to derive the Eth common object from the chainId.
431
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
432
+ it can be used for other EthLike coins. getBaseFactor method in Eth
433
+ and Polygon class returns number instead of string just to align with
434
+ AbstractEthLikeCoin
435
+ Ticket: WIN-1012
436
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
437
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
438
+ getCustomChainName method is removed from Polygon class because a common
439
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
440
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
441
+ and needs to be passed to derive the Eth common object from the chainId.
442
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
443
+ it can be used for other EthLike coins. getBaseFactor method in Eth
444
+ and Polygon class returns number instead of string just to align with
445
+ AbstractEthLikeCoin
446
+ Ticket: WIN-1012
447
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
448
+ a new class AbstractEthLikeNewCoins which will be having both multisig
449
+ and MPC related methods
450
+
451
+ TICKET: WIN-1021
452
+
453
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
454
+ class in abstract-eth module because TransactionBuilder in the
455
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
456
+ be added to the class that will inherit EthLikeToken class
457
+
458
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
459
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
460
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
461
+ support for hop transactions, batch transactions, etc
462
+
463
+ TICKET: WIN-1021
464
+
465
+ # [12.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@12.0.0) (2024-01-03)
466
+
467
+ ### Bug Fixes
468
+
469
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
470
+
471
+ ### Code Refactoring
472
+
473
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
474
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
475
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
476
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
477
+
478
+ ### Features
479
+
480
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
481
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
482
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
483
+
484
+ ### BREAKING CHANGES
485
+
486
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
487
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
488
+ getCustomChainName method is removed from Polygon class because a common
489
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
490
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
491
+ and needs to be passed to derive the Eth common object from the chainId.
492
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
493
+ it can be used for other EthLike coins. getBaseFactor method in Eth
494
+ and Polygon class returns number instead of string just to align with
495
+ AbstractEthLikeCoin
496
+ Ticket: WIN-1012
497
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
498
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
499
+ getCustomChainName method is removed from Polygon class because a common
500
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
501
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
502
+ and needs to be passed to derive the Eth common object from the chainId.
503
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
504
+ it can be used for other EthLike coins. getBaseFactor method in Eth
505
+ and Polygon class returns number instead of string just to align with
506
+ AbstractEthLikeCoin
507
+ Ticket: WIN-1012
508
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
509
+ a new class AbstractEthLikeNewCoins which will be having both multisig
510
+ and MPC related methods
511
+
512
+ TICKET: WIN-1021
513
+
514
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
515
+ class in abstract-eth module because TransactionBuilder in the
516
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
517
+ be added to the class that will inherit EthLikeToken class
518
+
519
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
520
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
521
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
522
+ support for hop transactions, batch transactions, etc
523
+
524
+ TICKET: WIN-1021
525
+
526
+ # [11.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@11.0.0) (2023-12-18)
527
+
528
+ ### Bug Fixes
529
+
530
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
531
+
532
+ ### Code Refactoring
533
+
534
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
535
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
536
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
537
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
538
+
539
+ ### Features
540
+
541
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
542
+ - **sdk-core:** add function to transfer nfts ([b77b386](https://github.com/BitGo/BitGoJS/commit/b77b386bf77408d4b1617ba3bc44e5899a65f2e0))
543
+
544
+ ### BREAKING CHANGES
545
+
546
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
547
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
548
+ getCustomChainName method is removed from Polygon class because a common
549
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
550
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
551
+ and needs to be passed to derive the Eth common object from the chainId.
552
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
553
+ it can be used for other EthLike coins. getBaseFactor method in Eth
554
+ and Polygon class returns number instead of string just to align with
555
+ AbstractEthLikeCoin
556
+ Ticket: WIN-1012
557
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
558
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
559
+ getCustomChainName method is removed from Polygon class because a common
560
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
561
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
562
+ and needs to be passed to derive the Eth common object from the chainId.
563
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
564
+ it can be used for other EthLike coins. getBaseFactor method in Eth
565
+ and Polygon class returns number instead of string just to align with
566
+ AbstractEthLikeCoin
567
+ Ticket: WIN-1012
568
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
569
+ a new class AbstractEthLikeNewCoins which will be having both multisig
570
+ and MPC related methods
571
+
572
+ TICKET: WIN-1021
573
+
574
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
575
+ class in abstract-eth module because TransactionBuilder in the
576
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
577
+ be added to the class that will inherit EthLikeToken class
578
+
579
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
580
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
581
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
582
+ support for hop transactions, batch transactions, etc
583
+
584
+ TICKET: WIN-1021
585
+
586
+ # [10.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@10.0.0) (2023-12-12)
587
+
588
+ ### Bug Fixes
589
+
590
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
591
+
592
+ ### Code Refactoring
593
+
594
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
595
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
596
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
597
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
598
+
599
+ ### Features
600
+
601
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
602
+
603
+ ### BREAKING CHANGES
604
+
605
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
606
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
607
+ getCustomChainName method is removed from Polygon class because a common
608
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
609
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
610
+ and needs to be passed to derive the Eth common object from the chainId.
611
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
612
+ it can be used for other EthLike coins. getBaseFactor method in Eth
613
+ and Polygon class returns number instead of string just to align with
614
+ AbstractEthLikeCoin
615
+ Ticket: WIN-1012
616
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
617
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
618
+ getCustomChainName method is removed from Polygon class because a common
619
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
620
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
621
+ and needs to be passed to derive the Eth common object from the chainId.
622
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
623
+ it can be used for other EthLike coins. getBaseFactor method in Eth
624
+ and Polygon class returns number instead of string just to align with
625
+ AbstractEthLikeCoin
626
+ Ticket: WIN-1012
627
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
628
+ a new class AbstractEthLikeNewCoins which will be having both multisig
629
+ and MPC related methods
630
+
631
+ TICKET: WIN-1021
632
+
633
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
634
+ class in abstract-eth module because TransactionBuilder in the
635
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
636
+ be added to the class that will inherit EthLikeToken class
637
+
638
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
639
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
640
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
641
+ support for hop transactions, batch transactions, etc
642
+
643
+ TICKET: WIN-1021
644
+
645
+ # [9.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@9.0.0) (2023-12-09)
646
+
647
+ ### Bug Fixes
648
+
649
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
650
+
651
+ ### Code Refactoring
652
+
653
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
654
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
655
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
656
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
657
+
658
+ ### Features
659
+
660
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
661
+
662
+ ### BREAKING CHANGES
663
+
664
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
665
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
666
+ getCustomChainName method is removed from Polygon class because a common
667
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
668
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
669
+ and needs to be passed to derive the Eth common object from the chainId.
670
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
671
+ it can be used for other EthLike coins. getBaseFactor method in Eth
672
+ and Polygon class returns number instead of string just to align with
673
+ AbstractEthLikeCoin
674
+ Ticket: WIN-1012
675
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
676
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
677
+ getCustomChainName method is removed from Polygon class because a common
678
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
679
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
680
+ and needs to be passed to derive the Eth common object from the chainId.
681
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
682
+ it can be used for other EthLike coins. getBaseFactor method in Eth
683
+ and Polygon class returns number instead of string just to align with
684
+ AbstractEthLikeCoin
685
+ Ticket: WIN-1012
686
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
687
+ a new class AbstractEthLikeNewCoins which will be having both multisig
688
+ and MPC related methods
689
+
690
+ TICKET: WIN-1021
691
+
692
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
693
+ class in abstract-eth module because TransactionBuilder in the
694
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
695
+ be added to the class that will inherit EthLikeToken class
696
+
697
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
698
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
699
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
700
+ support for hop transactions, batch transactions, etc
701
+
702
+ TICKET: WIN-1021
703
+
704
+ # [8.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@8.0.0) (2023-12-05)
705
+
706
+ ### Bug Fixes
707
+
708
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
709
+
710
+ ### Code Refactoring
711
+
712
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
713
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
714
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
715
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
716
+
717
+ ### Features
718
+
719
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
720
+
721
+ ### BREAKING CHANGES
722
+
723
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
724
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
725
+ getCustomChainName method is removed from Polygon class because a common
726
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
727
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
728
+ and needs to be passed to derive the Eth common object from the chainId.
729
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
730
+ it can be used for other EthLike coins. getBaseFactor method in Eth
731
+ and Polygon class returns number instead of string just to align with
732
+ AbstractEthLikeCoin
733
+ Ticket: WIN-1012
734
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
735
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
736
+ getCustomChainName method is removed from Polygon class because a common
737
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
738
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
739
+ and needs to be passed to derive the Eth common object from the chainId.
740
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
741
+ it can be used for other EthLike coins. getBaseFactor method in Eth
742
+ and Polygon class returns number instead of string just to align with
743
+ AbstractEthLikeCoin
744
+ Ticket: WIN-1012
745
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
746
+ a new class AbstractEthLikeNewCoins which will be having both multisig
747
+ and MPC related methods
748
+
749
+ TICKET: WIN-1021
750
+
751
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
752
+ class in abstract-eth module because TransactionBuilder in the
753
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
754
+ be added to the class that will inherit EthLikeToken class
755
+
756
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
757
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
758
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
759
+ support for hop transactions, batch transactions, etc
760
+
761
+ TICKET: WIN-1021
762
+
763
+ # [7.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@7.0.0) (2023-11-28)
764
+
765
+ ### Bug Fixes
766
+
767
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
768
+
769
+ ### Code Refactoring
770
+
771
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
772
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
773
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
774
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
775
+
776
+ ### Features
777
+
778
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
779
+
780
+ ### BREAKING CHANGES
781
+
782
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
783
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
784
+ getCustomChainName method is removed from Polygon class because a common
785
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
786
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
787
+ and needs to be passed to derive the Eth common object from the chainId.
788
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
789
+ it can be used for other EthLike coins. getBaseFactor method in Eth
790
+ and Polygon class returns number instead of string just to align with
791
+ AbstractEthLikeCoin
792
+ Ticket: WIN-1012
793
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
794
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
795
+ getCustomChainName method is removed from Polygon class because a common
796
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
797
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
798
+ and needs to be passed to derive the Eth common object from the chainId.
799
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
800
+ it can be used for other EthLike coins. getBaseFactor method in Eth
801
+ and Polygon class returns number instead of string just to align with
802
+ AbstractEthLikeCoin
803
+ Ticket: WIN-1012
804
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
805
+ a new class AbstractEthLikeNewCoins which will be having both multisig
806
+ and MPC related methods
807
+
808
+ TICKET: WIN-1021
809
+
810
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
811
+ class in abstract-eth module because TransactionBuilder in the
812
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
813
+ be added to the class that will inherit EthLikeToken class
814
+
815
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
816
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
817
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
818
+ support for hop transactions, batch transactions, etc
819
+
820
+ TICKET: WIN-1021
821
+
822
+ # [6.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@6.0.0) (2023-11-24)
823
+
824
+ ### Bug Fixes
825
+
826
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
827
+
828
+ ### Code Refactoring
829
+
830
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
831
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
832
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
833
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
834
+
835
+ ### Features
836
+
837
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
838
+
839
+ ### BREAKING CHANGES
840
+
841
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
842
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
843
+ getCustomChainName method is removed from Polygon class because a common
844
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
845
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
846
+ and needs to be passed to derive the Eth common object from the chainId.
847
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
848
+ it can be used for other EthLike coins. getBaseFactor method in Eth
849
+ and Polygon class returns number instead of string just to align with
850
+ AbstractEthLikeCoin
851
+ Ticket: WIN-1012
852
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
853
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
854
+ getCustomChainName method is removed from Polygon class because a common
855
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
856
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
857
+ and needs to be passed to derive the Eth common object from the chainId.
858
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
859
+ it can be used for other EthLike coins. getBaseFactor method in Eth
860
+ and Polygon class returns number instead of string just to align with
861
+ AbstractEthLikeCoin
862
+ Ticket: WIN-1012
863
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
864
+ a new class AbstractEthLikeNewCoins which will be having both multisig
865
+ and MPC related methods
866
+
867
+ TICKET: WIN-1021
868
+
869
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
870
+ class in abstract-eth module because TransactionBuilder in the
871
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
872
+ be added to the class that will inherit EthLikeToken class
873
+
874
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
875
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
876
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
877
+ support for hop transactions, batch transactions, etc
878
+
879
+ TICKET: WIN-1021
880
+
881
+ # [5.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@5.0.0) (2023-11-17)
882
+
883
+ ### Bug Fixes
884
+
885
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
886
+
887
+ ### Code Refactoring
888
+
889
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
890
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
891
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
892
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
893
+
894
+ ### Features
895
+
896
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
897
+
898
+ ### BREAKING CHANGES
899
+
900
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
901
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
902
+ getCustomChainName method is removed from Polygon class because a common
903
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
904
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
905
+ and needs to be passed to derive the Eth common object from the chainId.
906
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
907
+ it can be used for other EthLike coins. getBaseFactor method in Eth
908
+ and Polygon class returns number instead of string just to align with
909
+ AbstractEthLikeCoin
910
+ Ticket: WIN-1012
911
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
912
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
913
+ getCustomChainName method is removed from Polygon class because a common
914
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
915
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
916
+ and needs to be passed to derive the Eth common object from the chainId.
917
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
918
+ it can be used for other EthLike coins. getBaseFactor method in Eth
919
+ and Polygon class returns number instead of string just to align with
920
+ AbstractEthLikeCoin
921
+ Ticket: WIN-1012
922
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
923
+ a new class AbstractEthLikeNewCoins which will be having both multisig
924
+ and MPC related methods
925
+
926
+ TICKET: WIN-1021
927
+
928
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
929
+ class in abstract-eth module because TransactionBuilder in the
930
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
931
+ be added to the class that will inherit EthLikeToken class
932
+
933
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
934
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
935
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
936
+ support for hop transactions, batch transactions, etc
937
+
938
+ TICKET: WIN-1021
939
+
940
+ # [4.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@4.0.0) (2023-11-13)
941
+
942
+ ### Code Refactoring
943
+
944
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
945
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
946
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
947
+
948
+ ### Features
949
+
950
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
951
+
952
+ ### BREAKING CHANGES
953
+
954
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
955
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
956
+ getCustomChainName method is removed from Polygon class because a common
957
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
958
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
959
+ and needs to be passed to derive the Eth common object from the chainId.
960
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
961
+ it can be used for other EthLike coins. getBaseFactor method in Eth
962
+ and Polygon class returns number instead of string just to align with
963
+ AbstractEthLikeCoin
964
+ Ticket: WIN-1012
965
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
966
+ a new class AbstractEthLikeNewCoins which will be having both multisig
967
+ and MPC related methods
968
+
969
+ TICKET: WIN-1021
970
+
971
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
972
+ class in abstract-eth module because TransactionBuilder in the
973
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
974
+ be added to the class that will inherit EthLikeToken class
975
+
976
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
977
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
978
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
979
+ support for hop transactions, batch transactions, etc
980
+
981
+ TICKET: WIN-1021
982
+
983
+ # [3.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@3.0.0) (2023-11-13)
984
+
985
+ ### Code Refactoring
986
+
987
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
988
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
989
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
990
+
991
+ ### Features
992
+
993
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
994
+
995
+ ### BREAKING CHANGES
996
+
997
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
998
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
999
+ getCustomChainName method is removed from Polygon class because a common
1000
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1001
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1002
+ and needs to be passed to derive the Eth common object from the chainId.
1003
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1004
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1005
+ and Polygon class returns number instead of string just to align with
1006
+ AbstractEthLikeCoin
1007
+ Ticket: WIN-1012
1008
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
1009
+ a new class AbstractEthLikeNewCoins which will be having both multisig
1010
+ and MPC related methods
1011
+
1012
+ TICKET: WIN-1021
1013
+
1014
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
1015
+ class in abstract-eth module because TransactionBuilder in the
1016
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
1017
+ be added to the class that will inherit EthLikeToken class
1018
+
1019
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
1020
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
1021
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
1022
+ support for hop transactions, batch transactions, etc
1023
+
1024
+ TICKET: WIN-1021
1025
+
1026
+ # [2.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@2.0.0) (2023-11-13)
1027
+
1028
+ ### Code Refactoring
1029
+
1030
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
1031
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1032
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
1033
+
1034
+ ### Features
1035
+
1036
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
1037
+
1038
+ ### BREAKING CHANGES
1039
+
1040
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1041
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1042
+ getCustomChainName method is removed from Polygon class because a common
1043
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1044
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1045
+ and needs to be passed to derive the Eth common object from the chainId.
1046
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1047
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1048
+ and Polygon class returns number instead of string just to align with
1049
+ AbstractEthLikeCoin
1050
+ Ticket: WIN-1012
1051
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
1052
+ a new class AbstractEthLikeNewCoins which will be having both multisig
1053
+ and MPC related methods
1054
+
1055
+ TICKET: WIN-1021
1056
+
1057
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
1058
+ class in abstract-eth module because TransactionBuilder in the
1059
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
1060
+ be added to the class that will inherit EthLikeToken class
1061
+
1062
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
1063
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
1064
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
1065
+ support for hop transactions, batch transactions, etc
1066
+
1067
+ TICKET: WIN-1021
1068
+
1069
+ # [1.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.6.0) (2023-10-20)
1070
+
1071
+ ### Features
1072
+
1073
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
1074
+
1075
+ # [1.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.5.0) (2023-10-18)
1076
+
1077
+ ### Features
1078
+
1079
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
1080
+
1081
+ ## [1.4.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.11) (2023-09-25)
1082
+
1083
+ **Note:** Version bump only for package @bitgo/abstract-eth
1084
+
1085
+ ## [1.4.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.10) (2023-09-09)
1086
+
1087
+ **Note:** Version bump only for package @bitgo/abstract-eth
1088
+
1089
+ ## [1.4.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.9) (2023-09-09)
1090
+
1091
+ **Note:** Version bump only for package @bitgo/abstract-eth
1092
+
1093
+ ## [1.4.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.8) (2023-09-07)
1094
+
1095
+ **Note:** Version bump only for package @bitgo/abstract-eth
1096
+
1097
+ ## [1.4.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.7) (2023-09-05)
1098
+
1099
+ **Note:** Version bump only for package @bitgo/abstract-eth
1100
+
1101
+ ## [1.4.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.6) (2023-09-01)
1102
+
1103
+ **Note:** Version bump only for package @bitgo/abstract-eth
1104
+
1105
+ ## [1.4.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.5) (2023-08-29)
1106
+
1107
+ **Note:** Version bump only for package @bitgo/abstract-eth
1108
+
1109
+ ## [1.4.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.4) (2023-08-25)
1110
+
1111
+ **Note:** Version bump only for package @bitgo/abstract-eth
1112
+
1113
+ ## [1.4.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.3) (2023-08-24)
1114
+
1115
+ **Note:** Version bump only for package @bitgo/abstract-eth
1116
+
1117
+ ## [1.4.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.2) (2023-08-16)
1118
+
1119
+ **Note:** Version bump only for package @bitgo/abstract-eth
1120
+
1121
+ ## [1.4.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.4.0...@bitgo/abstract-eth@1.4.1) (2023-08-16)
1122
+
1123
+ **Note:** Version bump only for package @bitgo/abstract-eth
1124
+
1125
+ # [1.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.28...@bitgo/abstract-eth@1.4.0) (2023-08-04)
1126
+
1127
+ ### Features
1128
+
1129
+ - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
1130
+ - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
1131
+
1132
+ # [1.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.28...@bitgo/abstract-eth@1.3.0) (2023-07-28)
1133
+
1134
+ ### Features
1135
+
1136
+ - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
1137
+ - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
1138
+
1139
+ ## [1.2.28](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.27...@bitgo/abstract-eth@1.2.28) (2023-07-18)
1140
+
1141
+ **Note:** Version bump only for package @bitgo/abstract-eth
1142
+
1143
+ ## [1.2.27](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.26...@bitgo/abstract-eth@1.2.27) (2023-06-21)
1144
+
1145
+ **Note:** Version bump only for package @bitgo/abstract-eth
1146
+
1147
+ ## [1.2.26](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.25...@bitgo/abstract-eth@1.2.26) (2023-06-14)
1148
+
1149
+ **Note:** Version bump only for package @bitgo/abstract-eth
1150
+
1151
+ ## [1.2.25](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.24...@bitgo/abstract-eth@1.2.25) (2023-06-13)
1152
+
1153
+ **Note:** Version bump only for package @bitgo/abstract-eth
1154
+
1155
+ ## [1.2.24](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.23...@bitgo/abstract-eth@1.2.24) (2023-06-07)
1156
+
1157
+ **Note:** Version bump only for package @bitgo/abstract-eth
1158
+
1159
+ ## [1.2.23](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.22...@bitgo/abstract-eth@1.2.23) (2023-06-05)
1160
+
1161
+ **Note:** Version bump only for package @bitgo/abstract-eth
1162
+
1163
+ ## [1.2.22](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.21...@bitgo/abstract-eth@1.2.22) (2023-05-25)
1164
+
1165
+ **Note:** Version bump only for package @bitgo/abstract-eth
1166
+
1167
+ ## [1.2.21](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.20...@bitgo/abstract-eth@1.2.21) (2023-05-17)
1168
+
1169
+ **Note:** Version bump only for package @bitgo/abstract-eth
1170
+
1171
+ ## [1.2.20](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.19...@bitgo/abstract-eth@1.2.20) (2023-05-10)
1172
+
1173
+ **Note:** Version bump only for package @bitgo/abstract-eth
1174
+
1175
+ ## [1.2.19](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.18...@bitgo/abstract-eth@1.2.19) (2023-05-03)
1176
+
1177
+ **Note:** Version bump only for package @bitgo/abstract-eth
1178
+
1179
+ ## [1.2.18](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.17...@bitgo/abstract-eth@1.2.18) (2023-04-25)
1180
+
1181
+ **Note:** Version bump only for package @bitgo/abstract-eth
1182
+
1183
+ ## [1.2.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.16...@bitgo/abstract-eth@1.2.17) (2023-04-20)
1184
+
1185
+ **Note:** Version bump only for package @bitgo/abstract-eth
1186
+
1187
+ ## [1.2.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.15...@bitgo/abstract-eth@1.2.16) (2023-04-13)
1188
+
1189
+ **Note:** Version bump only for package @bitgo/abstract-eth
1190
+
1191
+ ## [1.2.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.14...@bitgo/abstract-eth@1.2.15) (2023-02-17)
1192
+
1193
+ **Note:** Version bump only for package @bitgo/abstract-eth
1194
+
1195
+ ## [1.2.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.11...@bitgo/abstract-eth@1.2.14) (2023-02-16)
1196
+
1197
+ **Note:** Version bump only for package @bitgo/abstract-eth
1198
+
1199
+ ## [1.2.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.11...@bitgo/abstract-eth@1.2.13) (2023-02-08)
1200
+
1201
+ **Note:** Version bump only for package @bitgo/abstract-eth
1202
+
1203
+ ## [1.2.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.11...@bitgo/abstract-eth@1.2.12) (2023-01-30)
1204
+
1205
+ **Note:** Version bump only for package @bitgo/abstract-eth
1206
+
1207
+ ## [1.2.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.10...@bitgo/abstract-eth@1.2.11) (2023-01-25)
1208
+
1209
+ **Note:** Version bump only for package @bitgo/abstract-eth
1210
+
1211
+ ## [1.2.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.9...@bitgo/abstract-eth@1.2.10) (2022-12-23)
1212
+
1213
+ **Note:** Version bump only for package @bitgo/abstract-eth
1214
+
1215
+ ## [1.2.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.8...@bitgo/abstract-eth@1.2.9) (2022-12-20)
1216
+
1217
+ **Note:** Version bump only for package @bitgo/abstract-eth
1218
+
1219
+ ## [1.2.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.7...@bitgo/abstract-eth@1.2.8) (2022-12-09)
1220
+
1221
+ **Note:** Version bump only for package @bitgo/abstract-eth
1222
+
1223
+ ## [1.2.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.6...@bitgo/abstract-eth@1.2.7) (2022-12-06)
1224
+
1225
+ **Note:** Version bump only for package @bitgo/abstract-eth
1226
+
1227
+ ## [1.2.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.5...@bitgo/abstract-eth@1.2.6) (2022-12-01)
1228
+
1229
+ **Note:** Version bump only for package @bitgo/abstract-eth
1230
+
1231
+ ## [1.2.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.0...@bitgo/abstract-eth@1.2.5) (2022-11-29)
1232
+
1233
+ **Note:** Version bump only for package @bitgo/abstract-eth
1234
+
1235
+ ## [1.2.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.0...@bitgo/abstract-eth@1.2.4) (2022-11-04)
1236
+
1237
+ **Note:** Version bump only for package @bitgo/abstract-eth
1238
+
6
1239
  ## [1.2.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@1.2.0...@bitgo/abstract-eth@1.2.2) (2022-10-27)
7
1240
 
8
1241
  **Note:** Version bump only for package @bitgo/abstract-eth