@bitgo-beta/abstract-eth 1.2.3-alpha.404 → 1.2.3-alpha.406

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