@bitgo-beta/abstract-eth 1.0.2-beta.13 → 1.0.2-beta.1300

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