@bitgo-beta/sdk-coin-eth 4.4.1-beta.202 → 4.4.1-beta.2021
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.
- package/dist/src/erc20Token.d.ts +1 -1
- package/dist/src/erc20Token.d.ts.map +1 -1
- package/dist/src/erc20Token.js +49 -28
- package/dist/src/erc721Token.d.ts +60 -0
- package/dist/src/erc721Token.d.ts.map +1 -0
- package/dist/src/erc721Token.js +334 -0
- package/dist/src/erc7984Token.d.ts +187 -0
- package/dist/src/erc7984Token.d.ts.map +1 -0
- package/dist/src/erc7984Token.js +946 -0
- package/dist/src/eth.d.ts +10 -8
- package/dist/src/eth.d.ts.map +1 -1
- package/dist/src/eth.js +54 -39
- package/dist/src/index.d.ts +3 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +9 -2
- package/dist/src/lib/index.d.ts +1 -0
- package/dist/src/lib/index.d.ts.map +1 -1
- package/dist/src/lib/index.js +7 -2
- package/dist/src/lib/messages/index.d.ts +3 -0
- package/dist/src/lib/messages/index.d.ts.map +1 -0
- package/dist/src/lib/messages/index.js +6 -0
- package/dist/src/lib/transactionBuilder.d.ts +10 -5
- package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
- package/dist/src/lib/transactionBuilder.js +17 -7
- package/dist/src/lib/transferBuilders/index.d.ts +2 -2
- package/dist/src/lib/transferBuilders/index.d.ts.map +1 -1
- package/dist/src/lib/transferBuilders/index.js +3 -2
- package/dist/src/register.d.ts +2 -0
- package/dist/src/register.d.ts.map +1 -1
- package/dist/src/register.js +39 -2
- package/dist/src/sepeth.d.ts +8 -0
- package/dist/src/sepeth.d.ts.map +1 -0
- package/dist/src/sepeth.js +14 -0
- package/dist/test/fixtures/eth.d.ts +39 -0
- package/dist/test/fixtures/eth.d.ts.map +1 -0
- package/dist/test/fixtures/eth.js +262 -0
- package/dist/test/resources/erc1155Abi.d.ts +40 -0
- package/dist/test/resources/erc1155Abi.d.ts.map +1 -0
- package/dist/test/resources/erc1155Abi.js +329 -0
- package/dist/test/resources/erc721Abi.d.ts +12 -0
- package/dist/test/resources/erc721Abi.d.ts.map +1 -0
- package/dist/test/resources/erc721Abi.js +34 -0
- package/dist/test/resources/eth.d.ts +51 -0
- package/dist/test/resources/eth.d.ts.map +1 -0
- package/dist/test/resources/eth.js +72 -0
- package/dist/test/resources/nftEncodings.d.ts +4 -0
- package/dist/test/resources/nftEncodings.d.ts.map +1 -0
- package/dist/test/resources/nftEncodings.js +7 -0
- package/dist/test/resources/walletSimpleAbi.d.ts +12 -0
- package/dist/test/resources/walletSimpleAbi.d.ts.map +1 -0
- package/dist/test/resources/walletSimpleAbi.js +44 -0
- package/dist/test/unit/erc7984Token.d.ts +2 -0
- package/dist/test/unit/erc7984Token.d.ts.map +1 -0
- package/dist/test/unit/erc7984Token.js +1589 -0
- package/dist/test/unit/eth.d.ts +2 -0
- package/dist/test/unit/eth.d.ts.map +1 -0
- package/dist/test/unit/eth.js +2701 -0
- package/dist/test/unit/ethWallet.d.ts +2 -0
- package/dist/test/unit/ethWallet.d.ts.map +1 -0
- package/dist/test/unit/ethWallet.js +552 -0
- package/dist/test/unit/fixtures/ethMultiSigBackupKey.d.ts +4 -0
- package/dist/test/unit/fixtures/ethMultiSigBackupKey.d.ts.map +1 -0
- package/dist/test/unit/fixtures/ethMultiSigBackupKey.js +10 -0
- package/dist/test/unit/fixtures/ethTssBackupKey.d.ts +5 -0
- package/dist/test/unit/fixtures/ethTssBackupKey.d.ts.map +1 -0
- package/dist/test/unit/fixtures/ethTssBackupKey.js +25 -0
- package/dist/test/unit/getBuilder.d.ts +3 -0
- package/dist/test/unit/getBuilder.d.ts.map +1 -0
- package/dist/test/unit/getBuilder.js +10 -0
- package/dist/test/unit/keyPair.d.ts +2 -0
- package/dist/test/unit/keyPair.d.ts.map +1 -0
- package/dist/test/unit/keyPair.js +175 -0
- package/dist/test/unit/register.d.ts +2 -0
- package/dist/test/unit/register.d.ts.map +1 -0
- package/dist/test/unit/register.js +75 -0
- package/dist/test/unit/transaction.d.ts +2 -0
- package/dist/test/unit/transaction.d.ts.map +1 -0
- package/dist/test/unit/transaction.js +117 -0
- package/dist/test/unit/transactionBuilder/addressInitialization.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/addressInitialization.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/addressInitialization.js +101 -0
- package/dist/test/unit/transactionBuilder/contractCall.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/contractCall.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/contractCall.js +101 -0
- package/dist/test/unit/transactionBuilder/decryptionDelegation.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/decryptionDelegation.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/decryptionDelegation.js +59 -0
- package/dist/test/unit/transactionBuilder/decryptionDelegationTxBuilder.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/decryptionDelegationTxBuilder.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/decryptionDelegationTxBuilder.js +136 -0
- package/dist/test/unit/transactionBuilder/flushCoins.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/flushCoins.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/flushCoins.js +133 -0
- package/dist/test/unit/transactionBuilder/flushTokens.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/flushTokens.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/flushTokens.js +298 -0
- package/dist/test/unit/transactionBuilder/send.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/send.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/send.js +331 -0
- package/dist/test/unit/transactionBuilder/sendERC7984Token.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/sendERC7984Token.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/sendERC7984Token.js +361 -0
- package/dist/test/unit/transactionBuilder/sendNFT.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/sendNFT.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/sendNFT.js +295 -0
- package/dist/test/unit/transactionBuilder/singleSigSend.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/singleSigSend.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/singleSigSend.js +196 -0
- package/dist/test/unit/transactionBuilder/walletInitialization.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/walletInitialization.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/walletInitialization.js +436 -0
- package/dist/test/unit/transferBuilder.d.ts +2 -0
- package/dist/test/unit/transferBuilder.d.ts.map +1 -0
- package/dist/test/unit/transferBuilder.js +124 -0
- package/dist/test/unit/utils.d.ts +2 -0
- package/dist/test/unit/utils.d.ts.map +1 -0
- package/dist/test/unit/utils.js +74 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +17 -13
- package/.eslintignore +0 -5
- package/.mocharc.yml +0 -8
- package/CHANGELOG.md +0 -771
package/CHANGELOG.md
DELETED
|
@@ -1,771 +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
|
-
# [12.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@4.7.0...@bitgo/sdk-coin-eth@12.0.0) (2023-12-09)
|
|
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
|
-
# [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)
|
|
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
|
-
# [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)
|
|
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
|
-
# [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)
|
|
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
|
-
# [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)
|
|
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:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
|
|
232
|
-
- **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
|
|
233
|
-
- **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
|
|
234
|
-
|
|
235
|
-
### Features
|
|
236
|
-
|
|
237
|
-
- **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
|
|
238
|
-
- update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
|
|
239
|
-
|
|
240
|
-
### BREAKING CHANGES
|
|
241
|
-
|
|
242
|
-
- **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
|
|
243
|
-
interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
|
|
244
|
-
getCustomChainName method is removed from Polygon class because a common
|
|
245
|
-
method getCustomChainCommon has been added to AbstractEthLikeNewCoins
|
|
246
|
-
class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
|
|
247
|
-
and needs to be passed to derive the Eth common object from the chainId.
|
|
248
|
-
signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
|
|
249
|
-
it can be used for other EthLike coins. getBaseFactor method in Eth
|
|
250
|
-
and Polygon class returns number instead of string just to align with
|
|
251
|
-
AbstractEthLikeCoin
|
|
252
|
-
Ticket: WIN-1012
|
|
253
|
-
- **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
|
|
254
|
-
interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
|
|
255
|
-
getCustomChainName method is removed from Polygon class because a common
|
|
256
|
-
method getCustomChainCommon has been added to AbstractEthLikeNewCoins
|
|
257
|
-
class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
|
|
258
|
-
and needs to be passed to derive the Eth common object from the chainId.
|
|
259
|
-
signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
|
|
260
|
-
it can be used for other EthLike coins. getBaseFactor method in Eth
|
|
261
|
-
and Polygon class returns number instead of string just to align with
|
|
262
|
-
AbstractEthLikeCoin
|
|
263
|
-
Ticket: WIN-1012
|
|
264
|
-
- **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
|
|
265
|
-
class in abstract-eth module because TransactionBuilder in the
|
|
266
|
-
abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
|
|
267
|
-
be added to the class that will inherit EthLikeToken class
|
|
268
|
-
|
|
269
|
-
TransactionPrebuild from new class AbstractEthLikeNewCoins is being
|
|
270
|
-
exported now instead of TransactionPrebuild from AbstractEthLikeCoin
|
|
271
|
-
class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
|
|
272
|
-
support for hop transactions, batch transactions, etc
|
|
273
|
-
|
|
274
|
-
TICKET: WIN-1021
|
|
275
|
-
|
|
276
|
-
# [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)
|
|
277
|
-
|
|
278
|
-
### Bug Fixes
|
|
279
|
-
|
|
280
|
-
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
281
|
-
- **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
|
|
282
|
-
|
|
283
|
-
### Code Refactoring
|
|
284
|
-
|
|
285
|
-
- **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
|
|
286
|
-
- **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
|
|
287
|
-
|
|
288
|
-
### Features
|
|
289
|
-
|
|
290
|
-
- **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
|
|
291
|
-
- update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
|
|
292
|
-
|
|
293
|
-
### BREAKING CHANGES
|
|
294
|
-
|
|
295
|
-
- **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
|
|
296
|
-
interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
|
|
297
|
-
getCustomChainName method is removed from Polygon class because a common
|
|
298
|
-
method getCustomChainCommon has been added to AbstractEthLikeNewCoins
|
|
299
|
-
class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
|
|
300
|
-
and needs to be passed to derive the Eth common object from the chainId.
|
|
301
|
-
signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
|
|
302
|
-
it can be used for other EthLike coins. getBaseFactor method in Eth
|
|
303
|
-
and Polygon class returns number instead of string just to align with
|
|
304
|
-
AbstractEthLikeCoin
|
|
305
|
-
Ticket: WIN-1012
|
|
306
|
-
- **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
|
|
307
|
-
class in abstract-eth module because TransactionBuilder in the
|
|
308
|
-
abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
|
|
309
|
-
be added to the class that will inherit EthLikeToken class
|
|
310
|
-
|
|
311
|
-
TransactionPrebuild from new class AbstractEthLikeNewCoins is being
|
|
312
|
-
exported now instead of TransactionPrebuild from AbstractEthLikeCoin
|
|
313
|
-
class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
|
|
314
|
-
support for hop transactions, batch transactions, etc
|
|
315
|
-
|
|
316
|
-
TICKET: WIN-1021
|
|
317
|
-
|
|
318
|
-
# [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)
|
|
319
|
-
|
|
320
|
-
### Bug Fixes
|
|
321
|
-
|
|
322
|
-
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
323
|
-
- **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
|
|
324
|
-
|
|
325
|
-
### Code Refactoring
|
|
326
|
-
|
|
327
|
-
- **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
|
|
328
|
-
- **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
|
|
329
|
-
|
|
330
|
-
### Features
|
|
331
|
-
|
|
332
|
-
- **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
|
|
333
|
-
- update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
|
|
334
|
-
|
|
335
|
-
### BREAKING CHANGES
|
|
336
|
-
|
|
337
|
-
- **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
|
|
338
|
-
interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
|
|
339
|
-
getCustomChainName method is removed from Polygon class because a common
|
|
340
|
-
method getCustomChainCommon has been added to AbstractEthLikeNewCoins
|
|
341
|
-
class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
|
|
342
|
-
and needs to be passed to derive the Eth common object from the chainId.
|
|
343
|
-
signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
|
|
344
|
-
it can be used for other EthLike coins. getBaseFactor method in Eth
|
|
345
|
-
and Polygon class returns number instead of string just to align with
|
|
346
|
-
AbstractEthLikeCoin
|
|
347
|
-
Ticket: WIN-1012
|
|
348
|
-
- **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
|
|
349
|
-
class in abstract-eth module because TransactionBuilder in the
|
|
350
|
-
abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
|
|
351
|
-
be added to the class that will inherit EthLikeToken class
|
|
352
|
-
|
|
353
|
-
TransactionPrebuild from new class AbstractEthLikeNewCoins is being
|
|
354
|
-
exported now instead of TransactionPrebuild from AbstractEthLikeCoin
|
|
355
|
-
class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
|
|
356
|
-
support for hop transactions, batch transactions, etc
|
|
357
|
-
|
|
358
|
-
TICKET: WIN-1021
|
|
359
|
-
|
|
360
|
-
# [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)
|
|
361
|
-
|
|
362
|
-
### Bug Fixes
|
|
363
|
-
|
|
364
|
-
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
365
|
-
- **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
|
|
366
|
-
|
|
367
|
-
### Code Refactoring
|
|
368
|
-
|
|
369
|
-
- **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
|
|
370
|
-
- **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))
|
|
371
|
-
|
|
372
|
-
### Features
|
|
373
|
-
|
|
374
|
-
- **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
|
|
375
|
-
- update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
|
|
376
|
-
|
|
377
|
-
### BREAKING CHANGES
|
|
378
|
-
|
|
379
|
-
- **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
|
|
380
|
-
interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
|
|
381
|
-
getCustomChainName method is removed from Polygon class because a common
|
|
382
|
-
method getCustomChainCommon has been added to AbstractEthLikeNewCoins
|
|
383
|
-
class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
|
|
384
|
-
and needs to be passed to derive the Eth common object from the chainId.
|
|
385
|
-
signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
|
|
386
|
-
it can be used for other EthLike coins. getBaseFactor method in Eth
|
|
387
|
-
and Polygon class returns number instead of string just to align with
|
|
388
|
-
AbstractEthLikeCoin
|
|
389
|
-
Ticket: WIN-1012
|
|
390
|
-
- **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
|
|
391
|
-
class in abstract-eth module because TransactionBuilder in the
|
|
392
|
-
abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
|
|
393
|
-
be added to the class that will inherit EthLikeToken class
|
|
394
|
-
|
|
395
|
-
TransactionPrebuild from new class AbstractEthLikeNewCoins is being
|
|
396
|
-
exported now instead of TransactionPrebuild from AbstractEthLikeCoin
|
|
397
|
-
class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
|
|
398
|
-
support for hop transactions, batch transactions, etc
|
|
399
|
-
|
|
400
|
-
TICKET: WIN-1021
|
|
401
|
-
|
|
402
|
-
# [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)
|
|
403
|
-
|
|
404
|
-
### Bug Fixes
|
|
405
|
-
|
|
406
|
-
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
407
|
-
|
|
408
|
-
### Features
|
|
409
|
-
|
|
410
|
-
- **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
|
|
411
|
-
- update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
|
|
412
|
-
|
|
413
|
-
# [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)
|
|
414
|
-
|
|
415
|
-
### Bug Fixes
|
|
416
|
-
|
|
417
|
-
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
418
|
-
|
|
419
|
-
### Features
|
|
420
|
-
|
|
421
|
-
- update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
|
|
422
|
-
|
|
423
|
-
# [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)
|
|
424
|
-
|
|
425
|
-
### Bug Fixes
|
|
426
|
-
|
|
427
|
-
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
428
|
-
|
|
429
|
-
### Features
|
|
430
|
-
|
|
431
|
-
- update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
|
|
432
|
-
|
|
433
|
-
## [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)
|
|
434
|
-
|
|
435
|
-
### Bug Fixes
|
|
436
|
-
|
|
437
|
-
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
438
|
-
|
|
439
|
-
## [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)
|
|
440
|
-
|
|
441
|
-
### Bug Fixes
|
|
442
|
-
|
|
443
|
-
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
444
|
-
|
|
445
|
-
## [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)
|
|
446
|
-
|
|
447
|
-
### Bug Fixes
|
|
448
|
-
|
|
449
|
-
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
450
|
-
|
|
451
|
-
## [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)
|
|
452
|
-
|
|
453
|
-
### Bug Fixes
|
|
454
|
-
|
|
455
|
-
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
456
|
-
|
|
457
|
-
## [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)
|
|
458
|
-
|
|
459
|
-
### Bug Fixes
|
|
460
|
-
|
|
461
|
-
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
462
|
-
|
|
463
|
-
## [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)
|
|
464
|
-
|
|
465
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
466
|
-
|
|
467
|
-
## [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)
|
|
468
|
-
|
|
469
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
470
|
-
|
|
471
|
-
## [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)
|
|
472
|
-
|
|
473
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
474
|
-
|
|
475
|
-
## [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)
|
|
476
|
-
|
|
477
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
478
|
-
|
|
479
|
-
## [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)
|
|
480
|
-
|
|
481
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
482
|
-
|
|
483
|
-
# [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)
|
|
484
|
-
|
|
485
|
-
### Features
|
|
486
|
-
|
|
487
|
-
- **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
|
|
488
|
-
- **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
|
|
489
|
-
|
|
490
|
-
# [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)
|
|
491
|
-
|
|
492
|
-
### Features
|
|
493
|
-
|
|
494
|
-
- **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
|
|
495
|
-
- **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
|
|
496
|
-
|
|
497
|
-
## [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)
|
|
498
|
-
|
|
499
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
500
|
-
|
|
501
|
-
## [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)
|
|
502
|
-
|
|
503
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
504
|
-
|
|
505
|
-
## [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)
|
|
506
|
-
|
|
507
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
508
|
-
|
|
509
|
-
## [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)
|
|
510
|
-
|
|
511
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
512
|
-
|
|
513
|
-
## [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)
|
|
514
|
-
|
|
515
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
516
|
-
|
|
517
|
-
# [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)
|
|
518
|
-
|
|
519
|
-
### Bug Fixes
|
|
520
|
-
|
|
521
|
-
- **root:** update module deps ([98e0945](https://github.com/BitGo/BitGoJS/commit/98e09451f3ead6a0dd7c3aa3df62f8d000ba2f0e))
|
|
522
|
-
|
|
523
|
-
### Features
|
|
524
|
-
|
|
525
|
-
- **sdk-core:** paillier proof user<>backup ([8c0a381](https://github.com/BitGo/BitGoJS/commit/8c0a381318be2088572e06e34c3627323d7bfe38))
|
|
526
|
-
- **sdk-core:** refactor signConvert to steps ([94e2cae](https://github.com/BitGo/BitGoJS/commit/94e2cae6e1292a4e9684c3c2ab7141221137d52e))
|
|
527
|
-
- **sdk-core:** simplify mpc.appendChallenge ([67bee8f](https://github.com/BitGo/BitGoJS/commit/67bee8f1b4f37cd12d6d14ea4d51ddcfde679563))
|
|
528
|
-
- **sdk-lib-mpc:** make rangeProof challenges mandatory for appendChallenge ([1f68b30](https://github.com/BitGo/BitGoJS/commit/1f68b30676966720cb1a42c039e35d3ddeea4974))
|
|
529
|
-
|
|
530
|
-
## [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)
|
|
531
|
-
|
|
532
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
533
|
-
|
|
534
|
-
## [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)
|
|
535
|
-
|
|
536
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
537
|
-
|
|
538
|
-
## [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)
|
|
539
|
-
|
|
540
|
-
### Bug Fixes
|
|
541
|
-
|
|
542
|
-
- **sdk-coin-eth:** fix eth multisig recoveries ([6e49792](https://github.com/BitGo/BitGoJS/commit/6e49792bfdb670a9e10dad10df932767b8ac6cdd))
|
|
543
|
-
|
|
544
|
-
## [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)
|
|
545
|
-
|
|
546
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
547
|
-
|
|
548
|
-
# [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)
|
|
549
|
-
|
|
550
|
-
### Features
|
|
551
|
-
|
|
552
|
-
- **sdk-core:** update ecdsa signing to use enterprise challenge ([c626f00](https://github.com/BitGo/BitGoJS/commit/c626f00e141db2ef4147b3e0c4badf1776729465))
|
|
553
|
-
|
|
554
|
-
## [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)
|
|
555
|
-
|
|
556
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
557
|
-
|
|
558
|
-
# [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)
|
|
559
|
-
|
|
560
|
-
### Bug Fixes
|
|
561
|
-
|
|
562
|
-
- **sdk-coin-eth:** consolidation verification tss ([a45bfc0](https://github.com/BitGo/BitGoJS/commit/a45bfc08d3e6b689743995945f448fb1b411a53c))
|
|
563
|
-
- **sdk-coin-eth:** fix @ethereumjs/util version to support node 14 ([3581c03](https://github.com/BitGo/BitGoJS/commit/3581c037717736058607001c80fbd713163ed319))
|
|
564
|
-
|
|
565
|
-
### Features
|
|
566
|
-
|
|
567
|
-
- **sdk-coin-polygon:** support evm based cross chain recovery ([a88681f](https://github.com/BitGo/BitGoJS/commit/a88681f8428bcb6617ee2c7cfe5e8294b603af9f))
|
|
568
|
-
|
|
569
|
-
## [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)
|
|
570
|
-
|
|
571
|
-
### Bug Fixes
|
|
572
|
-
|
|
573
|
-
- polygon recovery with range proof ([19317f7](https://github.com/BitGo/BitGoJS/commit/19317f709354e61b3e4947870049e99f85556029))
|
|
574
|
-
|
|
575
|
-
# [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)
|
|
576
|
-
|
|
577
|
-
### Bug Fixes
|
|
578
|
-
|
|
579
|
-
- **sdk-coin-bsc:** build from txHex ([15173e9](https://github.com/BitGo/BitGoJS/commit/15173e967741964f19b042a9523e280ec758e440))
|
|
580
|
-
|
|
581
|
-
### Features
|
|
582
|
-
|
|
583
|
-
- **account-lib:** make rangeproof stuff async ([380f288](https://github.com/BitGo/BitGoJS/commit/380f288e9cc5f6e98834e118bad65787e836c5a2))
|
|
584
|
-
- **sdk-coin-eth:** enable consolidation support gteth ([fd3532e](https://github.com/BitGo/BitGoJS/commit/fd3532e7428758562e60d19e32839d00c4a56ec4))
|
|
585
|
-
|
|
586
|
-
# [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)
|
|
587
|
-
|
|
588
|
-
### Bug Fixes
|
|
589
|
-
|
|
590
|
-
- **sdk-coin-bsc:** build from txHex ([15173e9](https://github.com/BitGo/BitGoJS/commit/15173e967741964f19b042a9523e280ec758e440))
|
|
591
|
-
|
|
592
|
-
### Features
|
|
593
|
-
|
|
594
|
-
- **account-lib:** make rangeproof stuff async ([380f288](https://github.com/BitGo/BitGoJS/commit/380f288e9cc5f6e98834e118bad65787e836c5a2))
|
|
595
|
-
- **sdk-coin-eth:** enable consolidation support gteth ([fd3532e](https://github.com/BitGo/BitGoJS/commit/fd3532e7428758562e60d19e32839d00c4a56ec4))
|
|
596
|
-
|
|
597
|
-
## [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)
|
|
598
|
-
|
|
599
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
600
|
-
|
|
601
|
-
# [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)
|
|
602
|
-
|
|
603
|
-
### Bug Fixes
|
|
604
|
-
|
|
605
|
-
- **sdk-coin-eth:** fix recovery flow, add unit test ([49fc287](https://github.com/BitGo/BitGoJS/commit/49fc287403345a710244a5efa53ade30a829a13b))
|
|
606
|
-
- **sdk-coin-eth:** remove generic typing from encodedtypeddata input ([f95fb60](https://github.com/BitGo/BitGoJS/commit/f95fb609806f814f60fc9a1ed5ff932943d45274))
|
|
607
|
-
|
|
608
|
-
### Features
|
|
609
|
-
|
|
610
|
-
- **sdk-core:** forwarder version 3 ([82e6deb](https://github.com/BitGo/BitGoJS/commit/82e6debac071486435c51ce3f52f8352bdb8a8fb))
|
|
611
|
-
|
|
612
|
-
### BREAKING CHANGES
|
|
613
|
-
|
|
614
|
-
- **sdk-coin-eth:** remove generic typing from encodedtypeddata input
|
|
615
|
-
|
|
616
|
-
Ticket: BG-63009
|
|
617
|
-
|
|
618
|
-
# [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)
|
|
619
|
-
|
|
620
|
-
### Bug Fixes
|
|
621
|
-
|
|
622
|
-
- remove final sig construction for message signing ([c7c8a98](https://github.com/BitGo/BitGoJS/commit/c7c8a988449264c0be0d422b89f4390d713e9064))
|
|
623
|
-
|
|
624
|
-
### BREAKING CHANGES
|
|
625
|
-
|
|
626
|
-
- remove final sig construction
|
|
627
|
-
|
|
628
|
-
# [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)
|
|
629
|
-
|
|
630
|
-
### Features
|
|
631
|
-
|
|
632
|
-
- added eip712 sign typed data ([6d2cbea](https://github.com/BitGo/BitGoJS/commit/6d2cbeaa04de80c12b41dcd1e88f886011f46b30))
|
|
633
|
-
- **sdk-coin-eth:** add support for tss recoveries ([5954c7d](https://github.com/BitGo/BitGoJS/commit/5954c7dd1d32b2f60e8c41d31d7b205ccc51ecc4))
|
|
634
|
-
|
|
635
|
-
# [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)
|
|
636
|
-
|
|
637
|
-
### Features
|
|
638
|
-
|
|
639
|
-
- **sdk-coin-eth:** build from rawTx ([152bced](https://github.com/BitGo/BitGoJS/commit/152bced4d9b2cade28c638b691030286bab61ff4))
|
|
640
|
-
|
|
641
|
-
# [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)
|
|
642
|
-
|
|
643
|
-
### Features
|
|
644
|
-
|
|
645
|
-
- **sdk-coin-polygon:** crossChainRecovery support ([9b42813](https://github.com/BitGo/BitGoJS/commit/9b4281333a8d3835219e566e31cba28ab448c85f))
|
|
646
|
-
|
|
647
|
-
## [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)
|
|
648
|
-
|
|
649
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
650
|
-
|
|
651
|
-
# [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)
|
|
652
|
-
|
|
653
|
-
### Bug Fixes
|
|
654
|
-
|
|
655
|
-
- multiple issues with message signing ([d703b9a](https://github.com/BitGo/BitGoJS/commit/d703b9a6149c4fe26ad16001f5f681389c8f8aba))
|
|
656
|
-
- remove encoding from message sent to bitgo ([d300963](https://github.com/BitGo/BitGoJS/commit/d300963da1333dc5b970fd3afe9f3dedb3fe9896))
|
|
657
|
-
- **sdk-coin-celo:** fix precision bug in celo build/sign ([15b47c7](https://github.com/BitGo/BitGoJS/commit/15b47c73c9550ab8060b59cc1d1f8c2ce5cb0361))
|
|
658
|
-
- **sdk-core:** properly translate tx type to transferToken intent BG-60250 ([eb518f9](https://github.com/BitGo/BitGoJS/commit/eb518f97ab973661493170421ad91b18cd370d89))
|
|
659
|
-
|
|
660
|
-
### Features
|
|
661
|
-
|
|
662
|
-
- create txrequest for message signing ([4ee1a9c](https://github.com/BitGo/BitGoJS/commit/4ee1a9ceb748984cbd3b243fbba3ac0b54564e34))
|
|
663
|
-
- implement isWalletAddress for SUI ([a3696ab](https://github.com/BitGo/BitGoJS/commit/a3696ab00f693da2db4ef32034a85504dc5aa4c5))
|
|
664
|
-
- **sdk-coin-eth:** add fillnonce capability to sdk ([6d9a965](https://github.com/BitGo/BitGoJS/commit/6d9a9657cbd1ee273294e1ed4e44ed192915648b))
|
|
665
|
-
|
|
666
|
-
# [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)
|
|
667
|
-
|
|
668
|
-
### Bug Fixes
|
|
669
|
-
|
|
670
|
-
- remove encoding from message sent to bitgo ([d300963](https://github.com/BitGo/BitGoJS/commit/d300963da1333dc5b970fd3afe9f3dedb3fe9896))
|
|
671
|
-
- **sdk-core:** properly translate tx type to transferToken intent BG-60250 ([eb518f9](https://github.com/BitGo/BitGoJS/commit/eb518f97ab973661493170421ad91b18cd370d89))
|
|
672
|
-
|
|
673
|
-
### Features
|
|
674
|
-
|
|
675
|
-
- create txrequest for message signing ([4ee1a9c](https://github.com/BitGo/BitGoJS/commit/4ee1a9ceb748984cbd3b243fbba3ac0b54564e34))
|
|
676
|
-
- implement isWalletAddress for SUI ([a3696ab](https://github.com/BitGo/BitGoJS/commit/a3696ab00f693da2db4ef32034a85504dc5aa4c5))
|
|
677
|
-
- **sdk-coin-eth:** add fillnonce capability to sdk ([6d9a965](https://github.com/BitGo/BitGoJS/commit/6d9a9657cbd1ee273294e1ed4e44ed192915648b))
|
|
678
|
-
|
|
679
|
-
# [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)
|
|
680
|
-
|
|
681
|
-
### Bug Fixes
|
|
682
|
-
|
|
683
|
-
- **sdk-core:** properly translate tx type to transferToken intent BG-60250 ([eb518f9](https://github.com/BitGo/BitGoJS/commit/eb518f97ab973661493170421ad91b18cd370d89))
|
|
684
|
-
|
|
685
|
-
### Features
|
|
686
|
-
|
|
687
|
-
- create txrequest for message signing ([4ee1a9c](https://github.com/BitGo/BitGoJS/commit/4ee1a9ceb748984cbd3b243fbba3ac0b54564e34))
|
|
688
|
-
- implement isWalletAddress for SUI ([a3696ab](https://github.com/BitGo/BitGoJS/commit/a3696ab00f693da2db4ef32034a85504dc5aa4c5))
|
|
689
|
-
- **sdk-coin-eth:** add fillnonce capability to sdk ([6d9a965](https://github.com/BitGo/BitGoJS/commit/6d9a9657cbd1ee273294e1ed4e44ed192915648b))
|
|
690
|
-
|
|
691
|
-
# [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)
|
|
692
|
-
|
|
693
|
-
### Bug Fixes
|
|
694
|
-
|
|
695
|
-
- **sdk-core:** properly translate tx type to transferToken intent BG-60250 ([eb518f9](https://github.com/BitGo/BitGoJS/commit/eb518f97ab973661493170421ad91b18cd370d89))
|
|
696
|
-
|
|
697
|
-
### Features
|
|
698
|
-
|
|
699
|
-
- create txrequest for message signing ([4ee1a9c](https://github.com/BitGo/BitGoJS/commit/4ee1a9ceb748984cbd3b243fbba3ac0b54564e34))
|
|
700
|
-
- implement isWalletAddress for SUI ([a3696ab](https://github.com/BitGo/BitGoJS/commit/a3696ab00f693da2db4ef32034a85504dc5aa4c5))
|
|
701
|
-
- **sdk-coin-eth:** add fillnonce capability to sdk ([6d9a965](https://github.com/BitGo/BitGoJS/commit/6d9a9657cbd1ee273294e1ed4e44ed192915648b))
|
|
702
|
-
|
|
703
|
-
# [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)
|
|
704
|
-
|
|
705
|
-
### Bug Fixes
|
|
706
|
-
|
|
707
|
-
- **bitgo:** no `Buffer` support in browsers ([5210662](https://github.com/BitGo/BitGoJS/commit/521066269397dc21040c835b669ad5f3e8fd329d))
|
|
708
|
-
- **core:** fix bip32/ecpair, API vs Interface ([bec9c1e](https://github.com/BitGo/BitGoJS/commit/bec9c1e6ff0c23108dc27e171abdd3e4d2cfdfb1))
|
|
709
|
-
- **sdk-coin-eth:** create custom ETH common for unsupported chain ids ([9329162](https://github.com/BitGo/BitGoJS/commit/93291625150a0ae1f2f69432a3910845ee933e9d))
|
|
710
|
-
- **sdk-coin-eth:** fix v1 address init code ([9a3bb82](https://github.com/BitGo/BitGoJS/commit/9a3bb8216da92cf3cf3ce009d6595bf2a1a66885))
|
|
711
|
-
- **sdk-core:** eth supports tss ([c0ec96f](https://github.com/BitGo/BitGoJS/commit/c0ec96fac7c5b4131d4f32d09463a78c0e1f8900))
|
|
712
|
-
- **sdk-core:** tss tx signing ([ab7eb80](https://github.com/BitGo/BitGoJS/commit/ab7eb8079ea37e347727db106d01fe9362f36374))
|
|
713
|
-
|
|
714
|
-
### Features
|
|
715
|
-
|
|
716
|
-
- **abstract-eth:** validate istss for evms ([29f0b5a](https://github.com/BitGo/BitGoJS/commit/29f0b5aa875c4a6a727f9b3e9a073740230c4fb8))
|
|
717
|
-
- **account-lib:** add support for additional hash algorithms ([4e2aefe](https://github.com/BitGo/BitGoJS/commit/4e2aefe8bb7754f891e5f9919f591ad1cc04b34d))
|
|
718
|
-
- adding support for message signing ([01c6303](https://github.com/BitGo/BitGoJS/commit/01c63032d067e6ba5aef78804ea747b5e62709fe))
|
|
719
|
-
- **sdk-coin-eth:** add acceleration capability for eth ([436ba8c](https://github.com/BitGo/BitGoJS/commit/436ba8ceb478c4028d5b05dc34bb623be6fc581f))
|
|
720
|
-
- **sdk-coin-eth:** add v1 wallet init code ([b1c983d](https://github.com/BitGo/BitGoJS/commit/b1c983d2f0723aa6647fca3d01a4c814639624b4))
|
|
721
|
-
- **sdk-coin-polygon:** add second signing ([c053924](https://github.com/BitGo/BitGoJS/commit/c05392483224194fc9aa97f02592534d25ef9ade))
|
|
722
|
-
- **sdk-coin-polygon:** add signTx method ([3458ed0](https://github.com/BitGo/BitGoJS/commit/3458ed0f10d46489be5f1765679a8de3e786b020))
|
|
723
|
-
- **sdk-coin-polygon:** support recovery ([15d6021](https://github.com/BitGo/BitGoJS/commit/15d602164d3a2b504d7995e65aa0fbcb38f98e89))
|
|
724
|
-
- **sdk-core:** allow getting a staking wallet for any coin ([cfae0fe](https://github.com/BitGo/BitGoJS/commit/cfae0feeb14c1bcb30dad2840abd8489372bfbc8))
|
|
725
|
-
|
|
726
|
-
### BREAKING CHANGES
|
|
727
|
-
|
|
728
|
-
- **sdk-coin-eth:** Changes the return for exported method
|
|
729
|
-
decodeWalletCreationData() in sdk-coin-eth
|
|
730
|
-
BG-53733
|
|
731
|
-
|
|
732
|
-
# [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)
|
|
733
|
-
|
|
734
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
735
|
-
|
|
736
|
-
# [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)
|
|
737
|
-
|
|
738
|
-
### Bug Fixes
|
|
739
|
-
|
|
740
|
-
- **sdk-coin-eth:** modify buildAddressInitializationTransaction method ([3cc205f](https://github.com/BitGo/BitGoJS/commit/3cc205f6e216fa4245dcebefe584de708f4037b0))
|
|
741
|
-
|
|
742
|
-
# [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)
|
|
743
|
-
|
|
744
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
745
|
-
|
|
746
|
-
# [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)
|
|
747
|
-
|
|
748
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
749
|
-
|
|
750
|
-
# [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)
|
|
751
|
-
|
|
752
|
-
### Features
|
|
753
|
-
|
|
754
|
-
- **account-lib:** get rid of old ethereum lib ([abd2247](https://github.com/BitGo/BitGoJS/commit/abd2247047218d8cbd8ec7067d227721357f5fcc))
|
|
755
|
-
- **sdk-coin-eth:** modify address init code ([16c8985](https://github.com/BitGo/BitGoJS/commit/16c8985c7ff1498a413835d473fe7e9472685f13))
|
|
756
|
-
|
|
757
|
-
## [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)
|
|
758
|
-
|
|
759
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
760
|
-
|
|
761
|
-
## [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)
|
|
762
|
-
|
|
763
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
764
|
-
|
|
765
|
-
## [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)
|
|
766
|
-
|
|
767
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|
|
768
|
-
|
|
769
|
-
## 1.0.1-rc.0 (2022-07-07)
|
|
770
|
-
|
|
771
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-eth
|