@bitgo-beta/abstract-eth 1.2.3-alpha.19 → 1.2.3-alpha.190

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