@bitgo-beta/abstract-eth 1.2.3-alpha.32 → 1.2.3-alpha.321

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