@bitgo-beta/abstract-eth 1.2.3-alpha.23 → 1.2.3-alpha.230

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