@bitgo-beta/abstract-eth 1.0.2-beta.81 → 1.0.2-beta.810

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