V2: updating to new proto schema. domain seperated packages #36

Merged
nfel merged 327 commits from v2 into dev 2026-07-21 10:59:54 +00:00
Showing only changes of commit 51b60ed987 - Show all commits
+8 -7
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;
}