Interface GCREditValidatorStake

Validator-staking GCR edit. Emitted by validatorStake / validatorUnstake / validatorExit transactions. Applied against the Validators table.

interface GCREditValidatorStake {
    account: string;
    amount: string;
    connectionUrl?: string;
    isRollback: boolean;
    operation: "stake" | "unstake" | "exit";
    txhash: string;
    type: "validatorStake";
}

Properties

account: string
amount: string
connectionUrl?: string
isRollback: boolean
operation: "stake" | "unstake" | "exit"
txhash: string
type