@bitgo-beta/abstract-eth 1.0.2-beta.69 → 1.0.2-beta.691

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