@bitgo-beta/abstract-eth 1.0.2-beta.115 → 1.0.2-beta.1150

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