@bitgo-beta/abstract-eth 1.2.3-alpha.28 → 1.2.3-alpha.281

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