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 e2b3b41fbb - Show all commits
+4 -3
View File
@@ -583,12 +583,12 @@ message BuyAssetReq {
message DeclineBuyContractReq {
auth.v1.InternalIAM iam = 1;
uint64 aggreement_id = 2;
uint64 agreement_id = 2;
}
message ConfirmBuyAssetReq {
auth.v1.InternalIAM iam = 1;
uint64 aggreement_id = 2; // Only in asset that require agreement contract
uint64 agreement_id = 2; // Only in asset that require agreement contract
optional auth.v1.TFA tfa = 3; // This might be used in the future
}
@@ -620,9 +620,10 @@ enum ContractType {
CONTRACT_TYPE_REDEEM = 3;
}
//agreement_id
message ContractRes {
string link = 1;
uint64 aggreement_id = 2;
uint64 agreement_id = 2;
uint64 transaction_id = 3;
string contract_hash = 4;
string contract_content = 5;