UNPKG

@cranberry-money/shared-types

Version:

Shared TypeScript type definitions for Blueberry platform

15 lines 400 B
export interface RequestVerificationChallengeResponse { challenge: string; message: string; walletAddress: string; } export interface VerifyWalletRequest { signature: string; } export interface VerifyWalletResponse { success: boolean; message: string; verificationStatus: 'PENDING' | 'VERIFIED'; verifiedAt?: string; } //# sourceMappingURL=wallet-verification.d.ts.map