@rango-dev/widget-embedded 0.31.0 → 0.31.1-next.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 +31 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/dist/widget-embedded.build.json +1 -1
- package/package.json +4 -4
- package/src/store/wallets.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rango-dev/widget-embedded",
|
|
3
|
-
"version": "0.31.
|
|
3
|
+
"version": "0.31.1-next.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"source": "./src/index.ts",
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"@lingui/core": "4.2.1",
|
|
26
26
|
"@lingui/react": "4.2.1",
|
|
27
27
|
"@rango-dev/logging-core": "^0.6.0",
|
|
28
|
-
"@rango-dev/provider-all": "^0.36.0",
|
|
28
|
+
"@rango-dev/provider-all": "^0.36.1-next.0",
|
|
29
29
|
"@rango-dev/queue-manager-core": "^0.27.0",
|
|
30
30
|
"@rango-dev/queue-manager-rango-preset": "^0.36.0",
|
|
31
31
|
"@rango-dev/queue-manager-react": "^0.27.0",
|
|
32
|
-
"@rango-dev/signer-solana": "^0.31.0",
|
|
32
|
+
"@rango-dev/signer-solana": "^0.31.1-next.0",
|
|
33
33
|
"@rango-dev/ui": "^0.37.0",
|
|
34
34
|
"@rango-dev/wallets-react": "^0.22.0",
|
|
35
35
|
"@rango-dev/wallets-shared": "^0.36.0",
|
|
@@ -53,4 +53,4 @@
|
|
|
53
53
|
"publishConfig": {
|
|
54
54
|
"access": "public"
|
|
55
55
|
}
|
|
56
|
-
}
|
|
56
|
+
}
|
package/src/store/wallets.ts
CHANGED
|
@@ -220,13 +220,13 @@ export const useWalletsStore = createSelectors(
|
|
|
220
220
|
findToken
|
|
221
221
|
),
|
|
222
222
|
loading: false,
|
|
223
|
+
error: false,
|
|
223
224
|
}
|
|
224
225
|
: connectedWallet;
|
|
225
226
|
}
|
|
226
227
|
);
|
|
227
228
|
|
|
228
229
|
const balances = makeTokensBalance(connectedWallets);
|
|
229
|
-
|
|
230
230
|
return {
|
|
231
231
|
loading: false,
|
|
232
232
|
balances,
|