@bitgo-beta/abstract-eth 1.2.3-alpha.25 → 1.2.3-alpha.251

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