You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 10, 2025. It is now read-only.
Multiaddr specification has convention about machine-readable format that use unsigned varint:
Machine-readable multiaddr: (<protoCode uvarint><value []byte>)+
Same example: 0x4 0x7f 0x0 0x0 0x1 0x91 0x2 0x4 0xd2
Values are usually length-prefixed with a uvarint
Multiaddr specification has convention about machine-readable format that use unsigned varint:
Machine-readable multiaddr:
(<protoCode uvarint><value []byte>)+Same example:
0x4 0x7f 0x0 0x0 0x1 0x91 0x2 0x4 0xd2Values are usually length-prefixed with a uvarint
it is good to write codecs for this format.