@bitgo-beta/abstract-eth 1.2.3-alpha.35 → 1.2.3-alpha.350

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