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); }