@bitgo-beta/sdk-coin-eth 4.4.1-beta.23 → 4.4.1-beta.230

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 (64) hide show
  1. package/CHANGELOG.md +765 -0
  2. package/dist/src/erc20Token.d.ts +12 -4
  3. package/dist/src/erc20Token.d.ts.map +1 -1
  4. package/dist/src/erc20Token.js +20 -3
  5. package/dist/src/eth.d.ts +20 -534
  6. package/dist/src/eth.d.ts.map +1 -1
  7. package/dist/src/eth.js +180 -1609
  8. package/dist/src/gteth.d.ts +0 -4
  9. package/dist/src/gteth.d.ts.map +1 -1
  10. package/dist/src/gteth.js +1 -11
  11. package/dist/src/hteth.d.ts +8 -0
  12. package/dist/src/hteth.d.ts.map +1 -0
  13. package/dist/src/hteth.js +14 -0
  14. package/dist/src/index.d.ts +1 -0
  15. package/dist/src/index.d.ts.map +1 -1
  16. package/dist/src/index.js +2 -1
  17. package/dist/src/lib/index.d.ts +4 -13
  18. package/dist/src/lib/index.d.ts.map +1 -1
  19. package/dist/src/lib/index.js +12 -29
  20. package/dist/src/lib/transactionBuilder.d.ts +4 -211
  21. package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
  22. package/dist/src/lib/transactionBuilder.js +11 -675
  23. package/dist/src/lib/transferBuilder.d.ts +2 -50
  24. package/dist/src/lib/transferBuilder.d.ts.map +1 -1
  25. package/dist/src/lib/transferBuilder.js +3 -199
  26. package/dist/src/lib/transferBuilders/index.d.ts +2 -3
  27. package/dist/src/lib/transferBuilders/index.d.ts.map +1 -1
  28. package/dist/src/lib/transferBuilders/index.js +6 -14
  29. package/dist/src/lib/walletUtil.d.ts +0 -25
  30. package/dist/src/lib/walletUtil.d.ts.map +1 -1
  31. package/dist/src/lib/walletUtil.js +2 -27
  32. package/dist/src/register.d.ts.map +1 -1
  33. package/dist/src/register.js +3 -1
  34. package/dist/src/teth.d.ts +0 -3
  35. package/dist/src/teth.d.ts.map +1 -1
  36. package/dist/src/teth.js +1 -8
  37. package/package.json +10 -16
  38. package/dist/src/lib/contractCall.d.ts +0 -8
  39. package/dist/src/lib/contractCall.d.ts.map +0 -1
  40. package/dist/src/lib/contractCall.js +0 -17
  41. package/dist/src/lib/iface.d.ts +0 -130
  42. package/dist/src/lib/iface.d.ts.map +0 -1
  43. package/dist/src/lib/iface.js +0 -8
  44. package/dist/src/lib/keyPair.d.ts +0 -26
  45. package/dist/src/lib/keyPair.d.ts.map +0 -1
  46. package/dist/src/lib/keyPair.js +0 -66
  47. package/dist/src/lib/transaction.d.ts +0 -64
  48. package/dist/src/lib/transaction.d.ts.map +0 -1
  49. package/dist/src/lib/transaction.js +0 -137
  50. package/dist/src/lib/transferBuilders/baseNFTTransferBuilder.d.ts +0 -47
  51. package/dist/src/lib/transferBuilders/baseNFTTransferBuilder.d.ts.map +0 -1
  52. package/dist/src/lib/transferBuilders/baseNFTTransferBuilder.js +0 -113
  53. package/dist/src/lib/transferBuilders/transferBuilderERC1155.d.ts +0 -14
  54. package/dist/src/lib/transferBuilders/transferBuilderERC1155.d.ts.map +0 -1
  55. package/dist/src/lib/transferBuilders/transferBuilderERC1155.js +0 -83
  56. package/dist/src/lib/transferBuilders/transferBuilderERC721.d.ts +0 -13
  57. package/dist/src/lib/transferBuilders/transferBuilderERC721.d.ts.map +0 -1
  58. package/dist/src/lib/transferBuilders/transferBuilderERC721.js +0 -68
  59. package/dist/src/lib/types.d.ts +0 -39
  60. package/dist/src/lib/types.d.ts.map +0 -1
  61. package/dist/src/lib/types.js +0 -137
  62. package/dist/src/lib/utils.d.ts +0 -227
  63. package/dist/src/lib/utils.d.ts.map +0 -1
  64. package/dist/src/lib/utils.js +0 -577
package/CHANGELOG.md CHANGED
@@ -3,6 +3,771 @@
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
+ # [16.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@16.0.0) (2024-01-09)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
11
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
12
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
13
+
14
+ ### Code Refactoring
15
+
16
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
17
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
18
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
19
+
20
+ ### Features
21
+
22
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
23
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
24
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
25
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
26
+
27
+ ### BREAKING CHANGES
28
+
29
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
30
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
31
+ getCustomChainName method is removed from Polygon class because a common
32
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
33
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
34
+ and needs to be passed to derive the Eth common object from the chainId.
35
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
36
+ it can be used for other EthLike coins. getBaseFactor method in Eth
37
+ and Polygon class returns number instead of string just to align with
38
+ AbstractEthLikeCoin
39
+ Ticket: WIN-1012
40
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
41
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
42
+ getCustomChainName method is removed from Polygon class because a common
43
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
44
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
45
+ and needs to be passed to derive the Eth common object from the chainId.
46
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
47
+ it can be used for other EthLike coins. getBaseFactor method in Eth
48
+ and Polygon class returns number instead of string just to align with
49
+ AbstractEthLikeCoin
50
+ Ticket: WIN-1012
51
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
52
+ class in abstract-eth module because TransactionBuilder in the
53
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
54
+ be added to the class that will inherit EthLikeToken class
55
+
56
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
57
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
58
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
59
+ support for hop transactions, batch transactions, etc
60
+
61
+ TICKET: WIN-1021
62
+
63
+ # [15.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@15.0.0) (2024-01-03)
64
+
65
+ ### Bug Fixes
66
+
67
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
68
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
69
+
70
+ ### Code Refactoring
71
+
72
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
73
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
74
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
75
+
76
+ ### Features
77
+
78
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
79
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
80
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
81
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
82
+
83
+ ### BREAKING CHANGES
84
+
85
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
86
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
87
+ getCustomChainName method is removed from Polygon class because a common
88
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
89
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
90
+ and needs to be passed to derive the Eth common object from the chainId.
91
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
92
+ it can be used for other EthLike coins. getBaseFactor method in Eth
93
+ and Polygon class returns number instead of string just to align with
94
+ AbstractEthLikeCoin
95
+ Ticket: WIN-1012
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:** getTransactionBuilder method is removed from EthLikeToken
108
+ class in abstract-eth module because TransactionBuilder in the
109
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
110
+ be added to the class that will inherit EthLikeToken class
111
+
112
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
113
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
114
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
115
+ support for hop transactions, batch transactions, etc
116
+
117
+ TICKET: WIN-1021
118
+
119
+ # [14.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@14.0.0) (2023-12-18)
120
+
121
+ ### Bug Fixes
122
+
123
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
124
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
125
+
126
+ ### Code Refactoring
127
+
128
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
129
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
130
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
131
+
132
+ ### Features
133
+
134
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
135
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
136
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
137
+
138
+ ### BREAKING CHANGES
139
+
140
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
141
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
142
+ getCustomChainName method is removed from Polygon class because a common
143
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
144
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
145
+ and needs to be passed to derive the Eth common object from the chainId.
146
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
147
+ it can be used for other EthLike coins. getBaseFactor method in Eth
148
+ and Polygon class returns number instead of string just to align with
149
+ AbstractEthLikeCoin
150
+ Ticket: WIN-1012
151
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
152
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
153
+ getCustomChainName method is removed from Polygon class because a common
154
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
155
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
156
+ and needs to be passed to derive the Eth common object from the chainId.
157
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
158
+ it can be used for other EthLike coins. getBaseFactor method in Eth
159
+ and Polygon class returns number instead of string just to align with
160
+ AbstractEthLikeCoin
161
+ Ticket: WIN-1012
162
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
163
+ class in abstract-eth module because TransactionBuilder in the
164
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
165
+ be added to the class that will inherit EthLikeToken class
166
+
167
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
168
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
169
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
170
+ support for hop transactions, batch transactions, etc
171
+
172
+ TICKET: WIN-1021
173
+
174
+ # [13.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@13.0.0) (2023-12-12)
175
+
176
+ ### Bug Fixes
177
+
178
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
179
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
180
+
181
+ ### Code Refactoring
182
+
183
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
184
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
185
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
186
+
187
+ ### Features
188
+
189
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
190
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
191
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
192
+
193
+ ### BREAKING CHANGES
194
+
195
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
196
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
197
+ getCustomChainName method is removed from Polygon class because a common
198
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
199
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
200
+ and needs to be passed to derive the Eth common object from the chainId.
201
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
202
+ it can be used for other EthLike coins. getBaseFactor method in Eth
203
+ and Polygon class returns number instead of string just to align with
204
+ AbstractEthLikeCoin
205
+ Ticket: WIN-1012
206
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
207
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
208
+ getCustomChainName method is removed from Polygon class because a common
209
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
210
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
211
+ and needs to be passed to derive the Eth common object from the chainId.
212
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
213
+ it can be used for other EthLike coins. getBaseFactor method in Eth
214
+ and Polygon class returns number instead of string just to align with
215
+ AbstractEthLikeCoin
216
+ Ticket: WIN-1012
217
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
218
+ class in abstract-eth module because TransactionBuilder in the
219
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
220
+ be added to the class that will inherit EthLikeToken class
221
+
222
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
223
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
224
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
225
+ support for hop transactions, batch transactions, etc
226
+
227
+ TICKET: WIN-1021
228
+
229
+ # [12.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@12.0.0) (2023-12-09)
230
+
231
+ ### Bug Fixes
232
+
233
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
234
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
235
+
236
+ ### Code Refactoring
237
+
238
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
239
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
240
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
241
+
242
+ ### Features
243
+
244
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
245
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
246
+
247
+ ### BREAKING CHANGES
248
+
249
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
250
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
251
+ getCustomChainName method is removed from Polygon class because a common
252
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
253
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
254
+ and needs to be passed to derive the Eth common object from the chainId.
255
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
256
+ it can be used for other EthLike coins. getBaseFactor method in Eth
257
+ and Polygon class returns number instead of string just to align with
258
+ AbstractEthLikeCoin
259
+ Ticket: WIN-1012
260
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
261
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
262
+ getCustomChainName method is removed from Polygon class because a common
263
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
264
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
265
+ and needs to be passed to derive the Eth common object from the chainId.
266
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
267
+ it can be used for other EthLike coins. getBaseFactor method in Eth
268
+ and Polygon class returns number instead of string just to align with
269
+ AbstractEthLikeCoin
270
+ Ticket: WIN-1012
271
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
272
+ class in abstract-eth module because TransactionBuilder in the
273
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
274
+ be added to the class that will inherit EthLikeToken class
275
+
276
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
277
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
278
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
279
+ support for hop transactions, batch transactions, etc
280
+
281
+ TICKET: WIN-1021
282
+
283
+ # [11.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@11.0.0) (2023-12-05)
284
+
285
+ ### Bug Fixes
286
+
287
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
288
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
289
+
290
+ ### Code Refactoring
291
+
292
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
293
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
294
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
295
+
296
+ ### Features
297
+
298
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
299
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
300
+
301
+ ### BREAKING CHANGES
302
+
303
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
304
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
305
+ getCustomChainName method is removed from Polygon class because a common
306
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
307
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
308
+ and needs to be passed to derive the Eth common object from the chainId.
309
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
310
+ it can be used for other EthLike coins. getBaseFactor method in Eth
311
+ and Polygon class returns number instead of string just to align with
312
+ AbstractEthLikeCoin
313
+ Ticket: WIN-1012
314
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
315
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
316
+ getCustomChainName method is removed from Polygon class because a common
317
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
318
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
319
+ and needs to be passed to derive the Eth common object from the chainId.
320
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
321
+ it can be used for other EthLike coins. getBaseFactor method in Eth
322
+ and Polygon class returns number instead of string just to align with
323
+ AbstractEthLikeCoin
324
+ Ticket: WIN-1012
325
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
326
+ class in abstract-eth module because TransactionBuilder in the
327
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
328
+ be added to the class that will inherit EthLikeToken class
329
+
330
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
331
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
332
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
333
+ support for hop transactions, batch transactions, etc
334
+
335
+ TICKET: WIN-1021
336
+
337
+ # [10.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@10.0.0) (2023-11-28)
338
+
339
+ ### Bug Fixes
340
+
341
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
342
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
343
+
344
+ ### Code Refactoring
345
+
346
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
347
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
348
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
349
+
350
+ ### Features
351
+
352
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
353
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
354
+
355
+ ### BREAKING CHANGES
356
+
357
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
358
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
359
+ getCustomChainName method is removed from Polygon class because a common
360
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
361
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
362
+ and needs to be passed to derive the Eth common object from the chainId.
363
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
364
+ it can be used for other EthLike coins. getBaseFactor method in Eth
365
+ and Polygon class returns number instead of string just to align with
366
+ AbstractEthLikeCoin
367
+ Ticket: WIN-1012
368
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
369
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
370
+ getCustomChainName method is removed from Polygon class because a common
371
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
372
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
373
+ and needs to be passed to derive the Eth common object from the chainId.
374
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
375
+ it can be used for other EthLike coins. getBaseFactor method in Eth
376
+ and Polygon class returns number instead of string just to align with
377
+ AbstractEthLikeCoin
378
+ Ticket: WIN-1012
379
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
380
+ class in abstract-eth module because TransactionBuilder in the
381
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
382
+ be added to the class that will inherit EthLikeToken class
383
+
384
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
385
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
386
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
387
+ support for hop transactions, batch transactions, etc
388
+
389
+ TICKET: WIN-1021
390
+
391
+ # [9.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@9.0.0) (2023-11-24)
392
+
393
+ ### Bug Fixes
394
+
395
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
396
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
397
+
398
+ ### Code Refactoring
399
+
400
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
401
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
402
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
403
+
404
+ ### Features
405
+
406
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
407
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
408
+
409
+ ### BREAKING CHANGES
410
+
411
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
412
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
413
+ getCustomChainName method is removed from Polygon class because a common
414
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
415
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
416
+ and needs to be passed to derive the Eth common object from the chainId.
417
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
418
+ it can be used for other EthLike coins. getBaseFactor method in Eth
419
+ and Polygon class returns number instead of string just to align with
420
+ AbstractEthLikeCoin
421
+ Ticket: WIN-1012
422
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
423
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
424
+ getCustomChainName method is removed from Polygon class because a common
425
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
426
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
427
+ and needs to be passed to derive the Eth common object from the chainId.
428
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
429
+ it can be used for other EthLike coins. getBaseFactor method in Eth
430
+ and Polygon class returns number instead of string just to align with
431
+ AbstractEthLikeCoin
432
+ Ticket: WIN-1012
433
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
434
+ class in abstract-eth module because TransactionBuilder in the
435
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
436
+ be added to the class that will inherit EthLikeToken class
437
+
438
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
439
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
440
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
441
+ support for hop transactions, batch transactions, etc
442
+
443
+ TICKET: WIN-1021
444
+
445
+ # [8.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@8.0.0) (2023-11-17)
446
+
447
+ ### Bug Fixes
448
+
449
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
450
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
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:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
456
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
457
+
458
+ ### Features
459
+
460
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
461
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
462
+
463
+ ### BREAKING CHANGES
464
+
465
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
466
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
467
+ getCustomChainName method is removed from Polygon class because a common
468
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
469
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
470
+ and needs to be passed to derive the Eth common object from the chainId.
471
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
472
+ it can be used for other EthLike coins. getBaseFactor method in Eth
473
+ and Polygon class returns number instead of string just to align with
474
+ AbstractEthLikeCoin
475
+ Ticket: WIN-1012
476
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
477
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
478
+ getCustomChainName method is removed from Polygon class because a common
479
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
480
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
481
+ and needs to be passed to derive the Eth common object from the chainId.
482
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
483
+ it can be used for other EthLike coins. getBaseFactor method in Eth
484
+ and Polygon class returns number instead of string just to align with
485
+ AbstractEthLikeCoin
486
+ Ticket: WIN-1012
487
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
488
+ class in abstract-eth module because TransactionBuilder in the
489
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
490
+ be added to the class that will inherit EthLikeToken class
491
+
492
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
493
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
494
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
495
+ support for hop transactions, batch transactions, etc
496
+
497
+ TICKET: WIN-1021
498
+
499
+ # [7.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@7.0.0) (2023-11-13)
500
+
501
+ ### Bug Fixes
502
+
503
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
504
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
505
+
506
+ ### Code Refactoring
507
+
508
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
509
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
510
+
511
+ ### Features
512
+
513
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
514
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
515
+
516
+ ### BREAKING CHANGES
517
+
518
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
519
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
520
+ getCustomChainName method is removed from Polygon class because a common
521
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
522
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
523
+ and needs to be passed to derive the Eth common object from the chainId.
524
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
525
+ it can be used for other EthLike coins. getBaseFactor method in Eth
526
+ and Polygon class returns number instead of string just to align with
527
+ AbstractEthLikeCoin
528
+ Ticket: WIN-1012
529
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
530
+ class in abstract-eth module because TransactionBuilder in the
531
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
532
+ be added to the class that will inherit EthLikeToken class
533
+
534
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
535
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
536
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
537
+ support for hop transactions, batch transactions, etc
538
+
539
+ TICKET: WIN-1021
540
+
541
+ # [6.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@6.0.0) (2023-11-13)
542
+
543
+ ### Bug Fixes
544
+
545
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
546
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
547
+
548
+ ### Code Refactoring
549
+
550
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
551
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
552
+
553
+ ### Features
554
+
555
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
556
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
557
+
558
+ ### BREAKING CHANGES
559
+
560
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
561
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
562
+ getCustomChainName method is removed from Polygon class because a common
563
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
564
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
565
+ and needs to be passed to derive the Eth common object from the chainId.
566
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
567
+ it can be used for other EthLike coins. getBaseFactor method in Eth
568
+ and Polygon class returns number instead of string just to align with
569
+ AbstractEthLikeCoin
570
+ Ticket: WIN-1012
571
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
572
+ class in abstract-eth module because TransactionBuilder in the
573
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
574
+ be added to the class that will inherit EthLikeToken class
575
+
576
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
577
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
578
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
579
+ support for hop transactions, batch transactions, etc
580
+
581
+ TICKET: WIN-1021
582
+
583
+ # [5.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@5.0.0) (2023-11-13)
584
+
585
+ ### Bug Fixes
586
+
587
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
588
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
589
+
590
+ ### Code Refactoring
591
+
592
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
593
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
594
+
595
+ ### Features
596
+
597
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
598
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
599
+
600
+ ### BREAKING CHANGES
601
+
602
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
603
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
604
+ getCustomChainName method is removed from Polygon class because a common
605
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
606
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
607
+ and needs to be passed to derive the Eth common object from the chainId.
608
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
609
+ it can be used for other EthLike coins. getBaseFactor method in Eth
610
+ and Polygon class returns number instead of string just to align with
611
+ AbstractEthLikeCoin
612
+ Ticket: WIN-1012
613
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
614
+ class in abstract-eth module because TransactionBuilder in the
615
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
616
+ be added to the class that will inherit EthLikeToken class
617
+
618
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
619
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
620
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
621
+ support for hop transactions, batch transactions, etc
622
+
623
+ TICKET: WIN-1021
624
+
625
+ # [4.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.10.0) (2023-10-20)
626
+
627
+ ### Bug Fixes
628
+
629
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
630
+
631
+ ### Features
632
+
633
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
634
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
635
+
636
+ # [4.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.9.0) (2023-10-18)
637
+
638
+ ### Bug Fixes
639
+
640
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
641
+
642
+ ### Features
643
+
644
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
645
+
646
+ # [4.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.8.0) (2023-09-25)
647
+
648
+ ### Bug Fixes
649
+
650
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
651
+
652
+ ### Features
653
+
654
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
655
+
656
+ ## [4.7.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.10) (2023-09-09)
657
+
658
+ ### Bug Fixes
659
+
660
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
661
+
662
+ ## [4.7.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.9) (2023-09-09)
663
+
664
+ ### Bug Fixes
665
+
666
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
667
+
668
+ ## [4.7.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.8) (2023-09-07)
669
+
670
+ ### Bug Fixes
671
+
672
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
673
+
674
+ ## [4.7.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.7) (2023-09-05)
675
+
676
+ ### Bug Fixes
677
+
678
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
679
+
680
+ ## [4.7.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.6) (2023-09-01)
681
+
682
+ ### Bug Fixes
683
+
684
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
685
+
686
+ ## [4.7.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.5) (2023-08-29)
687
+
688
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
689
+
690
+ ## [4.7.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.4) (2023-08-25)
691
+
692
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
693
+
694
+ ## [4.7.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.3) (2023-08-24)
695
+
696
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
697
+
698
+ ## [4.7.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.2) (2023-08-16)
699
+
700
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
701
+
702
+ ## [4.7.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.1) (2023-08-16)
703
+
704
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
705
+
706
+ # [4.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.5.5...@bitgo/sdk-coin-eth@4.7.0) (2023-08-04)
707
+
708
+ ### Features
709
+
710
+ - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
711
+ - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
712
+
713
+ # [4.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.5.5...@bitgo/sdk-coin-eth@4.6.0) (2023-07-28)
714
+
715
+ ### Features
716
+
717
+ - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
718
+ - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
719
+
720
+ ## [4.5.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.5.4...@bitgo/sdk-coin-eth@4.5.5) (2023-07-18)
721
+
722
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
723
+
724
+ ## [4.5.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.5.3...@bitgo/sdk-coin-eth@4.5.4) (2023-06-21)
725
+
726
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
727
+
728
+ ## [4.5.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.5.2...@bitgo/sdk-coin-eth@4.5.3) (2023-06-14)
729
+
730
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
731
+
732
+ ## [4.5.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.5.1...@bitgo/sdk-coin-eth@4.5.2) (2023-06-13)
733
+
734
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
735
+
736
+ ## [4.5.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.5.0...@bitgo/sdk-coin-eth@4.5.1) (2023-06-07)
737
+
738
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
739
+
740
+ # [4.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.4.4...@bitgo/sdk-coin-eth@4.5.0) (2023-06-05)
741
+
742
+ ### Bug Fixes
743
+
744
+ - **root:** update module deps ([98e0945](https://github.com/BitGo/BitGoJS/commit/98e09451f3ead6a0dd7c3aa3df62f8d000ba2f0e))
745
+
746
+ ### Features
747
+
748
+ - **sdk-core:** paillier proof user<>backup ([8c0a381](https://github.com/BitGo/BitGoJS/commit/8c0a381318be2088572e06e34c3627323d7bfe38))
749
+ - **sdk-core:** refactor signConvert to steps ([94e2cae](https://github.com/BitGo/BitGoJS/commit/94e2cae6e1292a4e9684c3c2ab7141221137d52e))
750
+ - **sdk-core:** simplify mpc.appendChallenge ([67bee8f](https://github.com/BitGo/BitGoJS/commit/67bee8f1b4f37cd12d6d14ea4d51ddcfde679563))
751
+ - **sdk-lib-mpc:** make rangeProof challenges mandatory for appendChallenge ([1f68b30](https://github.com/BitGo/BitGoJS/commit/1f68b30676966720cb1a42c039e35d3ddeea4974))
752
+
753
+ ## [4.4.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.4.3...@bitgo/sdk-coin-eth@4.4.4) (2023-05-25)
754
+
755
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
756
+
757
+ ## [4.4.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.4.2...@bitgo/sdk-coin-eth@4.4.3) (2023-05-17)
758
+
759
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
760
+
761
+ ## [4.4.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.4.1...@bitgo/sdk-coin-eth@4.4.2) (2023-05-10)
762
+
763
+ ### Bug Fixes
764
+
765
+ - **sdk-coin-eth:** fix eth multisig recoveries ([6e49792](https://github.com/BitGo/BitGoJS/commit/6e49792bfdb670a9e10dad10df932767b8ac6cdd))
766
+
767
+ ## [4.4.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.4.0...@bitgo/sdk-coin-eth@4.4.1) (2023-05-03)
768
+
769
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
770
+
6
771
  # [4.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.3.1...@bitgo/sdk-coin-eth@4.4.0) (2023-04-25)
7
772
 
8
773
  ### Features