type WalletAuthResponse = | { executedWith: "minikit" | "wagmi"; data: { address: string; message: string; signature: string; version?: number; // Command protocol version (present when returned from World App) }; } | { executedWith: "fallback"; data: unknown; };
{ "executedWith": "minikit", "data": { "address": "0x1234567890123456789012345678901234567890", "message": "example.com wants you to sign in with your Ethereum account", "signature": "0xabcdef1234567890", "version": 2 }}