ToplAddress constructor

ToplAddress(
  1. List<int> bytes, {
  2. NetworkId networkId = valhallaPrefix,
  3. PropositionType proposition = const PropositionType('PublicKeyEd25519', defaultPropositionPrefix),
})

A Topl address from the raw address bytes

Implementation

ToplAddress(List<int> bytes,
    {this.networkId = valhallaPrefix,
    this.proposition =
        const PropositionType('PublicKeyEd25519', defaultPropositionPrefix)})
    : super(bytes);