package addressutil type AddressCodec interface { // StringToBytes decodes text to bytes StringToBytes(text string) ([]byte, error) // BytesToString encodes bytes to text BytesToString(bz []byte) (string, error) }