Indexed Ethereum Data (ZK-proven)
Space and Time (SXT Chain) introduces a novel architecture for executing trustless SQL queries with cryptographic guarantees of correctness (Proof of SQL), enabling smart contracts to act on complex data from their own chain’s user activity (or offchain events) without ever needing to process or store the underlying dataset.
At the core of this system is a separation between heavy off-chain computation and lightweight on-chain verification, made possible through zero-knowledge proofs (ZK proofs) over indexed data tables.
To capture tamperproof index onchain data, Space and Time will:
- Capture raw blockchain data from Ethereum, Bitcoin, Base, ZKsync and other networks is transformed into structured, relational tables by Space and Time Indexer nodes. These nodes redundantly perform ETL (Extract, Transform, Load) operations on raw transactions/events retrieved from source chain RPC nodes.
- The Indexer nodes then submit inserts to tamperproof tables via SQL-compatible DML (Data Manipulation Language) requests, as signed EDDSA / ED25519 transactions.
- The Space and Time Validator nodes then come to BFT consensus on the new transaction, to ensure a tamperproof data stream.
- Rather than store raw table data on-chain, Validator nodes update cryptographic commitments —using commitment scheme that serve as tamperproof fingerprints for each table’s contents.
This mechanism ensures verifiable integrity of the table data without bloating the blockchain.

ZK-Proven Index Tables
Below is the current list of ZK-proven blockchain index tables that are maintained by the SXT Chain Indexer nodes:
Chain / Schema | TableName | Description |
---|---|---|
Ethereum (Core) | Blocks | Information on the block wrapping transactions |
Ethereum (Core) | Transactions | Most often used information on individual transactions |
Ethereum (Core) | Transaction Details | Less often used information on individual transactions |
Ethereum (Core) | Native Wallets | List of wallet addresses and associated attributes |
Ethereum (Core) | Native Token Transfers | Transfer information for chain native token (Eth) |
Ethereum (Core) | Contracts | Smart contract addresses and associated information |
Ethereum (Core) | Token ERC20 Contracts | Non-native ERC20 token contract information |
Ethereum (Core) | Token ERC20 Transfers | Transfer information for non-native ERC20 tokens |
Ethereum (Core) | Token ERC20 Approval | Non-native ERC20 token transfer approval event data |
Ethereum (Core) | NFT ERC721 Contracts | NFT ERC721 contract data |
Ethereum (Core) | NFT ERC721 Transfer | NFT ERC721 transfer data |
Ethereum (Core) | NFT ERC721 Approval | NFT ERC721 transfer approval event data |
Ethereum (Core) | NFT ERC721 Approval For All | NFT ERC721 transfer approval for all events data |
Ethereum (Core) | NFT ERC1155 Contracts | NFT ERC1155 contract data |
Ethereum (Core) | NFT ERC1155 Transfer | NFT ERC1155 transfer data |
Ethereum (Core) | ERC173 Ownership Transferred | ER173 Contract ownership transfer data |
Ethereum (Core) | Proxy ERC1967 Upgrades | ERC1967 proxy contract upgrade event data |
Ethereum (Core) | Proxy ERC1967 Admin Changes | ERC1967 proxy contract admin change event data |
Ethereum (Core) | Proxy Non ERC Upgrades | Custom proxy contract upgrade event data |
Ethereum (Core) | Token ERC20 Wallet Balances | Aggregate ERC20 token balance by wallet |
Ethereum (Core) | NFT ERC721 Owners | Aggregate ERC721 token balance by wallet |
Ethereum (Core) | NFT ERC1155 Owners | Aggregate ERC1155 token balance by wallet |
Coming Soon!
-
Smart Contract Indexing (SCI) of your own EVM contracts as new tables - a custom indexing solution developed by MakeInfinite Labs that accepts a chain and smart contract address from the user, and creates a set of ZK-proven tables, one for each event in the supplied smart contract.
For more information on the SCI tool, check out this page!
-
Additional Chains - will continue to be added to the Space and Time (SXT Chain) Indexing nodes, to be permissionlessly updated in real-time. Chains currently on the short-term list:
- Ethereum Beacon Chain
- Base
- ZKsync
- and many more - check back frequently!
Updated about 20 hours ago