@bitgo-beta/abstract-eth 1.2.3-alpha.25 → 1.2.3-alpha.250

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