From 33dd406f169910ffaa52c305720c9f70a64855b7 Mon Sep 17 00:00:00 2001 From: nfel Date: Wed, 13 Aug 2025 14:37:28 +0330 Subject: [PATCH] v2: balance change added Signed-off-by: nfel --- wallet/v1/msg.proto | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index 3612d8c..737cdbe 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -389,6 +389,13 @@ message Transaction { optional string from_public_key = 19; optional string to_public_key = 20; double token_price = 21; + BalanceChange balance_change = 22; +} + +enum BalanceChange{ + NO_CHANGE = 0; + INCREASE = 1; + DECREASE = 2; } message TransactionListFilter {