@bitgo-beta/abstract-eth 1.0.2-beta.97 → 1.0.2-beta.970

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