toCardanoBaseAddress method
Future<CardanoAddress>
toCardanoBaseAddress(
- Bip32PublicKey spend,
- Bip32PublicKey stake,
- NetworkId networkId, {
- CredentialType paymentType = CredentialType.key,
- 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,
),
);