@reown/appkit-siwx
Version:
The chain agnostic tool to enable authentication for AppKit applications.
12 lines (11 loc) • 522 B
TypeScript
import { SIWXConfig } from '../core/SIWXConfig.js';
/**
* This is the default configuration for SIWX.
*
* This configuration is split in three pieces `messenger`, `verifiers` and `storage`.
* By default it uses InformalMessenger, EIP155Verifier, SolanaVerifier, BIP122Verifier, and LocalStorage.
* You may override any of these defaults by passing your own configuration for the constructor.
*/
export declare class DefaultSIWX extends SIWXConfig {
constructor(params?: Partial<SIWXConfig.ConstructorParams>);
}