@rango-dev/widget-embedded 0.36.1-next.0 → 0.36.1-next.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rango-dev/widget-embedded",
|
|
3
|
-
"version": "0.36.1-next.
|
|
3
|
+
"version": "0.36.1-next.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"source": "./src/index.ts",
|
|
@@ -25,15 +25,15 @@
|
|
|
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.40.1-next.
|
|
28
|
+
"@rango-dev/provider-all": "^0.40.1-next.1",
|
|
29
29
|
"@rango-dev/queue-manager-core": "^0.27.0",
|
|
30
|
-
"@rango-dev/queue-manager-rango-preset": "^0.40.1-next.
|
|
30
|
+
"@rango-dev/queue-manager-rango-preset": "^0.40.1-next.1",
|
|
31
31
|
"@rango-dev/queue-manager-react": "^0.27.0",
|
|
32
32
|
"@rango-dev/signer-solana": "^0.35.0",
|
|
33
|
-
"@rango-dev/ui": "^0.42.1-next.
|
|
34
|
-
"@rango-dev/wallets-core": "^0.40.1-next.
|
|
35
|
-
"@rango-dev/wallets-react": "^0.26.1-next.
|
|
36
|
-
"@rango-dev/wallets-shared": "^0.40.1-next.
|
|
33
|
+
"@rango-dev/ui": "^0.42.1-next.1",
|
|
34
|
+
"@rango-dev/wallets-core": "^0.40.1-next.1",
|
|
35
|
+
"@rango-dev/wallets-react": "^0.26.1-next.1",
|
|
36
|
+
"@rango-dev/wallets-shared": "^0.40.1-next.1",
|
|
37
37
|
"bignumber.js": "^9.1.1",
|
|
38
38
|
"copy-to-clipboard": "^3.3.3",
|
|
39
39
|
"dayjs": "^1.11.7",
|
|
@@ -54,4 +54,4 @@
|
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public"
|
|
56
56
|
}
|
|
57
|
-
}
|
|
57
|
+
}
|
package/src/store/slices/data.ts
CHANGED
|
@@ -348,8 +348,9 @@ export const createDataSlice: StateCreator<
|
|
|
348
348
|
{};
|
|
349
349
|
const tokens: Token[] = [];
|
|
350
350
|
const popularTokens: Token[] = response.popularTokens;
|
|
351
|
-
const swappers: SwapperMeta[] = response.swappers
|
|
352
|
-
|
|
351
|
+
const swappers: SwapperMeta[] = response.swappers.filter(
|
|
352
|
+
(swapper) => swapper.enabled
|
|
353
|
+
);
|
|
353
354
|
const blockchainsWithAtLeastOneToken = new Set();
|
|
354
355
|
|
|
355
356
|
response.tokens.forEach((token) => {
|