Hello, I’m trying to understand the new LCS Serialization, reading the [Libra Canonical Serialization (LCS)] (https://github.com/libra/libra/blob/d54980c7fd8d40c9c3d215399b23bd55c263a188/common/canonical_serialization/README.md)
(Thanks @Rio900 for that)
But I can’t even replicate the most basically example.
How I can get the size of the address, that there says is 32 but I think is 64, if I count the address string.
Adding a code snippet to helps to understand what I meant. Trying to replicate the same as the image,
string Address = "ca820bf9305eb97d0d784f71b3955457fbf6911f5300ceaa5d7e8621529eae19";
string LCSSerializarion = "[" +
Address.Length + // HERE I DONT KNOW WHAT TO DO
Address.ToUpper() + "]";
I know that is a dummy question but I’m blocked here, any help is appreciated!