CardanoShelleyPublicKeys constructor

CardanoShelleyPublicKeys({
  1. required Bip32PublicKey pubAddrKey,
  2. required Bip32PublicKey pubSkKey,
  3. required BipCoinConfig coinConf,
})

Constructor to create a Cardano Shelley Public Keys instance.

Parameters:

  • pubAddrKey: The public address key.
  • pubSkKey: The public spending key.
  • coinConf: The configuration for the associated coin.

Implementation

CardanoShelleyPublicKeys(
    {required this.pubAddrKey,
    required this.pubSkKey,
    required this.coinConf});