@bitgo-beta/abstract-eth 1.0.2-beta.73 → 1.0.2-beta.731

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