@bitgo-beta/abstract-eth 1.0.2-beta.64 → 1.0.2-beta.640

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