@bitgo-beta/abstract-eth 1.0.2-beta.124 → 1.0.2-beta.1241

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