From c24c5ed00cfe54164bc3e620054b4f0ceb966449 Mon Sep 17 00:00:00 2001 From: nfel Date: Sat, 12 Jul 2025 11:07:36 +0330 Subject: [PATCH] v2: missing asset network code Signed-off-by: nfel --- wallet/v1/msg.proto | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index 9c114d9..d228cb8 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -92,17 +92,18 @@ message Asset { string name = 2; string code = 3; string issuer = 4; - int32 decimal = 5; - double max_supply = 6; // FIXME: This Should be renamed to max supply - string anchor = 7; - string image = 8; - string description = 9; - string url = 10; - int64 buy_unit_price = 11; - double buy_min_amount = 12; - double buy_max_amount = 13; - double buy_fee_amount = 14; - int64 buy_fee_price = 15; + string network_code = 5; + int32 decimal = 6; + double max_supply = 7; + string anchor = 8; + string image = 9; + string description = 10; + string url = 11; + int64 buy_unit_price = 12; + double buy_min_amount = 13; + double buy_max_amount = 14; + double buy_fee_amount = 15; + int64 buy_fee_price = 16; bool is_active = 20; bool can_buy = 21; bool can_sell = 22;