v2: max supply added to token

Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
nfel 2025-07-12 10:27:19 +03:30
parent cb446e0c39
commit 69e5b366f9
Signed by: nfel
GPG Key ID: DCC0BF3F92B0D45F

View File

@ -93,7 +93,7 @@ message Asset {
string code = 3; string code = 3;
string issuer = 4; string issuer = 4;
int32 decimal = 5; int32 decimal = 5;
double limit_amount = 6; double limit_amount = 6; // FIXME: This Should be renamed to max supply
string anchor = 7; string anchor = 7;
string image = 8; string image = 8;
string description = 9; string description = 9;
@ -128,6 +128,7 @@ message Asset {
bool is_locked = 38; bool is_locked = 38;
// Commission commission = 38; // Commission commission = 38;
AssetType type = 39; AssetType type = 39;
double max_supply = 40;
} }
enum AssetTokenType { enum AssetTokenType {