@bitgo-beta/abstract-eth 1.0.2-beta.88 → 1.0.2-beta.880

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