@bitgo-beta/abstract-eth 1.0.2-beta.95 → 1.0.2-beta.950

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