Interface SubmitWithdrawalTransactionDto

interface SubmitWithdrawalTransactionDto {
    signedWithdrawalTx: string;
    stakingTxId: string;
    withdrawalType: "early_unbonded" | "timelock_expired" | "slashing";
}

Properties

signedWithdrawalTx: string

The signed withdrawal transaction in hex format

Example

"02000000..."
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