From d16247cc2b80da2348c62a7b71e57c0def1864de Mon Sep 17 00:00:00 2001 From: nfel Date: Sat, 12 Apr 2025 13:09:17 +0330 Subject: [PATCH] v2: withdraw receipt - ( code ) Signed-off-by: nfel --- wallet/v1/msg.proto | 3 +++ wallet/v1/srv.proto | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index ad75751..01a9377 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -346,6 +346,9 @@ message TransferAssetRes { string transaction_hash = 4; } +// represent the information regarding the withdraw in bank +message WithdrawReceipt { string code = 1; } + // represent the information regarding the sale of the token message SaleGetTokenReq { auth.v1.InternalIAM iam = 1; diff --git a/wallet/v1/srv.proto b/wallet/v1/srv.proto index f17fff9..ec30ec7 100644 --- a/wallet/v1/srv.proto +++ b/wallet/v1/srv.proto @@ -52,4 +52,8 @@ service WalletService { rpc ReleaseAsset(LockAssetReq) returns (base.v1.StatusRes); rpc AssetDiscount(AssetDiscountReq) returns (AssetDiscountRes); + + // --- IRT --- + // rpc WithdrawIRT(WithdrawIRTReq) returns (base.v1.StatusRes); + // rpc DepositIRT(DepositIRTReq) returns (base.v1.StatusRes); }