@bitgo-beta/abstract-eth 1.2.3-alpha.36 → 1.2.3-alpha.361

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