@bitgo-beta/abstract-eth 1.0.2-beta.129 → 1.0.2-beta.1291

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