v2: added 'has_source' to market filter

Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
nfel 2025-03-09 16:14:09 +03:30
parent f965d1b13c
commit 6a9f4bb9bd
Signed by: nfel
GPG Key ID: DCC0BF3F92B0D45F

View File

@ -99,6 +99,8 @@ message OrderListFilter {
optional double starting_price = 8; optional double starting_price = 8;
optional double ending_price = 9; optional double ending_price = 9;
repeated wallet.v1.Asset asset = 10; repeated wallet.v1.Asset asset = 10;
uint64 order_id = 11; optional uint64 order_id = 11;
uint64 trx_id = 12; optional uint64 trx_id = 12;
optional bool is_public = 13;
optional bool has_source = 14;
} }