@bitgo-beta/abstract-eth 1.0.2-beta.136 → 1.0.2-beta.1360

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