Functions and Operators
Tron address functions
Tron blockchain adopted a custom type of addresses. It is similar to Base58 encoding format, with some modifications.
Under basic tron address encoding format an address can be encoded as:
Functions
from_tron_address()
from_tron_address(varchar)
→ varbinary
Converts a Tron address string to the corresponding VARBINARY
hex address.
to_tron_address()
to_tron_address(varbinary)
→ varchar
Encodes a VARBINARY
hex address to the corresponding Tron address.
Was this page helpful?