@bitgo-beta/abstract-eth 1.2.3-alpha.34 → 1.2.3-alpha.341

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