@bitgo-beta/abstract-eth 1.2.3-alpha.21 → 1.2.3-alpha.211

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