@bitgo-beta/abstract-eth 1.2.3-alpha.27 → 1.2.3-alpha.271

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