@bitgo-beta/abstract-eth 1.2.3-alpha.29 → 1.2.3-alpha.290

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