@bitgo-beta/abstract-eth 1.2.3-alpha.20 → 1.2.3-alpha.201

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