@bitgo-beta/abstract-eth 1.2.3-alpha.38 → 1.2.3-alpha.380

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