@bitgo-beta/sdk-coin-eth 4.4.1-beta.192 → 4.4.1-beta.1921

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 (119) hide show
  1. package/dist/src/erc20Token.d.ts +1 -1
  2. package/dist/src/erc20Token.d.ts.map +1 -1
  3. package/dist/src/erc20Token.js +49 -28
  4. package/dist/src/erc721Token.d.ts +60 -0
  5. package/dist/src/erc721Token.d.ts.map +1 -0
  6. package/dist/src/erc721Token.js +334 -0
  7. package/dist/src/erc7984Token.d.ts +118 -0
  8. package/dist/src/erc7984Token.d.ts.map +1 -0
  9. package/dist/src/erc7984Token.js +459 -0
  10. package/dist/src/eth.d.ts +10 -8
  11. package/dist/src/eth.d.ts.map +1 -1
  12. package/dist/src/eth.js +54 -39
  13. package/dist/src/index.d.ts +2 -0
  14. package/dist/src/index.d.ts.map +1 -1
  15. package/dist/src/index.js +8 -2
  16. package/dist/src/lib/index.d.ts +1 -0
  17. package/dist/src/lib/index.d.ts.map +1 -1
  18. package/dist/src/lib/index.js +7 -2
  19. package/dist/src/lib/messages/index.d.ts +3 -0
  20. package/dist/src/lib/messages/index.d.ts.map +1 -0
  21. package/dist/src/lib/messages/index.js +6 -0
  22. package/dist/src/lib/transactionBuilder.d.ts +10 -5
  23. package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
  24. package/dist/src/lib/transactionBuilder.js +17 -7
  25. package/dist/src/lib/transferBuilders/index.d.ts +2 -2
  26. package/dist/src/lib/transferBuilders/index.d.ts.map +1 -1
  27. package/dist/src/lib/transferBuilders/index.js +3 -2
  28. package/dist/src/register.d.ts +2 -0
  29. package/dist/src/register.d.ts.map +1 -1
  30. package/dist/src/register.js +36 -2
  31. package/dist/test/fixtures/eth.d.ts +39 -0
  32. package/dist/test/fixtures/eth.d.ts.map +1 -0
  33. package/dist/test/fixtures/eth.js +262 -0
  34. package/dist/test/resources/erc1155Abi.d.ts +40 -0
  35. package/dist/test/resources/erc1155Abi.d.ts.map +1 -0
  36. package/dist/test/resources/erc1155Abi.js +329 -0
  37. package/dist/test/resources/erc721Abi.d.ts +12 -0
  38. package/dist/test/resources/erc721Abi.d.ts.map +1 -0
  39. package/dist/test/resources/erc721Abi.js +34 -0
  40. package/dist/test/resources/eth.d.ts +51 -0
  41. package/dist/test/resources/eth.d.ts.map +1 -0
  42. package/dist/test/resources/eth.js +72 -0
  43. package/dist/test/resources/nftEncodings.d.ts +4 -0
  44. package/dist/test/resources/nftEncodings.d.ts.map +1 -0
  45. package/dist/test/resources/nftEncodings.js +7 -0
  46. package/dist/test/resources/walletSimpleAbi.d.ts +12 -0
  47. package/dist/test/resources/walletSimpleAbi.d.ts.map +1 -0
  48. package/dist/test/resources/walletSimpleAbi.js +44 -0
  49. package/dist/test/unit/erc7984Token.d.ts +2 -0
  50. package/dist/test/unit/erc7984Token.d.ts.map +1 -0
  51. package/dist/test/unit/erc7984Token.js +1034 -0
  52. package/dist/test/unit/eth.d.ts +2 -0
  53. package/dist/test/unit/eth.d.ts.map +1 -0
  54. package/dist/test/unit/eth.js +2568 -0
  55. package/dist/test/unit/ethWallet.d.ts +2 -0
  56. package/dist/test/unit/ethWallet.d.ts.map +1 -0
  57. package/dist/test/unit/ethWallet.js +552 -0
  58. package/dist/test/unit/fixtures/ethMultiSigBackupKey.d.ts +4 -0
  59. package/dist/test/unit/fixtures/ethMultiSigBackupKey.d.ts.map +1 -0
  60. package/dist/test/unit/fixtures/ethMultiSigBackupKey.js +10 -0
  61. package/dist/test/unit/fixtures/ethTssBackupKey.d.ts +5 -0
  62. package/dist/test/unit/fixtures/ethTssBackupKey.d.ts.map +1 -0
  63. package/dist/test/unit/fixtures/ethTssBackupKey.js +25 -0
  64. package/dist/test/unit/getBuilder.d.ts +3 -0
  65. package/dist/test/unit/getBuilder.d.ts.map +1 -0
  66. package/dist/test/unit/getBuilder.js +10 -0
  67. package/dist/test/unit/keyPair.d.ts +2 -0
  68. package/dist/test/unit/keyPair.d.ts.map +1 -0
  69. package/dist/test/unit/keyPair.js +175 -0
  70. package/dist/test/unit/register.d.ts +2 -0
  71. package/dist/test/unit/register.d.ts.map +1 -0
  72. package/dist/test/unit/register.js +73 -0
  73. package/dist/test/unit/transaction.d.ts +2 -0
  74. package/dist/test/unit/transaction.d.ts.map +1 -0
  75. package/dist/test/unit/transaction.js +117 -0
  76. package/dist/test/unit/transactionBuilder/addressInitialization.d.ts +2 -0
  77. package/dist/test/unit/transactionBuilder/addressInitialization.d.ts.map +1 -0
  78. package/dist/test/unit/transactionBuilder/addressInitialization.js +101 -0
  79. package/dist/test/unit/transactionBuilder/contractCall.d.ts +2 -0
  80. package/dist/test/unit/transactionBuilder/contractCall.d.ts.map +1 -0
  81. package/dist/test/unit/transactionBuilder/contractCall.js +101 -0
  82. package/dist/test/unit/transactionBuilder/decryptionDelegation.d.ts +2 -0
  83. package/dist/test/unit/transactionBuilder/decryptionDelegation.d.ts.map +1 -0
  84. package/dist/test/unit/transactionBuilder/decryptionDelegation.js +59 -0
  85. package/dist/test/unit/transactionBuilder/decryptionDelegationTxBuilder.d.ts +2 -0
  86. package/dist/test/unit/transactionBuilder/decryptionDelegationTxBuilder.d.ts.map +1 -0
  87. package/dist/test/unit/transactionBuilder/decryptionDelegationTxBuilder.js +136 -0
  88. package/dist/test/unit/transactionBuilder/flushCoins.d.ts +2 -0
  89. package/dist/test/unit/transactionBuilder/flushCoins.d.ts.map +1 -0
  90. package/dist/test/unit/transactionBuilder/flushCoins.js +133 -0
  91. package/dist/test/unit/transactionBuilder/flushTokens.d.ts +2 -0
  92. package/dist/test/unit/transactionBuilder/flushTokens.d.ts.map +1 -0
  93. package/dist/test/unit/transactionBuilder/flushTokens.js +285 -0
  94. package/dist/test/unit/transactionBuilder/send.d.ts +2 -0
  95. package/dist/test/unit/transactionBuilder/send.d.ts.map +1 -0
  96. package/dist/test/unit/transactionBuilder/send.js +331 -0
  97. package/dist/test/unit/transactionBuilder/sendERC7984Token.d.ts +2 -0
  98. package/dist/test/unit/transactionBuilder/sendERC7984Token.d.ts.map +1 -0
  99. package/dist/test/unit/transactionBuilder/sendERC7984Token.js +361 -0
  100. package/dist/test/unit/transactionBuilder/sendNFT.d.ts +2 -0
  101. package/dist/test/unit/transactionBuilder/sendNFT.d.ts.map +1 -0
  102. package/dist/test/unit/transactionBuilder/sendNFT.js +295 -0
  103. package/dist/test/unit/transactionBuilder/singleSigSend.d.ts +2 -0
  104. package/dist/test/unit/transactionBuilder/singleSigSend.d.ts.map +1 -0
  105. package/dist/test/unit/transactionBuilder/singleSigSend.js +196 -0
  106. package/dist/test/unit/transactionBuilder/walletInitialization.d.ts +2 -0
  107. package/dist/test/unit/transactionBuilder/walletInitialization.d.ts.map +1 -0
  108. package/dist/test/unit/transactionBuilder/walletInitialization.js +436 -0
  109. package/dist/test/unit/transferBuilder.d.ts +2 -0
  110. package/dist/test/unit/transferBuilder.d.ts.map +1 -0
  111. package/dist/test/unit/transferBuilder.js +124 -0
  112. package/dist/test/unit/utils.d.ts +2 -0
  113. package/dist/test/unit/utils.d.ts.map +1 -0
  114. package/dist/test/unit/utils.js +74 -0
  115. package/dist/tsconfig.tsbuildinfo +1 -0
  116. package/package.json +17 -13
  117. package/.eslintignore +0 -5
  118. package/.mocharc.yml +0 -8
  119. package/CHANGELOG.md +0 -717
package/CHANGELOG.md DELETED
@@ -1,717 +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
- # [11.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@11.0.0) (2023-12-05)
7
-
8
- ### Bug Fixes
9
-
10
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
11
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
12
-
13
- ### Code Refactoring
14
-
15
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
16
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
17
- - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
18
-
19
- ### Features
20
-
21
- - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
22
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
23
-
24
- ### BREAKING CHANGES
25
-
26
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
27
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
28
- getCustomChainName method is removed from Polygon class because a common
29
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
30
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
31
- and needs to be passed to derive the Eth common object from the chainId.
32
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
33
- it can be used for other EthLike coins. getBaseFactor method in Eth
34
- and Polygon class returns number instead of string just to align with
35
- AbstractEthLikeCoin
36
- Ticket: WIN-1012
37
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
38
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
39
- getCustomChainName method is removed from Polygon class because a common
40
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
41
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
42
- and needs to be passed to derive the Eth common object from the chainId.
43
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
44
- it can be used for other EthLike coins. getBaseFactor method in Eth
45
- and Polygon class returns number instead of string just to align with
46
- AbstractEthLikeCoin
47
- Ticket: WIN-1012
48
- - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
49
- class in abstract-eth module because TransactionBuilder in the
50
- abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
51
- be added to the class that will inherit EthLikeToken class
52
-
53
- TransactionPrebuild from new class AbstractEthLikeNewCoins is being
54
- exported now instead of TransactionPrebuild from AbstractEthLikeCoin
55
- class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
56
- support for hop transactions, batch transactions, etc
57
-
58
- TICKET: WIN-1021
59
-
60
- # [10.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@10.0.0) (2023-11-28)
61
-
62
- ### Bug Fixes
63
-
64
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
65
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
66
-
67
- ### Code Refactoring
68
-
69
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
70
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
71
- - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
72
-
73
- ### Features
74
-
75
- - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
76
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
77
-
78
- ### BREAKING CHANGES
79
-
80
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
81
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
82
- getCustomChainName method is removed from Polygon class because a common
83
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
84
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
85
- and needs to be passed to derive the Eth common object from the chainId.
86
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
87
- it can be used for other EthLike coins. getBaseFactor method in Eth
88
- and Polygon class returns number instead of string just to align with
89
- AbstractEthLikeCoin
90
- Ticket: WIN-1012
91
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
92
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
93
- getCustomChainName method is removed from Polygon class because a common
94
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
95
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
96
- and needs to be passed to derive the Eth common object from the chainId.
97
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
98
- it can be used for other EthLike coins. getBaseFactor method in Eth
99
- and Polygon class returns number instead of string just to align with
100
- AbstractEthLikeCoin
101
- Ticket: WIN-1012
102
- - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
103
- class in abstract-eth module because TransactionBuilder in the
104
- abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
105
- be added to the class that will inherit EthLikeToken class
106
-
107
- TransactionPrebuild from new class AbstractEthLikeNewCoins is being
108
- exported now instead of TransactionPrebuild from AbstractEthLikeCoin
109
- class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
110
- support for hop transactions, batch transactions, etc
111
-
112
- TICKET: WIN-1021
113
-
114
- # [9.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@9.0.0) (2023-11-24)
115
-
116
- ### Bug Fixes
117
-
118
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
119
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
120
-
121
- ### Code Refactoring
122
-
123
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
124
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
125
- - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
126
-
127
- ### Features
128
-
129
- - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
130
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
131
-
132
- ### BREAKING CHANGES
133
-
134
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
135
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
136
- getCustomChainName method is removed from Polygon class because a common
137
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
138
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
139
- and needs to be passed to derive the Eth common object from the chainId.
140
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
141
- it can be used for other EthLike coins. getBaseFactor method in Eth
142
- and Polygon class returns number instead of string just to align with
143
- AbstractEthLikeCoin
144
- Ticket: WIN-1012
145
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
146
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
147
- getCustomChainName method is removed from Polygon class because a common
148
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
149
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
150
- and needs to be passed to derive the Eth common object from the chainId.
151
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
152
- it can be used for other EthLike coins. getBaseFactor method in Eth
153
- and Polygon class returns number instead of string just to align with
154
- AbstractEthLikeCoin
155
- Ticket: WIN-1012
156
- - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
157
- class in abstract-eth module because TransactionBuilder in the
158
- abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
159
- be added to the class that will inherit EthLikeToken class
160
-
161
- TransactionPrebuild from new class AbstractEthLikeNewCoins is being
162
- exported now instead of TransactionPrebuild from AbstractEthLikeCoin
163
- class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
164
- support for hop transactions, batch transactions, etc
165
-
166
- TICKET: WIN-1021
167
-
168
- # [8.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@8.0.0) (2023-11-17)
169
-
170
- ### Bug Fixes
171
-
172
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
173
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
174
-
175
- ### Code Refactoring
176
-
177
- - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
178
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
179
- - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
180
-
181
- ### Features
182
-
183
- - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
184
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
185
-
186
- ### BREAKING CHANGES
187
-
188
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
189
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
190
- getCustomChainName method is removed from Polygon class because a common
191
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
192
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
193
- and needs to be passed to derive the Eth common object from the chainId.
194
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
195
- it can be used for other EthLike coins. getBaseFactor method in Eth
196
- and Polygon class returns number instead of string just to align with
197
- AbstractEthLikeCoin
198
- Ticket: WIN-1012
199
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
200
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
201
- getCustomChainName method is removed from Polygon class because a common
202
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
203
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
204
- and needs to be passed to derive the Eth common object from the chainId.
205
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
206
- it can be used for other EthLike coins. getBaseFactor method in Eth
207
- and Polygon class returns number instead of string just to align with
208
- AbstractEthLikeCoin
209
- Ticket: WIN-1012
210
- - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
211
- class in abstract-eth module because TransactionBuilder in the
212
- abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
213
- be added to the class that will inherit EthLikeToken class
214
-
215
- TransactionPrebuild from new class AbstractEthLikeNewCoins is being
216
- exported now instead of TransactionPrebuild from AbstractEthLikeCoin
217
- class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
218
- support for hop transactions, batch transactions, etc
219
-
220
- TICKET: WIN-1021
221
-
222
- # [7.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@7.0.0) (2023-11-13)
223
-
224
- ### Bug Fixes
225
-
226
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
227
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
228
-
229
- ### Code Refactoring
230
-
231
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
232
- - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
233
-
234
- ### Features
235
-
236
- - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
237
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
238
-
239
- ### BREAKING CHANGES
240
-
241
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
242
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
243
- getCustomChainName method is removed from Polygon class because a common
244
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
245
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
246
- and needs to be passed to derive the Eth common object from the chainId.
247
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
248
- it can be used for other EthLike coins. getBaseFactor method in Eth
249
- and Polygon class returns number instead of string just to align with
250
- AbstractEthLikeCoin
251
- Ticket: WIN-1012
252
- - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
253
- class in abstract-eth module because TransactionBuilder in the
254
- abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
255
- be added to the class that will inherit EthLikeToken class
256
-
257
- TransactionPrebuild from new class AbstractEthLikeNewCoins is being
258
- exported now instead of TransactionPrebuild from AbstractEthLikeCoin
259
- class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
260
- support for hop transactions, batch transactions, etc
261
-
262
- TICKET: WIN-1021
263
-
264
- # [6.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@6.0.0) (2023-11-13)
265
-
266
- ### Bug Fixes
267
-
268
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
269
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
270
-
271
- ### Code Refactoring
272
-
273
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
274
- - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
275
-
276
- ### Features
277
-
278
- - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
279
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
280
-
281
- ### BREAKING CHANGES
282
-
283
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
284
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
285
- getCustomChainName method is removed from Polygon class because a common
286
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
287
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
288
- and needs to be passed to derive the Eth common object from the chainId.
289
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
290
- it can be used for other EthLike coins. getBaseFactor method in Eth
291
- and Polygon class returns number instead of string just to align with
292
- AbstractEthLikeCoin
293
- Ticket: WIN-1012
294
- - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
295
- class in abstract-eth module because TransactionBuilder in the
296
- abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
297
- be added to the class that will inherit EthLikeToken class
298
-
299
- TransactionPrebuild from new class AbstractEthLikeNewCoins is being
300
- exported now instead of TransactionPrebuild from AbstractEthLikeCoin
301
- class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
302
- support for hop transactions, batch transactions, etc
303
-
304
- TICKET: WIN-1021
305
-
306
- # [5.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@5.0.0) (2023-11-13)
307
-
308
- ### Bug Fixes
309
-
310
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
311
- - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
312
-
313
- ### Code Refactoring
314
-
315
- - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
316
- - **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
317
-
318
- ### Features
319
-
320
- - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
321
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
322
-
323
- ### BREAKING CHANGES
324
-
325
- - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
326
- interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
327
- getCustomChainName method is removed from Polygon class because a common
328
- method getCustomChainCommon has been added to AbstractEthLikeNewCoins
329
- class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
330
- and needs to be passed to derive the Eth common object from the chainId.
331
- signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
332
- it can be used for other EthLike coins. getBaseFactor method in Eth
333
- and Polygon class returns number instead of string just to align with
334
- AbstractEthLikeCoin
335
- Ticket: WIN-1012
336
- - **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
337
- class in abstract-eth module because TransactionBuilder in the
338
- abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
339
- be added to the class that will inherit EthLikeToken class
340
-
341
- TransactionPrebuild from new class AbstractEthLikeNewCoins is being
342
- exported now instead of TransactionPrebuild from AbstractEthLikeCoin
343
- class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
344
- support for hop transactions, batch transactions, etc
345
-
346
- TICKET: WIN-1021
347
-
348
- # [4.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.10.0) (2023-10-20)
349
-
350
- ### Bug Fixes
351
-
352
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
353
-
354
- ### Features
355
-
356
- - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
357
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
358
-
359
- # [4.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.9.0) (2023-10-18)
360
-
361
- ### Bug Fixes
362
-
363
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
364
-
365
- ### Features
366
-
367
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
368
-
369
- # [4.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.8.0) (2023-09-25)
370
-
371
- ### Bug Fixes
372
-
373
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
374
-
375
- ### Features
376
-
377
- - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
378
-
379
- ## [4.7.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.10) (2023-09-09)
380
-
381
- ### Bug Fixes
382
-
383
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
384
-
385
- ## [4.7.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.9) (2023-09-09)
386
-
387
- ### Bug Fixes
388
-
389
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
390
-
391
- ## [4.7.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.8) (2023-09-07)
392
-
393
- ### Bug Fixes
394
-
395
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
396
-
397
- ## [4.7.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.7) (2023-09-05)
398
-
399
- ### Bug Fixes
400
-
401
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
402
-
403
- ## [4.7.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.6) (2023-09-01)
404
-
405
- ### Bug Fixes
406
-
407
- - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
408
-
409
- ## [4.7.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.5) (2023-08-29)
410
-
411
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
412
-
413
- ## [4.7.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.4) (2023-08-25)
414
-
415
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
416
-
417
- ## [4.7.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.3) (2023-08-24)
418
-
419
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
420
-
421
- ## [4.7.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.2) (2023-08-16)
422
-
423
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
424
-
425
- ## [4.7.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@4.7.1) (2023-08-16)
426
-
427
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
428
-
429
- # [4.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.5.5...@bitgo/sdk-coin-eth@4.7.0) (2023-08-04)
430
-
431
- ### Features
432
-
433
- - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
434
- - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
435
-
436
- # [4.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.5.5...@bitgo/sdk-coin-eth@4.6.0) (2023-07-28)
437
-
438
- ### Features
439
-
440
- - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
441
- - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
442
-
443
- ## [4.5.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.5.4...@bitgo/sdk-coin-eth@4.5.5) (2023-07-18)
444
-
445
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
446
-
447
- ## [4.5.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.5.3...@bitgo/sdk-coin-eth@4.5.4) (2023-06-21)
448
-
449
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
450
-
451
- ## [4.5.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.5.2...@bitgo/sdk-coin-eth@4.5.3) (2023-06-14)
452
-
453
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
454
-
455
- ## [4.5.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.5.1...@bitgo/sdk-coin-eth@4.5.2) (2023-06-13)
456
-
457
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
458
-
459
- ## [4.5.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.5.0...@bitgo/sdk-coin-eth@4.5.1) (2023-06-07)
460
-
461
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
462
-
463
- # [4.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.4.4...@bitgo/sdk-coin-eth@4.5.0) (2023-06-05)
464
-
465
- ### Bug Fixes
466
-
467
- - **root:** update module deps ([98e0945](https://github.com/BitGo/BitGoJS/commit/98e09451f3ead6a0dd7c3aa3df62f8d000ba2f0e))
468
-
469
- ### Features
470
-
471
- - **sdk-core:** paillier proof user<>backup ([8c0a381](https://github.com/BitGo/BitGoJS/commit/8c0a381318be2088572e06e34c3627323d7bfe38))
472
- - **sdk-core:** refactor signConvert to steps ([94e2cae](https://github.com/BitGo/BitGoJS/commit/94e2cae6e1292a4e9684c3c2ab7141221137d52e))
473
- - **sdk-core:** simplify mpc.appendChallenge ([67bee8f](https://github.com/BitGo/BitGoJS/commit/67bee8f1b4f37cd12d6d14ea4d51ddcfde679563))
474
- - **sdk-lib-mpc:** make rangeProof challenges mandatory for appendChallenge ([1f68b30](https://github.com/BitGo/BitGoJS/commit/1f68b30676966720cb1a42c039e35d3ddeea4974))
475
-
476
- ## [4.4.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.4.3...@bitgo/sdk-coin-eth@4.4.4) (2023-05-25)
477
-
478
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
479
-
480
- ## [4.4.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.4.2...@bitgo/sdk-coin-eth@4.4.3) (2023-05-17)
481
-
482
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
483
-
484
- ## [4.4.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.4.1...@bitgo/sdk-coin-eth@4.4.2) (2023-05-10)
485
-
486
- ### Bug Fixes
487
-
488
- - **sdk-coin-eth:** fix eth multisig recoveries ([6e49792](https://github.com/BitGo/BitGoJS/commit/6e49792bfdb670a9e10dad10df932767b8ac6cdd))
489
-
490
- ## [4.4.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.4.0...@bitgo/sdk-coin-eth@4.4.1) (2023-05-03)
491
-
492
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
493
-
494
- # [4.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.3.1...@bitgo/sdk-coin-eth@4.4.0) (2023-04-25)
495
-
496
- ### Features
497
-
498
- - **sdk-core:** update ecdsa signing to use enterprise challenge ([c626f00](https://github.com/BitGo/BitGoJS/commit/c626f00e141db2ef4147b3e0c4badf1776729465))
499
-
500
- ## [4.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.3.0...@bitgo/sdk-coin-eth@4.3.1) (2023-04-20)
501
-
502
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
503
-
504
- # [4.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.2.1...@bitgo/sdk-coin-eth@4.3.0) (2023-04-13)
505
-
506
- ### Bug Fixes
507
-
508
- - **sdk-coin-eth:** consolidation verification tss ([a45bfc0](https://github.com/BitGo/BitGoJS/commit/a45bfc08d3e6b689743995945f448fb1b411a53c))
509
- - **sdk-coin-eth:** fix @ethereumjs/util version to support node 14 ([3581c03](https://github.com/BitGo/BitGoJS/commit/3581c037717736058607001c80fbd713163ed319))
510
-
511
- ### Features
512
-
513
- - **sdk-coin-polygon:** support evm based cross chain recovery ([a88681f](https://github.com/BitGo/BitGoJS/commit/a88681f8428bcb6617ee2c7cfe5e8294b603af9f))
514
-
515
- ## [4.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.2.0...@bitgo/sdk-coin-eth@4.2.1) (2023-02-17)
516
-
517
- ### Bug Fixes
518
-
519
- - polygon recovery with range proof ([19317f7](https://github.com/BitGo/BitGoJS/commit/19317f709354e61b3e4947870049e99f85556029))
520
-
521
- # [4.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.0.0...@bitgo/sdk-coin-eth@4.2.0) (2023-02-16)
522
-
523
- ### Bug Fixes
524
-
525
- - **sdk-coin-bsc:** build from txHex ([15173e9](https://github.com/BitGo/BitGoJS/commit/15173e967741964f19b042a9523e280ec758e440))
526
-
527
- ### Features
528
-
529
- - **account-lib:** make rangeproof stuff async ([380f288](https://github.com/BitGo/BitGoJS/commit/380f288e9cc5f6e98834e118bad65787e836c5a2))
530
- - **sdk-coin-eth:** enable consolidation support gteth ([fd3532e](https://github.com/BitGo/BitGoJS/commit/fd3532e7428758562e60d19e32839d00c4a56ec4))
531
-
532
- # [4.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.0.0...@bitgo/sdk-coin-eth@4.1.0) (2023-02-08)
533
-
534
- ### Bug Fixes
535
-
536
- - **sdk-coin-bsc:** build from txHex ([15173e9](https://github.com/BitGo/BitGoJS/commit/15173e967741964f19b042a9523e280ec758e440))
537
-
538
- ### Features
539
-
540
- - **account-lib:** make rangeproof stuff async ([380f288](https://github.com/BitGo/BitGoJS/commit/380f288e9cc5f6e98834e118bad65787e836c5a2))
541
- - **sdk-coin-eth:** enable consolidation support gteth ([fd3532e](https://github.com/BitGo/BitGoJS/commit/fd3532e7428758562e60d19e32839d00c4a56ec4))
542
-
543
- ## [4.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.0.0...@bitgo/sdk-coin-eth@4.0.1) (2023-01-30)
544
-
545
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
546
-
547
- # [4.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@3.0.0...@bitgo/sdk-coin-eth@4.0.0) (2023-01-25)
548
-
549
- ### Bug Fixes
550
-
551
- - **sdk-coin-eth:** fix recovery flow, add unit test ([49fc287](https://github.com/BitGo/BitGoJS/commit/49fc287403345a710244a5efa53ade30a829a13b))
552
- - **sdk-coin-eth:** remove generic typing from encodedtypeddata input ([f95fb60](https://github.com/BitGo/BitGoJS/commit/f95fb609806f814f60fc9a1ed5ff932943d45274))
553
-
554
- ### Features
555
-
556
- - **sdk-core:** forwarder version 3 ([82e6deb](https://github.com/BitGo/BitGoJS/commit/82e6debac071486435c51ce3f52f8352bdb8a8fb))
557
-
558
- ### BREAKING CHANGES
559
-
560
- - **sdk-coin-eth:** remove generic typing from encodedtypeddata input
561
-
562
- Ticket: BG-63009
563
-
564
- # [3.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@2.10.0...@bitgo/sdk-coin-eth@3.0.0) (2022-12-23)
565
-
566
- ### Bug Fixes
567
-
568
- - remove final sig construction for message signing ([c7c8a98](https://github.com/BitGo/BitGoJS/commit/c7c8a988449264c0be0d422b89f4390d713e9064))
569
-
570
- ### BREAKING CHANGES
571
-
572
- - remove final sig construction
573
-
574
- # [2.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@2.9.0...@bitgo/sdk-coin-eth@2.10.0) (2022-12-20)
575
-
576
- ### Features
577
-
578
- - added eip712 sign typed data ([6d2cbea](https://github.com/BitGo/BitGoJS/commit/6d2cbeaa04de80c12b41dcd1e88f886011f46b30))
579
- - **sdk-coin-eth:** add support for tss recoveries ([5954c7d](https://github.com/BitGo/BitGoJS/commit/5954c7dd1d32b2f60e8c41d31d7b205ccc51ecc4))
580
-
581
- # [2.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@2.8.0...@bitgo/sdk-coin-eth@2.9.0) (2022-12-09)
582
-
583
- ### Features
584
-
585
- - **sdk-coin-eth:** build from rawTx ([152bced](https://github.com/BitGo/BitGoJS/commit/152bced4d9b2cade28c638b691030286bab61ff4))
586
-
587
- # [2.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@2.7.1...@bitgo/sdk-coin-eth@2.8.0) (2022-12-06)
588
-
589
- ### Features
590
-
591
- - **sdk-coin-polygon:** crossChainRecovery support ([9b42813](https://github.com/BitGo/BitGoJS/commit/9b4281333a8d3835219e566e31cba28ab448c85f))
592
-
593
- ## [2.7.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@2.7.0...@bitgo/sdk-coin-eth@2.7.1) (2022-12-01)
594
-
595
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
596
-
597
- # [2.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@2.2.0...@bitgo/sdk-coin-eth@2.7.0) (2022-11-29)
598
-
599
- ### Bug Fixes
600
-
601
- - multiple issues with message signing ([d703b9a](https://github.com/BitGo/BitGoJS/commit/d703b9a6149c4fe26ad16001f5f681389c8f8aba))
602
- - remove encoding from message sent to bitgo ([d300963](https://github.com/BitGo/BitGoJS/commit/d300963da1333dc5b970fd3afe9f3dedb3fe9896))
603
- - **sdk-coin-celo:** fix precision bug in celo build/sign ([15b47c7](https://github.com/BitGo/BitGoJS/commit/15b47c73c9550ab8060b59cc1d1f8c2ce5cb0361))
604
- - **sdk-core:** properly translate tx type to transferToken intent BG-60250 ([eb518f9](https://github.com/BitGo/BitGoJS/commit/eb518f97ab973661493170421ad91b18cd370d89))
605
-
606
- ### Features
607
-
608
- - create txrequest for message signing ([4ee1a9c](https://github.com/BitGo/BitGoJS/commit/4ee1a9ceb748984cbd3b243fbba3ac0b54564e34))
609
- - implement isWalletAddress for SUI ([a3696ab](https://github.com/BitGo/BitGoJS/commit/a3696ab00f693da2db4ef32034a85504dc5aa4c5))
610
- - **sdk-coin-eth:** add fillnonce capability to sdk ([6d9a965](https://github.com/BitGo/BitGoJS/commit/6d9a9657cbd1ee273294e1ed4e44ed192915648b))
611
-
612
- # [2.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@2.2.0...@bitgo/sdk-coin-eth@2.6.0) (2022-11-04)
613
-
614
- ### Bug Fixes
615
-
616
- - remove encoding from message sent to bitgo ([d300963](https://github.com/BitGo/BitGoJS/commit/d300963da1333dc5b970fd3afe9f3dedb3fe9896))
617
- - **sdk-core:** properly translate tx type to transferToken intent BG-60250 ([eb518f9](https://github.com/BitGo/BitGoJS/commit/eb518f97ab973661493170421ad91b18cd370d89))
618
-
619
- ### Features
620
-
621
- - create txrequest for message signing ([4ee1a9c](https://github.com/BitGo/BitGoJS/commit/4ee1a9ceb748984cbd3b243fbba3ac0b54564e34))
622
- - implement isWalletAddress for SUI ([a3696ab](https://github.com/BitGo/BitGoJS/commit/a3696ab00f693da2db4ef32034a85504dc5aa4c5))
623
- - **sdk-coin-eth:** add fillnonce capability to sdk ([6d9a965](https://github.com/BitGo/BitGoJS/commit/6d9a9657cbd1ee273294e1ed4e44ed192915648b))
624
-
625
- # [2.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@2.2.0...@bitgo/sdk-coin-eth@2.4.0) (2022-10-27)
626
-
627
- ### Bug Fixes
628
-
629
- - **sdk-core:** properly translate tx type to transferToken intent BG-60250 ([eb518f9](https://github.com/BitGo/BitGoJS/commit/eb518f97ab973661493170421ad91b18cd370d89))
630
-
631
- ### Features
632
-
633
- - create txrequest for message signing ([4ee1a9c](https://github.com/BitGo/BitGoJS/commit/4ee1a9ceb748984cbd3b243fbba3ac0b54564e34))
634
- - implement isWalletAddress for SUI ([a3696ab](https://github.com/BitGo/BitGoJS/commit/a3696ab00f693da2db4ef32034a85504dc5aa4c5))
635
- - **sdk-coin-eth:** add fillnonce capability to sdk ([6d9a965](https://github.com/BitGo/BitGoJS/commit/6d9a9657cbd1ee273294e1ed4e44ed192915648b))
636
-
637
- # [2.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@2.2.0...@bitgo/sdk-coin-eth@2.3.0) (2022-10-25)
638
-
639
- ### Bug Fixes
640
-
641
- - **sdk-core:** properly translate tx type to transferToken intent BG-60250 ([eb518f9](https://github.com/BitGo/BitGoJS/commit/eb518f97ab973661493170421ad91b18cd370d89))
642
-
643
- ### Features
644
-
645
- - create txrequest for message signing ([4ee1a9c](https://github.com/BitGo/BitGoJS/commit/4ee1a9ceb748984cbd3b243fbba3ac0b54564e34))
646
- - implement isWalletAddress for SUI ([a3696ab](https://github.com/BitGo/BitGoJS/commit/a3696ab00f693da2db4ef32034a85504dc5aa4c5))
647
- - **sdk-coin-eth:** add fillnonce capability to sdk ([6d9a965](https://github.com/BitGo/BitGoJS/commit/6d9a9657cbd1ee273294e1ed4e44ed192915648b))
648
-
649
- # [2.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@1.1.0-rc.3...@bitgo/sdk-coin-eth@2.2.0) (2022-10-18)
650
-
651
- ### Bug Fixes
652
-
653
- - **bitgo:** no `Buffer` support in browsers ([5210662](https://github.com/BitGo/BitGoJS/commit/521066269397dc21040c835b669ad5f3e8fd329d))
654
- - **core:** fix bip32/ecpair, API vs Interface ([bec9c1e](https://github.com/BitGo/BitGoJS/commit/bec9c1e6ff0c23108dc27e171abdd3e4d2cfdfb1))
655
- - **sdk-coin-eth:** create custom ETH common for unsupported chain ids ([9329162](https://github.com/BitGo/BitGoJS/commit/93291625150a0ae1f2f69432a3910845ee933e9d))
656
- - **sdk-coin-eth:** fix v1 address init code ([9a3bb82](https://github.com/BitGo/BitGoJS/commit/9a3bb8216da92cf3cf3ce009d6595bf2a1a66885))
657
- - **sdk-core:** eth supports tss ([c0ec96f](https://github.com/BitGo/BitGoJS/commit/c0ec96fac7c5b4131d4f32d09463a78c0e1f8900))
658
- - **sdk-core:** tss tx signing ([ab7eb80](https://github.com/BitGo/BitGoJS/commit/ab7eb8079ea37e347727db106d01fe9362f36374))
659
-
660
- ### Features
661
-
662
- - **abstract-eth:** validate istss for evms ([29f0b5a](https://github.com/BitGo/BitGoJS/commit/29f0b5aa875c4a6a727f9b3e9a073740230c4fb8))
663
- - **account-lib:** add support for additional hash algorithms ([4e2aefe](https://github.com/BitGo/BitGoJS/commit/4e2aefe8bb7754f891e5f9919f591ad1cc04b34d))
664
- - adding support for message signing ([01c6303](https://github.com/BitGo/BitGoJS/commit/01c63032d067e6ba5aef78804ea747b5e62709fe))
665
- - **sdk-coin-eth:** add acceleration capability for eth ([436ba8c](https://github.com/BitGo/BitGoJS/commit/436ba8ceb478c4028d5b05dc34bb623be6fc581f))
666
- - **sdk-coin-eth:** add v1 wallet init code ([b1c983d](https://github.com/BitGo/BitGoJS/commit/b1c983d2f0723aa6647fca3d01a4c814639624b4))
667
- - **sdk-coin-polygon:** add second signing ([c053924](https://github.com/BitGo/BitGoJS/commit/c05392483224194fc9aa97f02592534d25ef9ade))
668
- - **sdk-coin-polygon:** add signTx method ([3458ed0](https://github.com/BitGo/BitGoJS/commit/3458ed0f10d46489be5f1765679a8de3e786b020))
669
- - **sdk-coin-polygon:** support recovery ([15d6021](https://github.com/BitGo/BitGoJS/commit/15d602164d3a2b504d7995e65aa0fbcb38f98e89))
670
- - **sdk-core:** allow getting a staking wallet for any coin ([cfae0fe](https://github.com/BitGo/BitGoJS/commit/cfae0feeb14c1bcb30dad2840abd8489372bfbc8))
671
-
672
- ### BREAKING CHANGES
673
-
674
- - **sdk-coin-eth:** Changes the return for exported method
675
- decodeWalletCreationData() in sdk-coin-eth
676
- BG-53733
677
-
678
- # [1.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@1.1.0-rc.3...@bitgo/sdk-coin-eth@1.1.0) (2022-07-19)
679
-
680
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
681
-
682
- # [1.1.0-rc.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@1.1.0-rc.1...@bitgo/sdk-coin-eth@1.1.0-rc.3) (2022-07-19)
683
-
684
- ### Bug Fixes
685
-
686
- - **sdk-coin-eth:** modify buildAddressInitializationTransaction method ([3cc205f](https://github.com/BitGo/BitGoJS/commit/3cc205f6e216fa4245dcebefe584de708f4037b0))
687
-
688
- # [1.1.0-rc.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@1.1.0-rc.1...@bitgo/sdk-coin-eth@1.1.0-rc.2) (2022-07-18)
689
-
690
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
691
-
692
- # [1.1.0-rc.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@1.1.0-rc.0...@bitgo/sdk-coin-eth@1.1.0-rc.1) (2022-07-15)
693
-
694
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
695
-
696
- # [1.1.0-rc.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@1.0.1-rc.2...@bitgo/sdk-coin-eth@1.1.0-rc.0) (2022-07-15)
697
-
698
- ### Features
699
-
700
- - **account-lib:** get rid of old ethereum lib ([abd2247](https://github.com/BitGo/BitGoJS/commit/abd2247047218d8cbd8ec7067d227721357f5fcc))
701
- - **sdk-coin-eth:** modify address init code ([16c8985](https://github.com/BitGo/BitGoJS/commit/16c8985c7ff1498a413835d473fe7e9472685f13))
702
-
703
- ## [1.0.1-rc.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@1.0.1-rc.2...@bitgo/sdk-coin-eth@1.0.1-rc.3) (2022-07-14)
704
-
705
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
706
-
707
- ## [1.0.1-rc.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@1.0.1-rc.1...@bitgo/sdk-coin-eth@1.0.1-rc.2) (2022-07-12)
708
-
709
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
710
-
711
- ## [1.0.1-rc.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@1.0.1-rc.0...@bitgo/sdk-coin-eth@1.0.1-rc.1) (2022-07-11)
712
-
713
- **Note:** Version bump only for package @bitgo/sdk-coin-eth
714
-
715
- ## 1.0.1-rc.0 (2022-07-07)
716
-
717
- **Note:** Version bump only for package @bitgo/sdk-coin-eth