TransferEvent is the event emitted when stake is transferred, either by a call to Transfer or Withdraw.

interface StakingTransferEvent {
    amount: Uint8Array;
    from: Uint8Array;
    to: Uint8Array;
}

Properties

Properties

amount: Uint8Array
from: Uint8Array
to: Uint8Array