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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user