@bitgo-beta/abstract-eth 1.2.3-alpha.19 → 1.2.3-alpha.191

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