@bitgo-beta/abstract-eth 1.0.2-beta.83 → 1.0.2-beta.830

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