Removed Asset.buy_unit_price

Renamed AssetPrice.platform -> AssetPrice.ico_price
This commit is contained in:
nfel 2025-08-02 12:13:10 +03:30
parent 780638c2c6
commit 66931098a9
Signed by: nfel
GPG Key ID: DCC0BF3F92B0D45F

View File

@ -101,7 +101,7 @@ message Asset {
string image = 8; string image = 8;
string description = 9; string description = 9;
string url = 10; string url = 10;
int64 buy_unit_price = 11; // int64 buy_unit_price = 11;
double buy_min_amount = 12; double buy_min_amount = 12;
double buy_max_amount = 13; double buy_max_amount = 13;
bool is_active = 20; bool is_active = 20;
@ -190,7 +190,7 @@ message AssetDiscountRes {
message AssetPrice { message AssetPrice {
string updated_at = 1; string updated_at = 1;
double market_price = 2; double market_price = 2;
double platform_price = 3; double ico_price = 3;
} }
message GetAssetReq { message GetAssetReq {