Overview
Goldsky provides curated Movement mainnet datasets covering events, transactions, fungible assets, table items, and objects from the Move VM. Use these datasets to build real-time pipelines on top of Movement without managing raw node infrastructure.Available datasets
All Movement datasets live under themovement_mainnet namespace.
| Dataset | Description |
|---|---|
movement_mainnet.raw_events | All emitted contract event logs — useful for indexing arbitrary contract behavior. |
movement_mainnet.raw_user_transactions | All raw onchain transactions involving account-level actions (version, sender, payload, etc.). |
movement_mainnet.raw_block_metadata_transactions | Metadata about blocks and block-level transactions (block height, epoch, version). |
movement_mainnet.raw_fungible_asset_metadata | Static metadata for fungible tokens — decimals, symbol, name, and supply. |
movement_mainnet.raw_fungible_asset_activities | Activity feed for fungible tokens — owner address, amount, and activity type. |
movement_mainnet.raw_current_fungible_asset_balances | Current balances of fungible tokens across accounts. |
movement_mainnet.raw_fungible_asset_to_coin_mappings | Mapping between fungible asset addresses and their legacy coin type identifiers. |
movement_mainnet.raw_table_items | Raw items stored in Move tables, including key, value, and table handle. |
movement_mainnet.raw_objects | Move object records, including owner, address, and object metadata. |
The Datasource explorer always has the latest dataset versions. You can also list them with
goldsky dataset list.Quick start
The fastest way to explore Movement data is with ablackhole sink and goldsky turbo inspect:
Guide: Track fungible asset activity
Stream fungible asset activities (transfers, mints, burns) into Postgres for accounting and analytics:Guide: Monitor a specific account
Filter user transactions to a single Movement account:Performance tips
Filter early with SQL
Filter early with SQL
Movement produces high volumes of events and activities. Apply filters as early as possible to reduce data volume downstream:
Use appropriate resource sizes
Use appropriate resource sizes
For backfills of
raw_events or raw_fungible_asset_activities, consider medium or large resource sizes:Start with latest for development
Start with latest for development
When building and testing pipelines, use
start_at: latest to avoid processing large amounts of historical data: