Table Description

This table contains data about messages contained within transactions in the Noble blockchain, including message types, content, and associated metadata.

On execution, transactions from Cosmos emit data in two formats:

  • Messages (noble.tx_messages): These provide a high-level, readable summary of actions, such as “send money” or “execute contract.” They are easier to understand and track transaction types.
  • Events (noble.message_events): These capture detailed, low-level changes at the chain level, including underlying blockchain modifications that may not always be directly related to state changes.
  • Use Messages for a general overview and Events when you need detailed insights. The two tables are complementary.

Column Descriptions

Column nameData TypeDescription
block_datedateThe date of the block.
block_heightbigintThe height of the block where the message occurred.
block_timestamptimestamp(3) with time zoneTimestamp when the block was validated.
chain_idvarcharThe ID of the chain where the message belongs.
tx_idvarcharThe hash of the transaction containing the message.
tx_indexbigintThe index of the transaction in the block.
message_indexbigintThe index of the message in the transaction.
message_typevarcharThe type of message.
messagevarcharThe value/content of the message.
schema_versionbigintThe version of the schema in provider database.
updated_attimestamp(3) with time zoneTimestamp of when the record was last updated.
ingested_attimestamp(3) with time zoneTimestamp of when the record was ingested into Dune.

Table Sample