From af46f5392ee4023385d6b5a04e2bf75d948de8ca Mon Sep 17 00:00:00 2001 From: nfel Date: Tue, 29 Apr 2025 14:52:57 +0330 Subject: [PATCH] v2: ipg status enum Signed-off-by: nfel --- wallet/v1/msg.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index 77a0ca7..3a91c23 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -468,6 +468,11 @@ message Commission { // auth.v1.BankInfo bank_info = 2; // BankInfo // } +enum IPGStatus { + IPG_SUCCESS = 0; + IPG_FAILED = -1; + IPG_PENDING = 1; +} // represent the information regarding the sale of the token message IPGGetTokenReq { auth.v1.InternalIAM iam = 1;