@yaswap/wallet-core 3.2.0 → 3.2.2
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 +18 -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,23 @@
|
|
|
1
1
|
# @yaswap/wallet-core
|
|
2
2
|
|
|
3
|
+
## 3.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Lower number requests
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @yaswap/cryptoassets@3.2.2
|
|
10
|
+
- @yaswap/error-parser@3.2.2
|
|
11
|
+
|
|
12
|
+
## 3.2.1
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Use fixed version 0.5.12 of multicoin-address-validator
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @yaswap/cryptoassets@3.2.1
|
|
19
|
+
- @yaswap/error-parser@3.2.1
|
|
20
|
+
|
|
3
21
|
## 3.2.0
|
|
4
22
|
|
|
5
23
|
### Minor 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.2.1",
|
|
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.2.
|
|
37
|
-
"@yaswap/bitcoin-ledger": "3.2.
|
|
38
|
-
"@yaswap/client": "3.2.
|
|
36
|
+
"@yaswap/bitcoin": "3.2.1",
|
|
37
|
+
"@yaswap/bitcoin-ledger": "3.2.1",
|
|
38
|
+
"@yaswap/client": "3.2.1",
|
|
39
39
|
"@yaswap/cryptoassets": "workspace:*",
|
|
40
|
-
"@yaswap/dogecoin": "3.2.
|
|
40
|
+
"@yaswap/dogecoin": "3.2.1",
|
|
41
41
|
"@yaswap/error-parser": "workspace:*",
|
|
42
|
-
"@yaswap/errors": "3.2.
|
|
43
|
-
"@yaswap/evm": "3.2.
|
|
44
|
-
"@yaswap/evm-ledger": "3.2.
|
|
45
|
-
"@yaswap/hw-ledger": "3.2.
|
|
46
|
-
"@yaswap/litecoin": "3.2.
|
|
47
|
-
"@yaswap/near": "3.2.
|
|
48
|
-
"@yaswap/solana": "3.2.
|
|
49
|
-
"@yaswap/terra": "3.2.
|
|
50
|
-
"@yaswap/types": "3.2.
|
|
51
|
-
"@yaswap/utils": "3.2.
|
|
52
|
-
"@yaswap/yacoin": "3.2.
|
|
42
|
+
"@yaswap/errors": "3.2.1",
|
|
43
|
+
"@yaswap/evm": "3.2.1",
|
|
44
|
+
"@yaswap/evm-ledger": "3.2.1",
|
|
45
|
+
"@yaswap/hw-ledger": "3.2.1",
|
|
46
|
+
"@yaswap/litecoin": "3.2.1",
|
|
47
|
+
"@yaswap/near": "3.2.1",
|
|
48
|
+
"@yaswap/solana": "3.2.1",
|
|
49
|
+
"@yaswap/terra": "3.2.1",
|
|
50
|
+
"@yaswap/types": "3.2.1",
|
|
51
|
+
"@yaswap/utils": "3.2.1",
|
|
52
|
+
"@yaswap/yacoin": "3.2.1",
|
|
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): 0 | 2 | 1 | 3 | 4 | 5;
|
|
29
29
|
export declare const orderChains: (firstChain: {
|
|
30
30
|
totalFiatBalance: BN;
|
|
31
31
|
nativeAssetMarketCap: BN;
|