Block Events
Chain
Dataset name
oasis_consensus.block_eventsVersion
0.4.0Description
One row per block-level Oasis consensus event — protocol logic that runs outside any transaction (BeginBlock / EndBlock). Covers `staking`, `registry`, `governance`, and `roothash` modules; typical row mix is `roothash.finalized` (per-block runtime finalization), `staking.transfer`, and `staking.allowance_change`. Note: `staking` events here are protocol-driven (reward distribution, debonding, escrow movements at epoch boundaries) — NOT user-initiated transfers. For user `staking.Transfer` calls and other tx-emitted staking events, query `oasis.txn_events` (mutually exclusive with this dataset by construction).
Example data
This dataset has no example data.
Schema
| Column | Type |
|---|---|
| id | string |
| block_number | long |
| block_hash | string |
| block_timestamp | long |
| module_event_index | long |
| event_module | string |
| event_subtype | string |
| event_json | string |
| addresses | string |