Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
f9ef69113a
|
|||
| 4154200991 | |||
| 7a886e094e | |||
|
488d624a52
|
+2
-2
@@ -266,8 +266,8 @@ enum TfaStateEnum {
|
|||||||
INTERNAL_TRANSFER = 2;
|
INTERNAL_TRANSFER = 2;
|
||||||
EXTERNAL_TRANSFER = 3;
|
EXTERNAL_TRANSFER = 3;
|
||||||
REDEEM_TOKEN = 4;
|
REDEEM_TOKEN = 4;
|
||||||
MARKET_PLACE_PURCHASE = 5;
|
MARKET_PLACE_MAKER = 5;
|
||||||
MARKET_PLACE_ORDER_CREATE = 6;
|
MARKET_PLACE_TAKER = 6;
|
||||||
MARKET_PLACE_ORDER_CANCEL = 7;
|
MARKET_PLACE_ORDER_CANCEL = 7;
|
||||||
IRT_WITHDRAWAL = 8;
|
IRT_WITHDRAWAL = 8;
|
||||||
IRT_DEPOSIT = 9;
|
IRT_DEPOSIT = 9;
|
||||||
|
|||||||
+5
-6
@@ -71,7 +71,6 @@ message MarketOrder {
|
|||||||
repeated string tags = 20;
|
repeated string tags = 20;
|
||||||
repeated string comment = 21;
|
repeated string comment = 21;
|
||||||
optional MarketOrder source = 22; // purchase is done via this field
|
optional MarketOrder source = 22; // purchase is done via this field
|
||||||
optional uint64 maker_order_id = 23;
|
|
||||||
// repeated string attachments = 14; // possible files included by
|
// repeated string attachments = 14; // possible files included by
|
||||||
// seller/buyer
|
// seller/buyer
|
||||||
}
|
}
|
||||||
@@ -158,13 +157,13 @@ message OrderListFilter {
|
|||||||
optional uint64 order_id = 11;
|
optional uint64 order_id = 11;
|
||||||
optional uint64 trx_id = 12;
|
optional uint64 trx_id = 12;
|
||||||
optional bool is_public = 13;
|
optional bool is_public = 13;
|
||||||
optional bool has_source = 14;
|
optional uint64 maker_order_id = 15;
|
||||||
optional uint64 source_order_id = 15;
|
|
||||||
optional string from_date = 16;
|
optional string from_date = 16;
|
||||||
optional string to_date = 17;
|
optional string to_date = 17;
|
||||||
optional MarketOrdersSortBy sort_by = 18;
|
optional MarketParticipantType participant_type = 18;
|
||||||
optional uint32 page_no = 19;
|
optional MarketOrdersSortBy sort_by = 19;
|
||||||
optional uint32 page_size = 20;
|
optional uint32 page_no = 21;
|
||||||
|
optional uint32 page_size = 22;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Contract */
|
/* Contract */
|
||||||
|
|||||||
Reference in New Issue
Block a user