From ecb8eed62c6981fa879061940801cf7860331f29 Mon Sep 17 00:00:00 2001 From: hossein_225 Date: Sat, 21 Dec 2024 11:34:50 +0330 Subject: [PATCH] improve type and GetPublicKeyByNationalIDReq --- wallet/v1/msg.proto | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index f8f70c3..d8533c4 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -225,6 +225,8 @@ enum TransactionType { SELL = 2; TRANSFER = 3; REDEEM = 4; + TRUST_LINE = 5; + WAGE = 6; } enum TransactionStatus { UNDETERMINED = 0; @@ -384,7 +386,8 @@ message RedeemTokenResList { } message GetPublicKeyByNationalIDReq { - string national_id = 1; + auth.v1.InternalIAM iam = 1; + string national_id = 2; } message GetPublicKeyByNationalIDRes { -- 2.47.2