From 51b60ed9873d1eaef69c1e393413345adff2b2e8 Mon Sep 17 00:00:00 2001 From: nfel Date: Sat, 17 May 2025 12:18:26 +0330 Subject: [PATCH] v2: name added as filter Signed-off-by: nfel --- wallet/v1/msg.proto | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index 8e97f91..aec5d61 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -142,13 +142,14 @@ message AssetList { message AssetFilter { repeated int64 ids = 1; - repeated AssetType types = 2; // AssetType - repeated AssetType token_types = 3; // AssetType - repeated AssetStatus statuses = 4; - optional bool can_buy = 5; - optional bool can_sell = 6; - optional bool can_deposit = 7; - optional bool can_withdraw = 8; + repeated AssetType asset_type = 2; // AssetType + repeated AssetType token_type = 3; // AssetType + repeated AssetStatus status = 4; + repeated string name = 5; + optional bool can_buy = 6; + optional bool can_sell = 7; + optional bool can_deposit = 8; + optional bool can_withdraw = 9; }