toCardanoBaseAddress method

  1. @override
Future<CardanoAddress> toCardanoBaseAddress(
  1. Bip32PublicKey spend,
  2. Bip32PublicKey stake,
  3. NetworkId networkId, {
  4. CredentialType paymentType = CredentialType.key,
  5. CredentialType stakeType = CredentialType.key,
})
override

Implementation

@override
Future<CardanoAddress> toCardanoBaseAddress(
  Bip32PublicKey spend,
  Bip32PublicKey stake,
  NetworkId networkId, {
  CredentialType paymentType = CredentialType.key,
  CredentialType stakeType = CredentialType.key,
}) => execute(
  (w) => w.toCardanoBaseAddress(
    spend,
    stake,
    networkId,
    paymentType: paymentType,
    stakeType: stakeType,
  ),
);