@bitgo-beta/abstract-eth 1.0.2-beta.78 → 1.0.2-beta.781

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