@yaswap/wallet-core 3.2.4 → 3.3.1
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/build.config.js +10 -10
- package/dist/src/build.config.js.map +1 -1
- package/dist/src/factory/client/clients.js.map +1 -1
- package/dist/src/index.d.ts +1 -6
- package/dist/src/store/actions/createToken.js +8 -1
- package/dist/src/store/actions/createToken.js.map +1 -1
- package/dist/src/store/actions/createWallet.d.ts +9 -4
- package/dist/src/store/actions/createWallet.js +25 -3
- package/dist/src/store/actions/createWallet.js.map +1 -1
- package/dist/src/store/actions/getUnusedAddresses.js +8 -1
- package/dist/src/store/actions/getUnusedAddresses.js.map +1 -1
- package/dist/src/store/actions/sendTransaction.js +16 -3
- package/dist/src/store/actions/sendTransaction.js.map +1 -1
- package/dist/src/store/actions/updateAccountBalance.js +14 -2
- package/dist/src/store/actions/updateAccountBalance.js.map +1 -1
- package/dist/src/store/actions/updateBalances.js +15 -1
- package/dist/src/store/actions/updateBalances.js.map +1 -1
- package/dist/src/store/index.d.ts +4 -24
- package/dist/src/store/types.d.ts +5 -0
- package/dist/src/store/types.js.map +1 -1
- package/dist/src/swaps/yaswap/YaswapSwapProvider.js +21 -5
- package/dist/src/swaps/yaswap/YaswapSwapProvider.js.map +1 -1
- package/dist/src/utils/fees.js +29 -4
- package/dist/src/utils/fees.js.map +1 -1
- package/dist/src/utils/hdWalletOptions.d.ts +14 -0
- package/dist/src/utils/hdWalletOptions.js +48 -0
- package/dist/src/utils/hdWalletOptions.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +18 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yaswap/wallet-core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.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.
|
|
37
|
-
"@yaswap/bitcoin-ledger": "3.
|
|
38
|
-
"@yaswap/client": "3.
|
|
39
|
-
"@yaswap/cryptoassets": "3.
|
|
40
|
-
"@yaswap/dogecoin": "3.
|
|
41
|
-
"@yaswap/error-parser": "3.
|
|
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.
|
|
36
|
+
"@yaswap/bitcoin": "3.4.5",
|
|
37
|
+
"@yaswap/bitcoin-ledger": "3.4.5",
|
|
38
|
+
"@yaswap/client": "3.4.5",
|
|
39
|
+
"@yaswap/cryptoassets": "3.3.1",
|
|
40
|
+
"@yaswap/dogecoin": "3.4.5",
|
|
41
|
+
"@yaswap/error-parser": "3.3.1",
|
|
42
|
+
"@yaswap/errors": "3.4.5",
|
|
43
|
+
"@yaswap/evm": "3.4.5",
|
|
44
|
+
"@yaswap/evm-ledger": "3.4.5",
|
|
45
|
+
"@yaswap/hw-ledger": "3.4.5",
|
|
46
|
+
"@yaswap/litecoin": "3.4.5",
|
|
47
|
+
"@yaswap/near": "3.4.5",
|
|
48
|
+
"@yaswap/solana": "3.4.5",
|
|
49
|
+
"@yaswap/terra": "3.4.5",
|
|
50
|
+
"@yaswap/types": "3.4.5",
|
|
51
|
+
"@yaswap/utils": "3.4.5",
|
|
52
|
+
"@yaswap/yacoin": "3.4.5",
|
|
53
53
|
"amplitude-js": "8.18.2",
|
|
54
54
|
"bignumber.js": "^9.0.2",
|
|
55
55
|
"detect-circular-deps": "^3.0.0",
|