@bitgo-beta/abstract-eth 1.2.3-alpha.37 → 1.2.3-alpha.371

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