v2: balance change added

Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
nfel 2025-08-13 14:37:28 +03:30
parent 1d7e944469
commit 33dd406f16
Signed by: nfel
GPG Key ID: DCC0BF3F92B0D45F

View File

@ -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 {