@bitgo-beta/sdk-coin-eth 4.4.1-beta.25 → 4.4.1-beta.250

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 +962 -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,968 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [20.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@20.0.0) (2024-01-26)
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
+ # [19.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@19.0.0) (2024-01-26)
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
+ # [18.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@18.0.0) (2024-01-25)
121
+
122
+ ### Bug Fixes
123
+
124
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
125
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
126
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
127
+
128
+ ### Code Refactoring
129
+
130
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
131
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
132
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
133
+
134
+ ### Features
135
+
136
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
137
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
138
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
139
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
140
+
141
+ ### BREAKING CHANGES
142
+
143
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
144
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
145
+ getCustomChainName method is removed from Polygon class because a common
146
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
147
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
148
+ and needs to be passed to derive the Eth common object from the chainId.
149
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
150
+ it can be used for other EthLike coins. getBaseFactor method in Eth
151
+ and Polygon class returns number instead of string just to align with
152
+ AbstractEthLikeCoin
153
+ Ticket: WIN-1012
154
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
155
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
156
+ getCustomChainName method is removed from Polygon class because a common
157
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
158
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
159
+ and needs to be passed to derive the Eth common object from the chainId.
160
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
161
+ it can be used for other EthLike coins. getBaseFactor method in Eth
162
+ and Polygon class returns number instead of string just to align with
163
+ AbstractEthLikeCoin
164
+ Ticket: WIN-1012
165
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
166
+ class in abstract-eth module because TransactionBuilder in the
167
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
168
+ be added to the class that will inherit EthLikeToken class
169
+
170
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
171
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
172
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
173
+ support for hop transactions, batch transactions, etc
174
+
175
+ TICKET: WIN-1021
176
+
177
+ # [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)
178
+
179
+ ### Bug Fixes
180
+
181
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
182
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
183
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
184
+
185
+ ### Code Refactoring
186
+
187
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
188
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
189
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
190
+
191
+ ### Features
192
+
193
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
194
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
195
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
196
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
197
+
198
+ ### BREAKING CHANGES
199
+
200
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
201
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
202
+ getCustomChainName method is removed from Polygon class because a common
203
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
204
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
205
+ and needs to be passed to derive the Eth common object from the chainId.
206
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
207
+ it can be used for other EthLike coins. getBaseFactor method in Eth
208
+ and Polygon class returns number instead of string just to align with
209
+ AbstractEthLikeCoin
210
+ Ticket: WIN-1012
211
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
212
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
213
+ getCustomChainName method is removed from Polygon class because a common
214
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
215
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
216
+ and needs to be passed to derive the Eth common object from the chainId.
217
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
218
+ it can be used for other EthLike coins. getBaseFactor method in Eth
219
+ and Polygon class returns number instead of string just to align with
220
+ AbstractEthLikeCoin
221
+ Ticket: WIN-1012
222
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
223
+ class in abstract-eth module because TransactionBuilder in the
224
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
225
+ be added to the class that will inherit EthLikeToken class
226
+
227
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
228
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
229
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
230
+ support for hop transactions, batch transactions, etc
231
+
232
+ TICKET: WIN-1021
233
+
234
+ # [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)
235
+
236
+ ### Bug Fixes
237
+
238
+ - **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
239
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
240
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
241
+
242
+ ### Code Refactoring
243
+
244
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
245
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
246
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
247
+
248
+ ### Features
249
+
250
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
251
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
252
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
253
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
254
+
255
+ ### BREAKING CHANGES
256
+
257
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
258
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
259
+ getCustomChainName method is removed from Polygon class because a common
260
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
261
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
262
+ and needs to be passed to derive the Eth common object from the chainId.
263
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
264
+ it can be used for other EthLike coins. getBaseFactor method in Eth
265
+ and Polygon class returns number instead of string just to align with
266
+ AbstractEthLikeCoin
267
+ Ticket: WIN-1012
268
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
269
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
270
+ getCustomChainName method is removed from Polygon class because a common
271
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
272
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
273
+ and needs to be passed to derive the Eth common object from the chainId.
274
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
275
+ it can be used for other EthLike coins. getBaseFactor method in Eth
276
+ and Polygon class returns number instead of string just to align with
277
+ AbstractEthLikeCoin
278
+ Ticket: WIN-1012
279
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
280
+ class in abstract-eth module because TransactionBuilder in the
281
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
282
+ be added to the class that will inherit EthLikeToken class
283
+
284
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
285
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
286
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
287
+ support for hop transactions, batch transactions, etc
288
+
289
+ TICKET: WIN-1021
290
+
291
+ # [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)
292
+
293
+ ### Bug Fixes
294
+
295
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
296
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
297
+
298
+ ### Code Refactoring
299
+
300
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
301
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
302
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
303
+
304
+ ### Features
305
+
306
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
307
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
308
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
309
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
310
+
311
+ ### BREAKING CHANGES
312
+
313
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
314
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
315
+ getCustomChainName method is removed from Polygon class because a common
316
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
317
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
318
+ and needs to be passed to derive the Eth common object from the chainId.
319
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
320
+ it can be used for other EthLike coins. getBaseFactor method in Eth
321
+ and Polygon class returns number instead of string just to align with
322
+ AbstractEthLikeCoin
323
+ Ticket: WIN-1012
324
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
325
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
326
+ getCustomChainName method is removed from Polygon class because a common
327
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
328
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
329
+ and needs to be passed to derive the Eth common object from the chainId.
330
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
331
+ it can be used for other EthLike coins. getBaseFactor method in Eth
332
+ and Polygon class returns number instead of string just to align with
333
+ AbstractEthLikeCoin
334
+ Ticket: WIN-1012
335
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
336
+ class in abstract-eth module because TransactionBuilder in the
337
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
338
+ be added to the class that will inherit EthLikeToken class
339
+
340
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
341
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
342
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
343
+ support for hop transactions, batch transactions, etc
344
+
345
+ TICKET: WIN-1021
346
+
347
+ # [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)
348
+
349
+ ### Bug Fixes
350
+
351
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
352
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
353
+
354
+ ### Code Refactoring
355
+
356
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
357
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
358
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
359
+
360
+ ### Features
361
+
362
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
363
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
364
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
365
+
366
+ ### BREAKING CHANGES
367
+
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:** Type of nextContractSequenceId field in TransactionPrebuild
380
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
381
+ getCustomChainName method is removed from Polygon class because a common
382
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
383
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
384
+ and needs to be passed to derive the Eth common object from the chainId.
385
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
386
+ it can be used for other EthLike coins. getBaseFactor method in Eth
387
+ and Polygon class returns number instead of string just to align with
388
+ AbstractEthLikeCoin
389
+ Ticket: WIN-1012
390
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
391
+ class in abstract-eth module because TransactionBuilder in the
392
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
393
+ be added to the class that will inherit EthLikeToken class
394
+
395
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
396
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
397
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
398
+ support for hop transactions, batch transactions, etc
399
+
400
+ TICKET: WIN-1021
401
+
402
+ # [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)
403
+
404
+ ### Bug Fixes
405
+
406
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
407
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
408
+
409
+ ### Code Refactoring
410
+
411
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
412
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
413
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
414
+
415
+ ### Features
416
+
417
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
418
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
419
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
420
+
421
+ ### BREAKING CHANGES
422
+
423
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
424
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
425
+ getCustomChainName method is removed from Polygon class because a common
426
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
427
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
428
+ and needs to be passed to derive the Eth common object from the chainId.
429
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
430
+ it can be used for other EthLike coins. getBaseFactor method in Eth
431
+ and Polygon class returns number instead of string just to align with
432
+ AbstractEthLikeCoin
433
+ Ticket: WIN-1012
434
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
435
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
436
+ getCustomChainName method is removed from Polygon class because a common
437
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
438
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
439
+ and needs to be passed to derive the Eth common object from the chainId.
440
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
441
+ it can be used for other EthLike coins. getBaseFactor method in Eth
442
+ and Polygon class returns number instead of string just to align with
443
+ AbstractEthLikeCoin
444
+ Ticket: WIN-1012
445
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
446
+ class in abstract-eth module because TransactionBuilder in the
447
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
448
+ be added to the class that will inherit EthLikeToken class
449
+
450
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
451
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
452
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
453
+ support for hop transactions, batch transactions, etc
454
+
455
+ TICKET: WIN-1021
456
+
457
+ # [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)
458
+
459
+ ### Bug Fixes
460
+
461
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
462
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
463
+
464
+ ### Code Refactoring
465
+
466
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
467
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
468
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
469
+
470
+ ### Features
471
+
472
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
473
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
474
+
475
+ ### BREAKING CHANGES
476
+
477
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
478
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
479
+ getCustomChainName method is removed from Polygon class because a common
480
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
481
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
482
+ and needs to be passed to derive the Eth common object from the chainId.
483
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
484
+ it can be used for other EthLike coins. getBaseFactor method in Eth
485
+ and Polygon class returns number instead of string just to align with
486
+ AbstractEthLikeCoin
487
+ Ticket: WIN-1012
488
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
489
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
490
+ getCustomChainName method is removed from Polygon class because a common
491
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
492
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
493
+ and needs to be passed to derive the Eth common object from the chainId.
494
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
495
+ it can be used for other EthLike coins. getBaseFactor method in Eth
496
+ and Polygon class returns number instead of string just to align with
497
+ AbstractEthLikeCoin
498
+ Ticket: WIN-1012
499
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
500
+ class in abstract-eth module because TransactionBuilder in the
501
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
502
+ be added to the class that will inherit EthLikeToken class
503
+
504
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
505
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
506
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
507
+ support for hop transactions, batch transactions, etc
508
+
509
+ TICKET: WIN-1021
510
+
511
+ # [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)
512
+
513
+ ### Bug Fixes
514
+
515
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
516
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
517
+
518
+ ### Code Refactoring
519
+
520
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
521
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
522
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
523
+
524
+ ### Features
525
+
526
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
527
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
528
+
529
+ ### BREAKING CHANGES
530
+
531
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
532
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
533
+ getCustomChainName method is removed from Polygon class because a common
534
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
535
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
536
+ and needs to be passed to derive the Eth common object from the chainId.
537
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
538
+ it can be used for other EthLike coins. getBaseFactor method in Eth
539
+ and Polygon class returns number instead of string just to align with
540
+ AbstractEthLikeCoin
541
+ Ticket: WIN-1012
542
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
543
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
544
+ getCustomChainName method is removed from Polygon class because a common
545
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
546
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
547
+ and needs to be passed to derive the Eth common object from the chainId.
548
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
549
+ it can be used for other EthLike coins. getBaseFactor method in Eth
550
+ and Polygon class returns number instead of string just to align with
551
+ AbstractEthLikeCoin
552
+ Ticket: WIN-1012
553
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
554
+ class in abstract-eth module because TransactionBuilder in the
555
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
556
+ be added to the class that will inherit EthLikeToken class
557
+
558
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
559
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
560
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
561
+ support for hop transactions, batch transactions, etc
562
+
563
+ TICKET: WIN-1021
564
+
565
+ # [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)
566
+
567
+ ### Bug Fixes
568
+
569
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
570
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
571
+
572
+ ### Code Refactoring
573
+
574
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
575
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
576
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
577
+
578
+ ### Features
579
+
580
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
581
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
582
+
583
+ ### BREAKING CHANGES
584
+
585
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
586
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
587
+ getCustomChainName method is removed from Polygon class because a common
588
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
589
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
590
+ and needs to be passed to derive the Eth common object from the chainId.
591
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
592
+ it can be used for other EthLike coins. getBaseFactor method in Eth
593
+ and Polygon class returns number instead of string just to align with
594
+ AbstractEthLikeCoin
595
+ Ticket: WIN-1012
596
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
597
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
598
+ getCustomChainName method is removed from Polygon class because a common
599
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
600
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
601
+ and needs to be passed to derive the Eth common object from the chainId.
602
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
603
+ it can be used for other EthLike coins. getBaseFactor method in Eth
604
+ and Polygon class returns number instead of string just to align with
605
+ AbstractEthLikeCoin
606
+ Ticket: WIN-1012
607
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
608
+ class in abstract-eth module because TransactionBuilder in the
609
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
610
+ be added to the class that will inherit EthLikeToken class
611
+
612
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
613
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
614
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
615
+ support for hop transactions, batch transactions, etc
616
+
617
+ TICKET: WIN-1021
618
+
619
+ # [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)
620
+
621
+ ### Bug Fixes
622
+
623
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
624
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
625
+
626
+ ### Code Refactoring
627
+
628
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
629
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
630
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
631
+
632
+ ### Features
633
+
634
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
635
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
636
+
637
+ ### BREAKING CHANGES
638
+
639
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
640
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
641
+ getCustomChainName method is removed from Polygon class because a common
642
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
643
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
644
+ and needs to be passed to derive the Eth common object from the chainId.
645
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
646
+ it can be used for other EthLike coins. getBaseFactor method in Eth
647
+ and Polygon class returns number instead of string just to align with
648
+ AbstractEthLikeCoin
649
+ Ticket: WIN-1012
650
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
651
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
652
+ getCustomChainName method is removed from Polygon class because a common
653
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
654
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
655
+ and needs to be passed to derive the Eth common object from the chainId.
656
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
657
+ it can be used for other EthLike coins. getBaseFactor method in Eth
658
+ and Polygon class returns number instead of string just to align with
659
+ AbstractEthLikeCoin
660
+ Ticket: WIN-1012
661
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
662
+ class in abstract-eth module because TransactionBuilder in the
663
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
664
+ be added to the class that will inherit EthLikeToken class
665
+
666
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
667
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
668
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
669
+ support for hop transactions, batch transactions, etc
670
+
671
+ TICKET: WIN-1021
672
+
673
+ # [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)
674
+
675
+ ### Bug Fixes
676
+
677
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
678
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
679
+
680
+ ### Code Refactoring
681
+
682
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
683
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
684
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
685
+
686
+ ### Features
687
+
688
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
689
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
690
+
691
+ ### BREAKING CHANGES
692
+
693
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
694
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
695
+ getCustomChainName method is removed from Polygon class because a common
696
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
697
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
698
+ and needs to be passed to derive the Eth common object from the chainId.
699
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
700
+ it can be used for other EthLike coins. getBaseFactor method in Eth
701
+ and Polygon class returns number instead of string just to align with
702
+ AbstractEthLikeCoin
703
+ Ticket: WIN-1012
704
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
705
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
706
+ getCustomChainName method is removed from Polygon class because a common
707
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
708
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
709
+ and needs to be passed to derive the Eth common object from the chainId.
710
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
711
+ it can be used for other EthLike coins. getBaseFactor method in Eth
712
+ and Polygon class returns number instead of string just to align with
713
+ AbstractEthLikeCoin
714
+ Ticket: WIN-1012
715
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
716
+ class in abstract-eth module because TransactionBuilder in the
717
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
718
+ be added to the class that will inherit EthLikeToken class
719
+
720
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
721
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
722
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
723
+ support for hop transactions, batch transactions, etc
724
+
725
+ TICKET: WIN-1021
726
+
727
+ # [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)
728
+
729
+ ### Bug Fixes
730
+
731
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
732
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
733
+
734
+ ### Code Refactoring
735
+
736
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
737
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
738
+
739
+ ### Features
740
+
741
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
742
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
743
+
744
+ ### BREAKING CHANGES
745
+
746
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
747
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
748
+ getCustomChainName method is removed from Polygon class because a common
749
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
750
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
751
+ and needs to be passed to derive the Eth common object from the chainId.
752
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
753
+ it can be used for other EthLike coins. getBaseFactor method in Eth
754
+ and Polygon class returns number instead of string just to align with
755
+ AbstractEthLikeCoin
756
+ Ticket: WIN-1012
757
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
758
+ class in abstract-eth module because TransactionBuilder in the
759
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
760
+ be added to the class that will inherit EthLikeToken class
761
+
762
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
763
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
764
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
765
+ support for hop transactions, batch transactions, etc
766
+
767
+ TICKET: WIN-1021
768
+
769
+ # [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)
770
+
771
+ ### Bug Fixes
772
+
773
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
774
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
775
+
776
+ ### Code Refactoring
777
+
778
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
779
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
780
+
781
+ ### Features
782
+
783
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
784
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
785
+
786
+ ### BREAKING CHANGES
787
+
788
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
789
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
790
+ getCustomChainName method is removed from Polygon class because a common
791
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
792
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
793
+ and needs to be passed to derive the Eth common object from the chainId.
794
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
795
+ it can be used for other EthLike coins. getBaseFactor method in Eth
796
+ and Polygon class returns number instead of string just to align with
797
+ AbstractEthLikeCoin
798
+ Ticket: WIN-1012
799
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
800
+ class in abstract-eth module because TransactionBuilder in the
801
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
802
+ be added to the class that will inherit EthLikeToken class
803
+
804
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
805
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
806
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
807
+ support for hop transactions, batch transactions, etc
808
+
809
+ TICKET: WIN-1021
810
+
811
+ # [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)
812
+
813
+ ### Bug Fixes
814
+
815
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
816
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
817
+
818
+ ### Code Refactoring
819
+
820
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
821
+ - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
822
+
823
+ ### Features
824
+
825
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
826
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
827
+
828
+ ### BREAKING CHANGES
829
+
830
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
831
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
832
+ getCustomChainName method is removed from Polygon class because a common
833
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
834
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
835
+ and needs to be passed to derive the Eth common object from the chainId.
836
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
837
+ it can be used for other EthLike coins. getBaseFactor method in Eth
838
+ and Polygon class returns number instead of string just to align with
839
+ AbstractEthLikeCoin
840
+ Ticket: WIN-1012
841
+ - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
842
+ class in abstract-eth module because TransactionBuilder in the
843
+ abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
844
+ be added to the class that will inherit EthLikeToken class
845
+
846
+ TransactionPrebuild from new class AbstractEthLikeNewCoins is being
847
+ exported now instead of TransactionPrebuild from AbstractEthLikeCoin
848
+ class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
849
+ support for hop transactions, batch transactions, etc
850
+
851
+ TICKET: WIN-1021
852
+
853
+ # [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)
854
+
855
+ ### Bug Fixes
856
+
857
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
858
+
859
+ ### Features
860
+
861
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
862
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
863
+
864
+ # [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)
865
+
866
+ ### Bug Fixes
867
+
868
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
869
+
870
+ ### Features
871
+
872
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
873
+
874
+ # [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)
875
+
876
+ ### Bug Fixes
877
+
878
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
879
+
880
+ ### Features
881
+
882
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
883
+
884
+ ## [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)
885
+
886
+ ### Bug Fixes
887
+
888
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
889
+
890
+ ## [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)
891
+
892
+ ### Bug Fixes
893
+
894
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
895
+
896
+ ## [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)
897
+
898
+ ### Bug Fixes
899
+
900
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
901
+
902
+ ## [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)
903
+
904
+ ### Bug Fixes
905
+
906
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
907
+
908
+ ## [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)
909
+
910
+ ### Bug Fixes
911
+
912
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
913
+
914
+ ## [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)
915
+
916
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
917
+
918
+ ## [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)
919
+
920
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
921
+
922
+ ## [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)
923
+
924
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
925
+
926
+ ## [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)
927
+
928
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
929
+
930
+ ## [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)
931
+
932
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
933
+
934
+ # [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)
935
+
936
+ ### Features
937
+
938
+ - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
939
+ - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
940
+
941
+ # [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)
942
+
943
+ ### Features
944
+
945
+ - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
946
+ - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
947
+
948
+ ## [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)
949
+
950
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
951
+
952
+ ## [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)
953
+
954
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
955
+
956
+ ## [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)
957
+
958
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
959
+
960
+ ## [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)
961
+
962
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
963
+
964
+ ## [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)
965
+
966
+ **Note:** Version bump only for package @bitgo/sdk-coin-eth
967
+
6
968
  # [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)
7
969
 
8
970
  ### Bug Fixes