zil_addr

Module for Zilliqa address encoding/decoding.

class ZilAddrConst

Bases: object

Class container for Zilliqa address constants.

SHA256_BYTE_LEN: int = 20
class ZilAddrDecoder

Bases: IAddrDecoder

Zilliqa address decoder class. It allows the Zilliqa address decoding.

static DecodeAddr(addr: str, **kwargs: Any) bytes

Decode a Zilliqa address to bytes.

Parameters:
  • addr (str) – Address string

  • **kwargs – Not used

Returns:

Public key hash bytes

Return type:

bytes

Raises:

ValueError – If the address encoding is not valid

class ZilAddrEncoder

Bases: IAddrEncoder

Zilliqa address encoder class. It allows the Zilliqa address encoding.

static EncodeKey(pub_key: Union[bytes, IPublicKey], **kwargs: Any) str

Encode a public key to Zilliqa address.

Parameters:
  • pub_key (bytes or IPublicKey) – Public key bytes or object

  • **kwargs – Not used

Returns:

Address string

Return type:

str

Raises:
  • ValueError – If the public key is not valid

  • TypeError – If the public key is not secp256k1

ZilAddr

alias of ZilAddrEncoder