@yaswap/wallet-core 3.1.1 → 3.2.0
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 +21 -0
- package/dist/package.json +16 -16
- package/dist/src/store/utils.d.ts +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @yaswap/wallet-core
|
|
2
2
|
|
|
3
|
+
## 3.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Use latest CAL v3.2.0
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @yaswap/cryptoassets@3.2.0
|
|
13
|
+
- @yaswap/error-parser@3.2.0
|
|
14
|
+
|
|
15
|
+
## 3.1.2
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Change explorer endpoint for dogecoin
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @yaswap/cryptoassets@3.1.2
|
|
22
|
+
- @yaswap/error-parser@3.1.2
|
|
23
|
+
|
|
3
24
|
## 3.1.1
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yaswap/wallet-core",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.2",
|
|
4
4
|
"description": "Common library for yaswap wallet",
|
|
5
5
|
"repository": "git@github.com:yaswap/wallet-core.git",
|
|
6
6
|
"author": "monokh <mnokhb@gmail.com>",
|
|
@@ -33,23 +33,23 @@
|
|
|
33
33
|
"@uniswap/v2-sdk": "^3.0.1",
|
|
34
34
|
"@unstoppabledomains/resolution": "8.3.1",
|
|
35
35
|
"@xchainjs/xchain-util": "^0.6.0",
|
|
36
|
-
"@yaswap/bitcoin": "3.
|
|
37
|
-
"@yaswap/bitcoin-ledger": "3.
|
|
38
|
-
"@yaswap/client": "3.
|
|
36
|
+
"@yaswap/bitcoin": "3.2.0",
|
|
37
|
+
"@yaswap/bitcoin-ledger": "3.2.0",
|
|
38
|
+
"@yaswap/client": "3.2.0",
|
|
39
39
|
"@yaswap/cryptoassets": "workspace:*",
|
|
40
|
-
"@yaswap/dogecoin": "3.
|
|
40
|
+
"@yaswap/dogecoin": "3.2.0",
|
|
41
41
|
"@yaswap/error-parser": "workspace:*",
|
|
42
|
-
"@yaswap/errors": "3.
|
|
43
|
-
"@yaswap/evm": "3.
|
|
44
|
-
"@yaswap/evm-ledger": "3.
|
|
45
|
-
"@yaswap/hw-ledger": "3.
|
|
46
|
-
"@yaswap/litecoin": "3.
|
|
47
|
-
"@yaswap/near": "3.
|
|
48
|
-
"@yaswap/solana": "3.
|
|
49
|
-
"@yaswap/terra": "3.
|
|
50
|
-
"@yaswap/types": "3.
|
|
51
|
-
"@yaswap/utils": "3.
|
|
52
|
-
"@yaswap/yacoin": "3.
|
|
42
|
+
"@yaswap/errors": "3.2.0",
|
|
43
|
+
"@yaswap/evm": "3.2.0",
|
|
44
|
+
"@yaswap/evm-ledger": "3.2.0",
|
|
45
|
+
"@yaswap/hw-ledger": "3.2.0",
|
|
46
|
+
"@yaswap/litecoin": "3.2.0",
|
|
47
|
+
"@yaswap/near": "3.2.0",
|
|
48
|
+
"@yaswap/solana": "3.2.0",
|
|
49
|
+
"@yaswap/terra": "3.2.0",
|
|
50
|
+
"@yaswap/types": "3.2.0",
|
|
51
|
+
"@yaswap/utils": "3.2.0",
|
|
52
|
+
"@yaswap/yacoin": "3.2.0",
|
|
53
53
|
"amplitude-js": "8.18.2",
|
|
54
54
|
"bignumber.js": "^9.0.2",
|
|
55
55
|
"detect-circular-deps": "^3.0.0",
|
|
@@ -25,7 +25,7 @@ export declare function getPrices(baseCurrencies: string[], toCurrency: string):
|
|
|
25
25
|
[x: string]: any;
|
|
26
26
|
}>;
|
|
27
27
|
export declare function getCurrenciesInfo(baseCurrencies: string[]): Promise<CurrenciesInfo>;
|
|
28
|
-
export declare function getPriority(chain: string):
|
|
28
|
+
export declare function getPriority(chain: string): 2 | 1 | 0 | 3 | 4 | 5;
|
|
29
29
|
export declare const orderChains: (firstChain: {
|
|
30
30
|
totalFiatBalance: BN;
|
|
31
31
|
nativeAssetMarketCap: BN;
|