feat: add market contract req message

This commit is contained in:
AmirMahdi Qiasvand 2025-07-30 13:53:12 +03:30
parent 219b388648
commit a19bcd544c

View File

@ -171,3 +171,10 @@ message DeclineMarketContractReq {
auth.v1.InternalIAM iam = 1; auth.v1.InternalIAM iam = 1;
uint64 agreement_id = 2; uint64 agreement_id = 2;
} }
message MarketContractReq {
auth.v1.InternalIAM iam = 1;
uint64 order_id = 2; // Maker OrderID
double amount = 3;
wallet.v1.BuyAssetSide req_side = 4;
}