@bitgo-beta/abstract-eth 1.0.2-beta.50 → 1.0.2-beta.501

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