From 219b3886481680f46802e1229c665f4cbfeb79d5 Mon Sep 17 00:00:00 2001 From: AmirMahdi Qiasvand Date: Tue, 29 Jul 2025 14:58:27 +0330 Subject: [PATCH] ref: contract messages and rpc --- market/v1/msg.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/market/v1/msg.proto b/market/v1/msg.proto index 03285d5..3310cac 100644 --- a/market/v1/msg.proto +++ b/market/v1/msg.proto @@ -158,6 +158,7 @@ message OrderListFilter { optional uint32 page_size = 20; } +/* Contract */ message ContractMarketRes { string link = 1; uint64 agreement_id = 2; @@ -165,3 +166,8 @@ message ContractMarketRes { string contract_hash = 4; string contract_content = 5; } + +message DeclineMarketContractReq { + auth.v1.InternalIAM iam = 1; + uint64 agreement_id = 2; +}