@bitgo-beta/abstract-eth 1.2.3-alpha.39 → 1.2.3-alpha.391

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