@bitgo-beta/abstract-eth 1.0.2-beta.103 → 1.0.2-beta.1030

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