From 60b7f90a71fda55ff28e838cdee87673c0179aec Mon Sep 17 00:00:00 2001 From: nfel Date: Wed, 30 Apr 2025 16:37:41 +0330 Subject: [PATCH] v2: :0 Signed-off-by: nfel --- wallet/v1/msg.proto | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index 00088b0..d083539 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -474,6 +474,7 @@ enum IPGStatus { IPG_FAILED = -1; IPG_PENDING = 1; } + // represent the information regarding the sale of the token message IPGGetTokenReq { auth.v1.InternalIAM iam = 1; @@ -549,9 +550,9 @@ message BuyAssetRes { int64 id = 1; Asset asset = 2; double amount = 3; - double calculated_amount = 4; - double fee_amount = 5; - double discount_amount = 6; - double buy_min_amount = 7; - + double calculated_irt_amount = 4; + double calculated_asset_amount = 5; + double fee_amount = 6; + double discount_amount = 7; + double buy_min_amount = 8; }