transfers normalizer streams decoded SPL token transfers on Solana into your warehouse. Each row carries source/destination account context (owner, balance pre/post, UI amount). See the Solana normalizers page for the full schema.
Pipeline configuration
Create a pipeline
In the GoldRush Platform, navigate to Manage Pipelines and click Create Pipeline. Name it
solana-spl-transfers.Configure your destination
Connect ClickHouse, BigQuery, Postgres, Kafka, S3/GCS/R2, SQS, or a Webhook.
Schema
Thetransfers table is documented in full on the Solana Normalizers page. Key columns:
block_slot,slot,block_time,tx_hash(signature).mint,amount(raw uint64),token_decimals,is_raw_amount.source_address(token account),source_owner(wallet pubkey).destination_address,destination_owner.- Pre/post balances on both sides (
*_pre_balance,*_post_balance) plus UI-amount variants. transfer_indexfor ordering within a transaction.
Sample analytical queries
Daily stablecoin volume by mint
Net flow per wallet for a token
Exchange deposit attribution
Maintain a table of known exchange wallets; join againstdestination_owner to attribute deposits.
Production tips
source_owneranddestination_ownerare the wallet pubkeys, not the SPL token-account pubkeys. Index on these for wallet-centric queries.amountis raw uint64. Always divide bypower(10, token_decimals)(or use the*_uibalance columns) for human-readable amounts.- High-volume mints (USDC, USDT, WSOL). Partition by date and consider materialized views per top-N mint for fast dashboarding.
Related
- Solana Normalizers (full schema) - column-level reference for
transfersand other Solana entities. - DEX Swaps warehouse recipe - companion table for DEX-trade analytics.
- Wallet endpoints (REST) - REST lookups for the same transfer history.