@reown/appkit 1.7.2-rc1 → 1.7.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/dist/esm/exports/constants.js +1 -1
- package/dist/esm/exports/constants.js.map +1 -1
- package/dist/esm/package.json +1 -1
- package/dist/esm/src/client/appkit-base-client.js +5 -1
- package/dist/esm/src/client/appkit-base-client.js.map +1 -1
- package/dist/esm/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/exports/constants.d.ts +1 -1
- package/dist/types/src/client/appkit-base-client.d.ts +3 -3
- package/dist/types/src/library/vue/index.d.ts +1 -1
- package/package.json +9 -9
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PACKAGE_VERSION = "1.7.2
|
|
1
|
+
export declare const PACKAGE_VERSION = "1.7.2";
|
|
@@ -53,7 +53,7 @@ export declare abstract class AppKitBaseClient {
|
|
|
53
53
|
protected createClients(): void;
|
|
54
54
|
protected getApprovedCaipNetworksData(): {
|
|
55
55
|
supportsAllNetworks: boolean;
|
|
56
|
-
approvedCaipNetworkIds: (`
|
|
56
|
+
approvedCaipNetworkIds: (`eip155:${string}` | `eip155:${number}` | `solana:${string}` | `solana:${number}` | `polkadot:${string}` | `polkadot:${number}` | `bip122:${string}` | `bip122:${number}`)[];
|
|
57
57
|
};
|
|
58
58
|
protected switchCaipNetwork(caipNetwork: CaipNetwork): Promise<void>;
|
|
59
59
|
protected getChainsFromNamespaces(namespaces?: SessionTypes.Namespaces): CaipNetworkId[];
|
|
@@ -100,7 +100,7 @@ export declare abstract class AppKitBaseClient {
|
|
|
100
100
|
getActiveChainNamespace: () => ChainNamespace | undefined;
|
|
101
101
|
setRequestedCaipNetworks: (typeof ChainController)['setRequestedCaipNetworks'];
|
|
102
102
|
getApprovedCaipNetworkIds: (typeof ChainController)['getAllApprovedCaipNetworkIds'];
|
|
103
|
-
getCaipAddress: (chainNamespace?: ChainNamespace) => `
|
|
103
|
+
getCaipAddress: (chainNamespace?: ChainNamespace) => `eip155:${string}:${string}` | `eip155:${number}:${string}` | `solana:${string}:${string}` | `solana:${number}:${string}` | `polkadot:${string}:${string}` | `polkadot:${number}:${string}` | `bip122:${string}:${string}` | `bip122:${number}:${string}` | undefined;
|
|
104
104
|
setClientId: (typeof BlockchainApiController)['setClientId'];
|
|
105
105
|
getProvider: <T>(namespace: ChainNamespace) => T | undefined;
|
|
106
106
|
getProviderType: (namespace: ChainNamespace) => ConnectorType | undefined;
|
|
@@ -142,7 +142,7 @@ export declare abstract class AppKitBaseClient {
|
|
|
142
142
|
getWalletInfo(): ConnectedWalletInfo | undefined;
|
|
143
143
|
getAccount(namespace?: ChainNamespace): {
|
|
144
144
|
allAccounts: import("@reown/appkit-controllers").AccountType[];
|
|
145
|
-
caipAddress: `
|
|
145
|
+
caipAddress: `eip155:${string}:${string}` | `eip155:${number}:${string}` | `solana:${string}:${string}` | `solana:${number}:${string}` | `polkadot:${string}:${string}` | `polkadot:${number}:${string}` | `bip122:${string}:${string}` | `bip122:${number}:${string}` | undefined;
|
|
146
146
|
address: string | undefined;
|
|
147
147
|
isConnected: boolean;
|
|
148
148
|
status: "connected" | "disconnected" | "connecting" | "reconnecting" | undefined;
|
|
@@ -62,6 +62,6 @@ export declare function useWalletInfo(): {
|
|
|
62
62
|
};
|
|
63
63
|
export declare function useAppKitState(): {
|
|
64
64
|
open: boolean;
|
|
65
|
-
selectedNetworkId: `
|
|
65
|
+
selectedNetworkId: `eip155:${string}` | `eip155:${number}` | `solana:${string}` | `solana:${number}` | `polkadot:${string}` | `polkadot:${number}` | `bip122:${string}` | `bip122:${number}` | undefined;
|
|
66
66
|
};
|
|
67
67
|
export declare function useAppKitEvents(): AppKitEvent;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reown/appkit",
|
|
3
|
-
"version": "1.7.2
|
|
3
|
+
"version": "1.7.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/esm/exports/index.js",
|
|
6
6
|
"types": "./dist/types/exports/index.d.ts",
|
|
@@ -119,13 +119,13 @@
|
|
|
119
119
|
"bs58": "6.0.0",
|
|
120
120
|
"valtio": "1.13.2",
|
|
121
121
|
"viem": ">=2.23.11",
|
|
122
|
-
"@reown/appkit-common": "1.7.2
|
|
123
|
-
"@reown/appkit-controllers": "1.7.2
|
|
124
|
-
"@reown/appkit-
|
|
125
|
-
"@reown/appkit-ui": "1.7.2
|
|
126
|
-
"@reown/appkit-
|
|
127
|
-
"@reown/appkit-
|
|
128
|
-
"@reown/appkit-wallet": "1.7.2
|
|
122
|
+
"@reown/appkit-common": "1.7.2",
|
|
123
|
+
"@reown/appkit-controllers": "1.7.2",
|
|
124
|
+
"@reown/appkit-polyfills": "1.7.2",
|
|
125
|
+
"@reown/appkit-scaffold-ui": "1.7.2",
|
|
126
|
+
"@reown/appkit-ui": "1.7.2",
|
|
127
|
+
"@reown/appkit-utils": "1.7.2",
|
|
128
|
+
"@reown/appkit-wallet": "1.7.2"
|
|
129
129
|
},
|
|
130
130
|
"devDependencies": {
|
|
131
131
|
"@types/react": "19.0.0",
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
"react-dom": "19.0.0",
|
|
140
140
|
"vitest": "2.1.9",
|
|
141
141
|
"vue": "3.x",
|
|
142
|
-
"@reown/appkit-siwe": "1.7.2
|
|
142
|
+
"@reown/appkit-siwe": "1.7.2"
|
|
143
143
|
},
|
|
144
144
|
"author": "Reown <support@reown.com> (https://reown.com)",
|
|
145
145
|
"license": "Apache-2.0",
|