CardanoShelleyPrivateKeys constructor

CardanoShelleyPrivateKeys({
  1. required Bip32PrivateKey privAddrKey,
  2. required Bip32PrivateKey privSkKey,
  3. required CoinConfig coinConf,
})

Constructor to create a Cardano Shelley Private Keys instance.

Parameters:

  • privAddrKey: The private address key.
  • privSkKey: The private spending key.
  • coinConf: The configuration for the associated coin.

Implementation

CardanoShelleyPrivateKeys(
    {required this.privAddrKey,
    required this.privSkKey,
    required this.coinConf});