From 66931098a98861fe27921b5ea658df7038a96bd6 Mon Sep 17 00:00:00 2001 From: nfel Date: Sat, 2 Aug 2025 12:13:10 +0330 Subject: [PATCH] Removed Asset.buy_unit_price Renamed AssetPrice.platform -> AssetPrice.ico_price --- wallet/v1/msg.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index ae04827..d14f01c 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -101,7 +101,7 @@ message Asset { string image = 8; string description = 9; string url = 10; - int64 buy_unit_price = 11; + // int64 buy_unit_price = 11; double buy_min_amount = 12; double buy_max_amount = 13; bool is_active = 20; @@ -190,7 +190,7 @@ message AssetDiscountRes { message AssetPrice { string updated_at = 1; double market_price = 2; - double platform_price = 3; + double ico_price = 3; } message GetAssetReq {