Interface CardanoStakingRewardsWithdrawalDto

interface CardanoStakingRewardsWithdrawalDto {
    amountLovelace: string;
    changeAddress?: string;
    stakeAddress: string;
    utxoAddress: string;
}

Properties

amountLovelace: string

The amount of lovelace to withdraw

Example

"1000000"
changeAddress?: string

The address to spend utxos to. If not provided, the change will be returned to the utxoAddress

Example

"addr1qdzmqvfdnxsn4a3hd57x435madswynt4hqw8n7f2pdq05g4995re"
stakeAddress: string

The stake address to use for staking operations

Example

"stake1qdzmqvfdnxsn4a3hd57x435madswynt4hqw8n7f2pdq05g4995re"
utxoAddress: string

The address to use for UTXO selection

Example

"addr1qdzmqvfdnxsn4a3hd57x435madswynt4hqw8n7f2pdq05g4995re"