@bitgo-beta/abstract-eth 1.0.2-beta.57 → 1.0.2-beta.571

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