@bitgo-beta/abstract-eth 1.0.2-beta.9 → 1.0.2-beta.900

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