@bitgo-beta/abstract-eth 1.0.2-beta.99 → 1.0.2-beta.990

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