From 0414a1c1b5ab818b35e246fad03f213abc23a4fb Mon Sep 17 00:00:00 2001 From: nfel Date: Tue, 7 Jan 2025 14:53:49 +0330 Subject: [PATCH] v2: some chain related data add trx list Signed-off-by: nfel --- wallet/v1/msg.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index eb6c055..81ec246 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -253,6 +253,7 @@ message Transaction { optional auth.v1.UserIdentityBasic from_user_info = 5; optional int64 from_federation_id = 6; optional Federation from_federation_info = 7; + optional int64 to_user_id = 8; optional auth.v1.UserIdentityBasic to_user_info = 9; optional int64 to_federation_id = 10; @@ -263,6 +264,9 @@ message Transaction { string updated_at = 15; string created_at = 16; string tracking_code = 17; + optional string trx_hash = 18; + optional string from_public_key = 19; + optional string to_public_key = 20; } message UserGetTransactionListReq {