@bitgo-beta/abstract-eth 1.0.2-beta.134 → 1.0.2-beta.1341

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