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

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