Compare commits

..

No commits in common. "027ac4624093fc95214187d27fff4cbff783bded" and "b917ccdaa836c801aed664eb1c372af808ab231f" have entirely different histories.

View File

@ -106,38 +106,13 @@ message Asset {
string updated_at = 28;
string created_at = 29;
repeated string images = 30;
AssetStatus status = 31;
int32 status = 31;
AssetMeta meta = 32;
AssetTokenType token_type = 33;
string type = 33;
AssetPrice price = 34;
bool is_base_asset = 35;
bool is_locked = 36;
Commission commission = 37;
AssetType type = 38;
}
enum AssetTokenType {
ASSET_NETWORK_TYPE_UNKNOWN = 0;
ASSET_NETWORK_TYPE_STELLAR_NATIVE = 1;
ASSET_NETWORK_TYPE_STELLAR_ALPHANUMERIC4 = 2;
ASSET_NETWORK_TYPE_STELLAR_ALPHANUMERIC12 = 3;
}
enum AssetStatus {
ASSET_STATUS_UNKNOWN = 0;
ASSET_STATUS_ACTIVE = 1;
ASSET_STATUS_INACTIVE = 2;
ASSET_STATUS_SOON = 3;
ASSET_STATUS_FINISHED = 4;
ASSET_STATUS_EVALUATION = 5;
ASSET_STATUS_SUSPENDED = 6;
}
enum AssetType {
ASSET_TYPE_UNKNOWN = 0;
ASSET_TYPE_PROJECT = 1;
ASSET_TYPE_CURRENCY = 2;
ASSET_TYPE_NETWORK_GAS = 3;
}
message AssetDiscountReq {