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 5323f73407 - Show all commits
+10 -10
View File
@@ -19,15 +19,16 @@ message MarketOrder {
MarketOrderSide side = 8;
MarketOrderStatus status = 9;
int64 from = 10;
wallet.v1.Commission commission = 11;
double completed_amount = 12;
string created_at = 13;
string updated_at = 14;
bool is_public = 15;
wallet.v1.TransactionList trx = 16;
repeated string tags = 17;
repeated string comment = 18;
optional MarketOrder source = 19; // purchase is done via this field
auth.v1.UserIdentityBasic from_identity = 11;
wallet.v1.Commission commission = 12;
double completed_amount = 13;
string created_at = 14;
string updated_at = 15;
bool is_public = 16;
wallet.v1.TransactionList trx = 17;
repeated string tags = 18;
repeated string comment = 19;
optional MarketOrder source = 20; // purchase is done via this field
// repeated string attachments = 14; // possible files included by seller/buyer
}
@@ -99,4 +100,3 @@ message OrderListFilter {
uint64 order_id = 11;
uint64 trx_id = 12;
}