Interface SignedVoluntaryExitMessageMetadata

Signed voluntary exit message metadata to be provided to beacon chain to exit a validator.

Export

SignedVoluntaryExitMessageMetadata

interface SignedVoluntaryExitMessageMetadata {
    fork: string;
    signed_voluntary_exit: string;
    validator_pub_key: string;
}

Properties

fork: string

The current fork version of the Ethereum beacon chain.

Memberof

SignedVoluntaryExitMessageMetadata

signed_voluntary_exit: string

A base64 encoded version of a json string representing a voluntary exit message.

Memberof

SignedVoluntaryExitMessageMetadata

validator_pub_key: string

The public key of the validator associated with the exit message.

Memberof

SignedVoluntaryExitMessageMetadata