Add wallet_address property to AethexUserProfile interface

cgen-9b277b48d3ca400eadd89139ea4e0462
This commit is contained in:
Builder.io 2025-11-15 01:35:38 +00:00
parent 329c2841c9
commit 96ab07ae43

View file

@ -21,6 +21,7 @@ export interface AethexUserProfile extends UserProfile {
last_streak_at?: string | null;
social_links?: any;
skills?: string[];
wallet_address?: string | null;
}
const isNonEmptyString = (value: unknown): value is string =>