From 46224b9740de96a7039c5b862120f03b70dea7b5 Mon Sep 17 00:00:00 2001 From: nfel Date: Sat, 17 May 2025 14:28:59 +0330 Subject: [PATCH] v2: videos added to asset response Signed-off-by: nfel --- wallet/v1/msg.proto | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index 9227050..35eda5a 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -102,14 +102,15 @@ message Asset { string updated_at = 28; string created_at = 29; repeated string images = 30; - AssetStatus status = 31; - AssetMeta meta = 32; - AssetTokenType token_type = 33; - AssetPrice price = 34; - bool is_base_asset = 35; - bool is_locked = 36; - Commission commission = 37; - AssetType type = 38; + repeated string videos = 31; + AssetStatus status = 32; + AssetMeta meta = 33; + AssetTokenType token_type = 34; + AssetPrice price = 35; + bool is_base_asset = 36; + bool is_locked = 37; + Commission commission = 38; + AssetType type = 39; } enum AssetTokenType { @@ -153,7 +154,6 @@ message AssetFilter { optional bool can_withdraw = 9; optional bool is_active = 10; optional string search = 11; // Not yet implemented ! - } message AssetDiscountReq {