> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dune.com/llms.txt
> Use this file to discover all available pages before exploring further.

# sui.transaction_objects

> Sui transaction-object relationships — objects created, mutated, or deleted per transaction.

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

## Table Description

The `sui.transaction_objects` table contains data about objects that are involved in transactions on the Sui blockchain. This table tracks which objects are read, written, or deleted in each transaction, providing a comprehensive view of object interactions. This table is partitioned by date.

## Column Descriptions

| **Column**              | **Type**      | **Description**                                                           |
| ----------------------- | ------------- | ------------------------------------------------------------------------- |
| **object\_id**          | binary        | Binary representation of the unique identifier of the object              |
| **version**             | decimal(20,0) | Version of the object in this transaction                                 |
| **transaction\_digest** | string        | Hash of the transaction                                                   |
| **checkpoint**          | decimal(20,0) | Checkpoint sequence number containing this transaction                    |
| **epoch**               | decimal(20,0) | Epoch number when the transaction was executed                            |
| **timestamp\_ms**       | decimal(20,0) | Unix timestamp in milliseconds when the transaction was executed          |
| **date**                | date          | Date of when the transaction was executed                                 |
| **input\_kind**         | string        | Kind of input for this object (e.g., "Input", "SharedInput", "Receiving") |
| **object\_status**      | string        | Status of the object (e.g., "Created", "Mutated", "Deleted", "Unchanged") |
| **\_updated\_at**       | timestamp     | Last time the record was updated                                          |
| **\_ingested\_at**      | timestamp     | Time when the record was ingested                                         |

## Table Sample

<TableSample tableSchema="sui" tableName="transaction_objects" />
