@bitgo-beta/abstract-eth 1.2.3-alpha.33 → 1.2.3-alpha.330

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