@bitgo-beta/abstract-eth 1.0.2-beta.59 → 1.0.2-beta.591

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