tokenId property
Hex token_id (in big-endian, like usually displayed to users) of the token.
This is not bytes because SLP and ALP use different endiannnes, so to avoid this we use hex, which conventionally implies big-endian in a bitcoin context.
Implementation
@$pb.TagNumber(1)
$core.String get tokenId => $_getSZ(0);
Implementation
@$pb.TagNumber(1)
set tokenId($core.String value) => $_setString(0, value);