@bitgo-beta/abstract-eth 1.2.3-alpha.22 → 1.2.3-alpha.220

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