@yaswap/wallet-core 2.3.2 → 2.4.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 -14
- package/dist/src/build.config.js +4 -4
- package/dist/src/index.d.ts +18 -0
- package/dist/src/store/actions/createToken.d.ts +15 -0
- package/dist/src/store/actions/createToken.js +61 -0
- package/dist/src/store/actions/createToken.js.map +1 -0
- package/dist/src/store/actions/index.d.ts +1 -0
- package/dist/src/store/actions/index.js +1 -0
- package/dist/src/store/actions/index.js.map +1 -1
- package/dist/src/store/actions/performNextAction/createToken.d.ts +7 -0
- package/dist/src/store/actions/performNextAction/createToken.js +59 -0
- package/dist/src/store/actions/performNextAction/createToken.js.map +1 -0
- package/dist/src/store/actions/performNextAction/index.js +9 -0
- package/dist/src/store/actions/performNextAction/index.js.map +1 -1
- package/dist/src/store/actions/performNextAction/send.js +1 -0
- package/dist/src/store/actions/performNextAction/send.js.map +1 -1
- package/dist/src/store/actions/updateBalances.js +54 -25
- package/dist/src/store/actions/updateBalances.js.map +1 -1
- package/dist/src/store/actions/updateFees.js +1 -0
- package/dist/src/store/actions/updateFees.js.map +1 -1
- package/dist/src/store/broker/notification.js +29 -0
- package/dist/src/store/broker/notification.js.map +1 -1
- package/dist/src/store/getters.js +1 -0
- package/dist/src/store/getters.js.map +1 -1
- package/dist/src/store/index.d.ts +72 -0
- package/dist/src/store/mutations.d.ts +6 -1
- package/dist/src/store/mutations.js +4 -0
- package/dist/src/store/mutations.js.map +1 -1
- package/dist/src/store/types.d.ts +17 -2
- package/dist/src/store/types.js +1 -0
- package/dist/src/store/types.js.map +1 -1
- package/dist/src/utils/asset.d.ts +5 -0
- package/dist/src/utils/asset.js +81 -1
- package/dist/src/utils/asset.js.map +1 -1
- package/dist/src/utils/history.d.ts +4 -0
- package/dist/src/utils/history.js +11 -1
- package/dist/src/utils/history.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +18 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yaswap/wallet-core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.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.3.0",
|
|
37
|
+
"@yaswap/bitcoin-ledger": "2.3.0",
|
|
38
|
+
"@yaswap/client": "2.3.0",
|
|
39
|
+
"@yaswap/cryptoassets": "2.4.0",
|
|
40
|
+
"@yaswap/error-parser": "2.4.0",
|
|
41
|
+
"@yaswap/errors": "2.3.0",
|
|
42
|
+
"@yaswap/evm": "2.3.0",
|
|
43
|
+
"@yaswap/evm-ledger": "2.3.0",
|
|
44
|
+
"@yaswap/hw-ledger": "2.3.0",
|
|
45
|
+
"@yaswap/near": "2.3.0",
|
|
46
|
+
"@yaswap/solana": "2.3.0",
|
|
47
|
+
"@yaswap/terra": "2.3.0",
|
|
48
|
+
"@yaswap/types": "2.3.0",
|
|
49
|
+
"@yaswap/utils": "2.3.0",
|
|
50
|
+
"@yaswap/yacoin": "2.3.0",
|
|
51
51
|
"amplitude-js": "8.18.2",
|
|
52
52
|
"bignumber.js": "^9.0.2",
|
|
53
53
|
"detect-circular-deps": "^3.0.0",
|
|
@@ -57,7 +57,9 @@
|
|
|
57
57
|
"human-standard-token-abi": "^2.0.0",
|
|
58
58
|
"lodash": "^4.17.21",
|
|
59
59
|
"moment": "^2.29.1",
|
|
60
|
+
"multiformats": "^9.7.1",
|
|
60
61
|
"react": "^18.1.0",
|
|
62
|
+
"runes2": "^1.0.7",
|
|
61
63
|
"socket.io-client": "4.6.1",
|
|
62
64
|
"tslib": "^2.3.1",
|
|
63
65
|
"urql": "^2.2.0",
|