Interface StakingTakeEscrowEvent

TakeEscrowEvent is the event emitted when stake is taken from an escrow account (i.e. stake is slashed).

interface StakingTakeEscrowEvent {
    amount: Uint8Array;
    debonding_amount: Uint8Array;
    owner: Uint8Array;
}

Properties

amount: Uint8Array

The sum of amounts slashed from active and debonding escrow balances.

debonding_amount: Uint8Array

The amount slashed from debonding escrow balances.

owner: Uint8Array