@rango-dev/widget-embedded 0.37.1-next.2 → 0.38.1-next.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rango-dev/widget-embedded",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.38.1-next.0",
|
|
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.
|
|
28
|
+
"@rango-dev/provider-all": "^0.42.1-next.0",
|
|
29
29
|
"@rango-dev/queue-manager-core": "^0.27.0",
|
|
30
|
-
"@rango-dev/queue-manager-rango-preset": "^0.41.1-next.
|
|
30
|
+
"@rango-dev/queue-manager-rango-preset": "^0.41.1-next.1",
|
|
31
31
|
"@rango-dev/queue-manager-react": "^0.27.0",
|
|
32
|
-
"@rango-dev/signer-solana": "^0.
|
|
33
|
-
"@rango-dev/ui": "^0.43.1-next.
|
|
34
|
-
"@rango-dev/wallets-core": "^0.40.1-next.
|
|
35
|
-
"@rango-dev/wallets-react": "^0.27.1-next.
|
|
36
|
-
"@rango-dev/wallets-shared": "^0.41.1-next.
|
|
32
|
+
"@rango-dev/signer-solana": "^0.36.0",
|
|
33
|
+
"@rango-dev/ui": "^0.43.1-next.1",
|
|
34
|
+
"@rango-dev/wallets-core": "^0.40.1-next.9",
|
|
35
|
+
"@rango-dev/wallets-react": "^0.27.1-next.1",
|
|
36
|
+
"@rango-dev/wallets-shared": "^0.41.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/types/config.ts
CHANGED
|
@@ -108,8 +108,13 @@ export type BlockchainAndTokenConfig = {
|
|
|
108
108
|
tokens?: Asset[] | { [blockchain: string]: Tokens };
|
|
109
109
|
};
|
|
110
110
|
|
|
111
|
+
/**
|
|
112
|
+
* `SignersConfig`
|
|
113
|
+
*
|
|
114
|
+
* @property {string | string[]} customSolanaRPC - This is an optional property that can be used to set custom Solana RPCs.
|
|
115
|
+
*/
|
|
111
116
|
export type SignersConfig = {
|
|
112
|
-
customSolanaRPC?: string;
|
|
117
|
+
customSolanaRPC?: string | string[];
|
|
113
118
|
};
|
|
114
119
|
|
|
115
120
|
/**
|