edge-currency-accountbased 2.12.0 → 2.13.1
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/CHANGELOG.md +25 -0
- package/android/src/main/assets/edge-currency-accountbased/5336.chunk.js +2 -2
- package/android/src/main/assets/edge-currency-accountbased/9612.chunk.js +1 -1
- package/android/src/main/assets/edge-currency-accountbased/edge-currency-accountbased.js +2 -2
- package/android/src/main/assets/edge-currency-accountbased/ethereum.chunk.js +9 -9
- package/android/src/main/assets/edge-currency-accountbased/thorchainrune.chunk.js +2 -2
- package/lib/common/types.js +39 -0
- package/lib/common/utils.js +21 -0
- package/lib/cosmos/CosmosEngine.js +203 -69
- package/lib/cosmos/CosmosTools.js +9 -3
- package/lib/cosmos/cosmosRegistry.js +32 -3
- package/lib/cosmos/cosmosTypes.js +50 -38
- package/lib/cosmos/cosmosUtils.js +104 -0
- package/lib/cosmos/info/proto/thorchainrune/thorchain/v1/common/common.js +613 -0
- package/lib/cosmos/info/proto/thorchainrune/thorchain/v1/x/thorchain/types/msg_deposit.js +147 -0
- package/lib/cosmos/info/thorchainruneInfo.js +4 -2
- package/lib/ethereum/EthereumTools.js +43 -1
- package/lib/ethereum/ethereumTypes.js +5 -0
- package/lib/ethereum/fees/ethMiningFees.js +7 -1
- package/lib/ethereum/info/ethereumInfo.js +2 -0
- package/lib/ripple/RippleEngine.js +1 -1
- package/lib/ripple/rippleTypes.js +0 -23
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,8 +2,33 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 2.13.1 (2023-11-21)
|
|
6
|
+
|
|
7
|
+
- fixed: Incorrect deposit alias for Thorchain RUNE
|
|
8
|
+
|
|
9
|
+
## 2.13.0 (2023-11-20)
|
|
10
|
+
|
|
11
|
+
- added: Add `MakeTxDeposit` to support THORChain swap transactions
|
|
12
|
+
- added: ENS name resolution support
|
|
13
|
+
- changed: Move `makeTx` params types to common
|
|
14
|
+
- changed: (RUNE) Replace shapeshift api with native rpc tx query
|
|
15
|
+
- fixed: Possible error in ETH transactions when calculated gasPrice is below baseFee
|
|
16
|
+
|
|
5
17
|
## 2.12.0 (2023-11-14)
|
|
6
18
|
|
|
19
|
+
- added: Filecoin FEVM support
|
|
20
|
+
|
|
21
|
+
## 2.11.2-tc2 (2023-11-21)
|
|
22
|
+
|
|
23
|
+
- fixed: Incorrect deposit alias for Thorchain RUNE
|
|
24
|
+
|
|
25
|
+
## 2.11.2-tc (2023-11-20)
|
|
26
|
+
|
|
27
|
+
- added: Add `MakeTxDeposit` to support THORChain swap transactions
|
|
28
|
+
- changed: Move `makeTx` params types to common
|
|
29
|
+
- changed: (RUNE) Replace shapeshift api with native rpc tx query
|
|
30
|
+
- fixed: Possible error in ETH transactions when calculated gasPrice is below baseFee
|
|
31
|
+
|
|
7
32
|
## 2.11.2 (2023-11-13)
|
|
8
33
|
|
|
9
34
|
- fixed: EVM balance sync failure if missing API key for one node type
|