@bitgo-beta/abstract-eth 1.0.2-beta.71 → 1.0.2-beta.711

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