toCardanoBaseAddress method
Implementation
@SquadronMethod()
@cardanoAddressMarshaler
Future<CardanoAddress> toCardanoBaseAddress(
@bip32PublicKeyKeyMarshaler Bip32PublicKey spend,
@bip32PublicKeyKeyMarshaler Bip32PublicKey stake,
@networkIdMarshaler NetworkId networkId, {
@credentialTypeMarshaler CredentialType paymentType = CredentialType.key,
@credentialTypeMarshaler CredentialType stakeType = CredentialType.key,
}) async =>
CardanoAddress.toBaseAddress(
spend: spend,
stake: stake,
networkId: networkId,
paymentType: paymentType,
stakeType: stakeType,
);