interface BuildWithdrawalTransactionDto {
    feeRate?: number;
    stakingTxId: string;
    withdrawalType: "early_unbonded" | "timelock_expired" | "slashing";
}

Properties

feeRate?: number

Fee rate in satoshis per byte

Example

10
stakingTxId: string

The transaction ID of the staking transaction

Example

"e7344f4673bc62cdbcd501c629feda83784bddd900a40dc088ec26241817576a"
withdrawalType: "early_unbonded" | "timelock_expired" | "slashing"

The type of withdrawal

Example

"early_unbonded"

Generated using TypeDoc