From 96ab07ae430479a37a33c46e715e4d2174fa0b16 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 15 Nov 2025 01:35:38 +0000 Subject: [PATCH] Add wallet_address property to AethexUserProfile interface cgen-9b277b48d3ca400eadd89139ea4e0462 --- client/lib/aethex-database-adapter.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/client/lib/aethex-database-adapter.ts b/client/lib/aethex-database-adapter.ts index 953d6a64..1a5ba0d4 100644 --- a/client/lib/aethex-database-adapter.ts +++ b/client/lib/aethex-database-adapter.ts @@ -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 =>