@bitgo-beta/abstract-eth 1.2.3-alpha.31 → 1.2.3-alpha.310

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