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

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