@bitgo-beta/abstract-eth 1.0.2-beta.116 → 1.0.2-beta.1161

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