/** * @internal */ export type Ecosystem = "evm"; export interface GenericAuthWallet { type: Ecosystem; getAddress(): Promise; getChainId?(): Promise; signMessage(message: string): Promise; verifySignature(message: string, signature: string, address: string, chainId?: number): Promise; } //# sourceMappingURL=auth.d.ts.map