@latticexyz/entrykit 2.2.21-f4db683f90214b03bb8d68635a3825cc9bf58263 → 2.2.22-01a4d064e5fd8e579d54bb3aa8997f225c6960d3
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.
|
@@ -126,4 +126,15 @@ declare function getWallets(_config: {
|
|
|
126
126
|
readonly chainId: number;
|
|
127
127
|
}): WalletList;
|
|
128
128
|
|
|
129
|
-
|
|
129
|
+
/**
|
|
130
|
+
* @internal
|
|
131
|
+
*/
|
|
132
|
+
declare function internal_validateSigner({ client, worldAddress, userAddress, sessionAddress, signerAddress, }: {
|
|
133
|
+
client: Client;
|
|
134
|
+
worldAddress: Address$1;
|
|
135
|
+
userAddress: Address$1;
|
|
136
|
+
sessionAddress: Address$1;
|
|
137
|
+
signerAddress: Address$1;
|
|
138
|
+
}): Promise<void>;
|
|
139
|
+
|
|
140
|
+
export { AccountButton, type ConnectedClient, type CreateWagmiConfigOptions, type EntryKitConfig, type EntryKitConfigInput, EntryKitProvider, type SessionClient, createWagmiConfig, defineConfig, getConnectors, getWallets, internal_validateSigner, useAccountModal, useEntryKitConfig, useSessionClientReady as useSessionClient };
|