v2: mo_created state for tfa confirmation

Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
nfel 2025-03-04 14:31:02 +03:30
parent 2bb3431b14
commit 6c0cacbec6
Signed by: nfel
GPG Key ID: DCC0BF3F92B0D45F

View File

@ -76,12 +76,13 @@ enum MarketOrderSide {
}
enum MarketOrderStatus {
MO_UNKOWN_MP_STATUS = 0; // Unknown
MO_OPEN = 1; // Order is open and waiting to be completed
MO_CANCEL = 2; // Cancelled by user
MO_COMPLETED = 3; // Order is completed
MO_FAILED = 4; // Order is failed - bad trx , etc.
MO_REFUNDED = 5; // Order is refunded by platform to user due to regulation
// MO_EXPIRED = 4; // Order is expired
MO_CREATED = 1; // Order is just created and awaits confirmation
MO_OPEN = 2; // Order is open and waiting to be completed
MO_CANCEL = 3; // Cancelled by user
MO_COMPLETED = 4; // Order is completed
MO_FAILED = 5; // Order is failed - bad trx , etc.
MO_REFUNDED = 6; // Order is refunded by platform to user due to regulation
// MO_EXPIRED = 7; // Order is expired
}
message OrderListFilter {