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

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