@bitgo-beta/abstract-eth 1.0.2-beta.114 → 1.0.2-beta.1140

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