v2: name added as filter

Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
nfel 2025-05-17 12:18:26 +03:30
parent e8ae988700
commit 51b60ed987
Signed by: nfel
GPG Key ID: DCC0BF3F92B0D45F

View File

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