@yaswap/wallet-core 2.2.0 → 2.3.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 +14 -14
- package/dist/src/build.config.js +4 -4
- package/dist/src/factory/client/clients.js +4 -1
- package/dist/src/factory/client/clients.js.map +1 -1
- package/dist/src/index.d.ts +4 -0
- package/dist/src/store/actions/addCustomToken.d.ts +6 -2
- package/dist/src/store/actions/addCustomToken.js +2 -2
- package/dist/src/store/actions/addCustomToken.js.map +1 -1
- package/dist/src/store/actions/enableAssets.js.map +1 -1
- package/dist/src/store/actions/sendNFTTransaction.js +1 -1
- package/dist/src/store/actions/sendNFTTransaction.js.map +1 -1
- package/dist/src/store/actions/sendTransaction.js +12 -1
- package/dist/src/store/actions/sendTransaction.js.map +1 -1
- package/dist/src/store/actions/updateAccountBalance.js +20 -3
- package/dist/src/store/actions/updateAccountBalance.js.map +1 -1
- package/dist/src/store/actions/updateBalances.js +55 -19
- package/dist/src/store/actions/updateBalances.js.map +1 -1
- package/dist/src/store/index.d.ts +16 -0
- package/dist/src/store/mutations.js.map +1 -1
- package/dist/src/store/types.d.ts +9 -0
- package/dist/src/store/types.js.map +1 -1
- package/dist/src/swaps/yaswap/YaswapSwapProvider.js +10 -10
- package/dist/src/swaps/yaswap/YaswapSwapProvider.js.map +1 -1
- package/dist/src/utils/asset.d.ts +2 -1
- package/dist/src/utils/asset.js +8 -1
- package/dist/src/utils/asset.js.map +1 -1
- package/dist/src/utils/fees.d.ts +2 -1
- package/dist/src/utils/fees.js +63 -16
- package/dist/src/utils/fees.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +16 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yaswap/wallet-core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
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,21 +33,21 @@
|
|
|
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": "2.
|
|
37
|
-
"@yaswap/bitcoin-ledger": "2.
|
|
38
|
-
"@yaswap/client": "2.
|
|
39
|
-
"@yaswap/cryptoassets": "2.
|
|
40
|
-
"@yaswap/error-parser": "2.
|
|
41
|
-
"@yaswap/errors": "2.
|
|
42
|
-
"@yaswap/evm": "2.
|
|
43
|
-
"@yaswap/evm-ledger": "2.
|
|
44
|
-
"@yaswap/hw-ledger": "2.
|
|
45
|
-
"@yaswap/near": "2.
|
|
46
|
-
"@yaswap/solana": "2.
|
|
47
|
-
"@yaswap/terra": "2.
|
|
48
|
-
"@yaswap/types": "2.
|
|
49
|
-
"@yaswap/utils": "2.
|
|
50
|
-
"@yaswap/yacoin": "2.
|
|
36
|
+
"@yaswap/bitcoin": "2.2.0",
|
|
37
|
+
"@yaswap/bitcoin-ledger": "2.2.0",
|
|
38
|
+
"@yaswap/client": "2.2.0",
|
|
39
|
+
"@yaswap/cryptoassets": "2.3.0",
|
|
40
|
+
"@yaswap/error-parser": "2.3.0",
|
|
41
|
+
"@yaswap/errors": "2.2.0",
|
|
42
|
+
"@yaswap/evm": "2.2.0",
|
|
43
|
+
"@yaswap/evm-ledger": "2.2.0",
|
|
44
|
+
"@yaswap/hw-ledger": "2.2.0",
|
|
45
|
+
"@yaswap/near": "2.2.0",
|
|
46
|
+
"@yaswap/solana": "2.2.0",
|
|
47
|
+
"@yaswap/terra": "2.2.0",
|
|
48
|
+
"@yaswap/types": "2.2.0",
|
|
49
|
+
"@yaswap/utils": "2.2.0",
|
|
50
|
+
"@yaswap/yacoin": "2.2.0",
|
|
51
51
|
"amplitude-js": "8.18.2",
|
|
52
52
|
"bignumber.js": "^9.0.2",
|
|
53
53
|
"detect-circular-deps": "^3.0.0",
|