BlockX Documentation
  • Introduction
    • BlockX
    • Tokens
    • Transactions
    • Inflation
    • Keys
      • Keyring
      • Multisig
    • Gas Fees
    • Wallet and Accounts
      • Adding BlockX to Metamask
      • Adding BlockX to Keplr
      • Transfers Between Wallets
      • Backup
    • Deploying Smart Contracts
      • Remix
      • Hardhat
  • BlockX White Paper
  • The BCX Token
  • Governance
    • Proposals
      • Proposal Tips
      • Submit a Proposal
    • Community Pool
    • Chain Parameters
  • Technical Concepts
    • Architecture
    • Accounts
    • Chain ID
    • Encoding
    • Pending State
  • dApp Developers
    • Establishing Connections
    • BlockX Clients
    • Guides
      • Wallet Integration
      • Smart Contract Incentive Registration
      • Tracing Transactions
      • Query Balances
    • Localnet
      • Single-node
      • Multi-node
    • Testnet
      • Testnet Commands
    • Ethereum JSON-RPC
      • JSON-RPC Server
      • Running the Server
      • Namespaces
      • JSON-RPC Methods
      • Events
    • Tendermint RPC
  • Protocol Developers
    • Modules
      • auth
        • Concepts
        • State
        • AnteHandlers
        • Keepers
        • Vesting
        • Parameters
        • Client Auth
      • bank
        • State
        • Keepers
        • Messages
        • Events
        • Parameters
        • Client
      • crisis
        • State
        • Messages
        • Events
        • Parameters
        • Client
      • distribution
        • Concepts
        • State
        • Begin Block
        • Messages
        • Hooks
        • Events
        • Parameters
        • Client
      • epochs
        • Concepts
        • State
        • Events
        • Keepers
        • Hooks
        • Queries
        • Future Improvements
      • erc20
        • Concepts
        • State
        • State Transitions
        • Transactions
        • Hooks
        • Events
        • Parameters
        • Clients
      • evidence
        • Concepts
        • State
        • Messages
        • Events
        • Parameters
        • BeginBlock
        • Client
      • evm
        • Concepts
        • State
        • State Transitions
        • Transactions
        • ABCI
        • Hooks
        • Events
        • Parameters
        • Client
      • feemarket
        • Concepts
        • State
        • Begin block
        • End block
        • AnteHandlers
        • Keeper
        • Events
        • Client
        • Future Improvements
        • Parameters
      • feesplit
        • Concepts
        • State
        • State Transitions
        • Transactions
        • Hooks
        • Events
        • Parameters
        • Clients
        • Future Improvements
      • gov
        • Concepts
        • State
        • Messages
        • Events
        • Future Improvements
        • Parameters
        • Client
      • incentives
        • Concepts
        • State
        • State Transitions
        • Transactions
        • Hooks
        • Events
        • Parameters
        • Clients
      • ibc-core
      • inflation
        • Concepts
        • State
        • Hooks
        • Events
        • Parameters
        • Clients
      • slashing
        • Concepts
        • State
        • Messages
        • BeginBlock
        • Hooks
        • Events
        • Staking Tombstone
        • Parameters
        • CLI
      • staking
        • State
        • State Transitions
        • Messages
        • Begin-Block
        • End-Block
        • Hooks
        • Events
        • Parameters
        • Client
      • upgrade
        • Concepts
        • State
        • Events
        • Client
        • Resources
      • vesting
        • Concepts
        • State
        • State Transitions
        • Transactions
        • AnteHandlers
        • Events
        • Clients
    • Module Accounts
    • IBC Channels
    • Ethermint API
  • Validators
    • Quick Start
    • Telemetry
    • Security
      • Tendermint KMS
      • Tendermint KMS + Ledger
      • Validator Security Checklist
      • Validator Backup
    • Snapshots, Archive Nodes
    • FAQ
  • Delegators
    • Staking Process
  • Tokenomics
  • Block Explorers
Powered by GitBook
On this page
  • EndBlocker
  • Msg's
  1. Protocol Developers
  2. Modules
  3. staking

Events

The staking module emits the following events:

EndBlocker

Type
Attribute Key
Attribute Value

complete_unbonding

amount

complete_unbonding

validator

complete_unbonding

delegator

complete_redelegation

amount

complete_redelegation

source_validator

complete_redelegation

destination_validator

complete_redelegation

delegator

Msg's

MsgCreateValidator

Type
Attribute Key
Attribute Value

create_validator

validator

create_validator

amount

message

module

staking

message

action

create_validator

message

sender

MsgEditValidator

Type
Attribute Key
Attribute Value

edit_validator

commission_rate

edit_validator

min_self_delegation

message

module

staking

message

action

edit_validator

message

sender

MsgDelegate

Type
Attribute Key
Attribute Value

delegate

validator

delegate

amount

message

module

staking

message

action

delegate

message

sender

MsgUndelegate

Type
Attribute Key
Attribute Value

unbond

validator

unbond

amount

unbond

completion_time [0]

message

module

staking

message

action

begin_unbonding

message

sender

  • [0] Time is formatted in the RFC3339 standard

MsgCancelUnbondingDelegation

Type
Attribute Key
Attribute Value

cancel_unbonding_delegation

validator

cancel_unbonding_delegation

delegator

cancel_unbonding_delegation

amount

cancel_unbonding_delegation

creation_height

message

module

staking

message

action

cancel_unbond

message

sender

MsgBeginRedelegate

Type
Attribute Key
Attribute Value

redelegate

source_validator

redelegate

destination_validator

redelegate

amount

redelegate

completion_time [0]

message

module

staking

message

action

begin_redelegate

message

sender

  • [0] Time is formatted in the RFC3339 standard

PreviousHooksNextParameters

Last updated 2 years ago