@bitgo-beta/abstract-eth 1.0.2-beta.62 → 1.0.2-beta.621

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