tokenId property

  1. @TagNumber.new(1)
String get tokenId

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);
  1. @TagNumber.new(1)
set tokenId (String value)

Implementation

@$pb.TagNumber(1)
set tokenId($core.String value) => $_setString(0, value);