Enhance user authentication by adding optional OwnerWalletAddress parameter in LoginRequest and UserService. Update UserController and related components to support the new wallet address functionality, ensuring better user profile management and validation in trading operations.

This commit is contained in:
2025-11-17 13:48:05 +07:00
parent 8697f1598d
commit 06ef33b7ab
15 changed files with 1802 additions and 28 deletions

View File

@@ -4523,6 +4523,7 @@ export interface User {
agentName?: string | null;
avatarUrl?: string | null;
telegramChannel?: string | null;
ownerWalletAddress?: string | null;
isAdmin?: boolean;
}
@@ -5863,6 +5864,7 @@ export interface LoginRequest {
address: string;
signature: string;
message: string;
ownerWalletAddress?: string | null;
}
export interface PaginatedWhitelistAccountsResponse {