transfers
24 columnsOne row per native BNB or token transfer on BSC, with sender, receiver, token metadata and a USD value where a price exists.
bsc/transfers<start_block>_<end_block>.parquet50 blocks per file, sorted ascendingEvery native BNB and token transfer on BSC, one row per transfer, with sender, receiver and a USD value where a price exists.
transfersThis is every transfer on BSC, native BNB and tokens alike, from 29 August 2020. Each row names the sender, the receiver, the token with its decimals and symbol, and the transaction it settled in. 40.7 billion rows in all.
Most buyers start with flow for one token: filter Transfer_Currency_SmartContract to its contract, then group by sender and receiver. Filter Transfer_Currency_Native instead to see BNB moving on its own. Amounts are decimal strings, so cast with care, and join on contract addresses rather than symbols, which repeat.
One row per native BNB or token transfer on BSC, with sender, receiver, token metadata and a USD value where a price exists.
bsc/transfers<start_block>_<end_block>.parquet50 blocks per file, sorted ascendingSend this dataset’s full schema to an assistant and ask it anything. It reads the plain-text brief first, so the answer comes from the real column list rather than a guess.
Opens a new chat with the question filled in. Nothing about you is sent to Bitquery, and the assistant sees only the public brief.
Parquet files, delivered as signed download links by email after payment, in this layout:
# transfers — 50 blocks per file, sorted ascending
bsc/transfers<start_block>_<end_block>.parquetEvery window includes 24 columns. Only the time range changes.
transfers table, 24 columnsOne Parquet table with 24 columns: every native BNB and token transfer on BSC, one row each, with sender, receiver, amount, token metadata, the transaction it settled in and the fee. Internal transfers of BNB made by contract calls are included.
About 40.7 billion rows and 3.35 TiB across 74 monthly partitions. The last 24 months hold about 27.6 billion of them and the last 12 months about 19.0 billion. Figures are approximate until the delivery manifest is generated.
To the start of indexed history: from 29 August 2020, the week the chain started, at block 363. The Full window runs from there to yesterday.
Prices come from BSC's own hourly series, which carries about 1,600 tokens. In the published sample 82% of rows have a USD value; the rest are zero-value transfers and tokens with no market, which is correct. A value of 0 means either a $0 transfer or no price; the column cannot tell them apart.
Transfer_Amount is decimal adjusted. Multiply it by 10 to the power of Transfer_Currency_Decimals for the raw on-chain integer. We ship the adjusted value because decimals differ per token and the raw figure is wrong without them.
Amounts are decimal strings, so casting to float loses precision on large values. Symbols and names repeat, and lookalike tokens copy them, so join on the contract address. Failed transactions are kept, so filter TransactionStatus_Success for settled flow. Zero-value transfers are common: they are address-poisoning attempts, not real movement. USDT on BSC has 18 decimals, not 6 as on Ethereum and TRON, so check Transfer_Currency_Decimals before comparing amounts across chains.
Filter Transfer_Currency_SmartContract to the token's contract, lower case with 0x. For native BNB alone, filter Transfer_Currency_Native to true; its contract column holds the string 0x.
One line in DuckDB: SELECT * FROM read_parquet('transfers/*.parquet') LIMIT 10. Pandas works too: pandas.read_parquet(path). The sample file opens without credentials.
Refreshed daily with T+1 latency, so a purchase made today includes everything to yesterday. Delivered as Parquet named by block range, 50 blocks per file and sorted ascending, under a stable S3 layout with a JSON manifest listing every file and its sha256. Signed HTTPS links are emailed once the files are prepared.
Every bonding-curve trade, token creation, migration and pool on Pump.fun, plus per-token OHLCV, decoded and USD-priced.
Every TRX, TRC-10 and TRC-20 transfer on TRON since mainnet launch in June 2018, one row per transfer, valued in USD at block time.
Every native ETH and token transfer on Ethereum since August 2015, one row per transfer, valued in USD where a price exists.
Tell us the chain, tables and date range.