@bitgo-beta/abstract-eth 1.2.3-alpha.30 → 1.2.3-alpha.301

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