@bitgo-beta/abstract-eth 1.0.2-beta.55 → 1.0.2-beta.550

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