blocks, transactions, events, changes, resources, modules and table_items. Sui treats everything on the chain as an object with an owner, and records the objects a transaction touched: blocks, transactions, events, move_calls, move_packages, objects, transaction_objects and wrapped_objects.
Chains
| Chain | chain_id | blocks | transactions | events |
|---|---|---|---|---|
| Aptos | aptos | โ | โ | โ |
| Movement | movement | โ | โ | โ |
| Sui | sui | โ | โ | โ |
Exceptions
- Suiโs tables differ from the Aptos ones because the chain works differently, not because anything is missing.
- Suiโs
blocksrows are checkpoints rather than blocks, and itstransactionsandeventscarry gas costs and execution effects instead of Move-style changes. - Aptos and Movement additionally carry
changes,resources,modulesandtable_items, the tables that record what a transaction wrote. - Sui additionally carries
move_calls,move_packages,objects,transaction_objectsandwrapped_objects, the tables that record the objects a transaction touched.