@yaswap/wallet-core 2.6.4 → 2.7.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 +12 -0
- package/dist/package.json +16 -15
- package/dist/src/build.config.d.ts +3 -0
- package/dist/src/build.config.js +6 -0
- package/dist/src/build.config.js.map +1 -1
- package/dist/src/factory/client/clients.d.ts +1 -0
- package/dist/src/factory/client/clients.js +24 -1
- package/dist/src/factory/client/clients.js.map +1 -1
- package/dist/src/factory/client/index.js +3 -0
- package/dist/src/factory/client/index.js.map +1 -1
- package/dist/src/factory/settings.js +3 -0
- package/dist/src/factory/settings.js.map +1 -1
- package/dist/src/index.d.ts +2 -0
- package/dist/src/store/actions/performNextAction/index.js +1 -0
- package/dist/src/store/actions/performNextAction/index.js.map +1 -1
- package/dist/src/store/actions/performNextAction/send.js +3 -1
- package/dist/src/store/actions/performNextAction/send.js.map +1 -1
- package/dist/src/store/actions/updateAccountBalance.js +1 -0
- package/dist/src/store/actions/updateAccountBalance.js.map +1 -1
- package/dist/src/store/getters.d.ts +1 -0
- package/dist/src/store/index.d.ts +8 -0
- package/dist/src/store/utils.d.ts +1 -1
- package/dist/src/store/utils.js +4 -2
- package/dist/src/store/utils.js.map +1 -1
- package/dist/src/swaps/yaswap/YaswapSwapProvider.js +8 -0
- package/dist/src/swaps/yaswap/YaswapSwapProvider.js.map +1 -1
- package/dist/src/utils/derivationPath.js +4 -0
- package/dist/src/utils/derivationPath.js.map +1 -1
- package/dist/src/utils/networks.js +5 -0
- package/dist/src/utils/networks.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +18 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yaswap/wallet-core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.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,22 +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": "2.
|
|
37
|
-
"@yaswap/bitcoin-ledger": "2.
|
|
38
|
-
"@yaswap/client": "2.
|
|
39
|
-
"@yaswap/cryptoassets": "2.
|
|
40
|
-
"@yaswap/
|
|
41
|
-
"@yaswap/
|
|
42
|
-
"@yaswap/
|
|
43
|
-
"@yaswap/evm
|
|
44
|
-
"@yaswap/
|
|
45
|
-
"@yaswap/
|
|
46
|
-
"@yaswap/
|
|
47
|
-
"@yaswap/
|
|
48
|
-
"@yaswap/
|
|
49
|
-
"@yaswap/
|
|
50
|
-
"@yaswap/
|
|
51
|
-
"@yaswap/
|
|
36
|
+
"@yaswap/bitcoin": "2.6.0",
|
|
37
|
+
"@yaswap/bitcoin-ledger": "2.6.0",
|
|
38
|
+
"@yaswap/client": "2.6.0",
|
|
39
|
+
"@yaswap/cryptoassets": "2.7.0",
|
|
40
|
+
"@yaswap/dogecoin": "2.6.0",
|
|
41
|
+
"@yaswap/error-parser": "2.7.0",
|
|
42
|
+
"@yaswap/errors": "2.6.0",
|
|
43
|
+
"@yaswap/evm": "2.6.0",
|
|
44
|
+
"@yaswap/evm-ledger": "2.6.0",
|
|
45
|
+
"@yaswap/hw-ledger": "2.6.0",
|
|
46
|
+
"@yaswap/litecoin": "2.6.0",
|
|
47
|
+
"@yaswap/near": "2.6.0",
|
|
48
|
+
"@yaswap/solana": "2.6.0",
|
|
49
|
+
"@yaswap/terra": "2.6.0",
|
|
50
|
+
"@yaswap/types": "2.6.0",
|
|
51
|
+
"@yaswap/utils": "2.6.0",
|
|
52
|
+
"@yaswap/yacoin": "2.6.0",
|
|
52
53
|
"amplitude-js": "8.18.2",
|
|
53
54
|
"bignumber.js": "^9.0.2",
|
|
54
55
|
"detect-circular-deps": "^3.0.0",
|