From 776406cb7dc63b9ca25256f3b3002ce7143fd98a Mon Sep 17 00:00:00 2001 From: Ata Safapour Date: Sat, 13 Dec 2025 17:16:33 +0330 Subject: [PATCH] feat: add is_identity_verified to UserIdentityBasic message --- auth/v1/msg.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/auth/v1/msg.proto b/auth/v1/msg.proto index 552b3b7..d7e4cf8 100644 --- a/auth/v1/msg.proto +++ b/auth/v1/msg.proto @@ -188,6 +188,7 @@ message UserIdentityBasic { string first_name = 4; string last_name = 5; string wallet_address = 6; + bool is_identity_verified = 7; } message UserUpdateIdentityReq {