@bitgo-beta/abstract-eth 1.0.2-beta.60 → 1.0.2-beta.600

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