@bitgo-beta/abstract-eth 1.2.3-alpha.28 → 1.2.3-alpha.280

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