@bitgo-beta/abstract-eth 1.0.2-beta.61 → 1.0.2-beta.610

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