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

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