@bitgo-beta/abstract-eth 1.2.3-alpha.15 → 1.2.3-alpha.150

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