@bitgo-beta/abstract-eth 1.0.2-beta.84 → 1.0.2-beta.841

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