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

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