@bitgo-beta/abstract-eth 1.0.2-beta.108 → 1.0.2-beta.1081

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