Skip to main content
solana.raw.feesprovides inforrmation on base and priority fees of solana transactions. More info about transactions fees can be found here. Note that it only contains transactions with non-zero priority fees. For all other transactions, priority_fee=0, base_fee=tx_fee

Table Columns

Column NameDescriptionTypeExampleColumn Name
set_compute_unit_limitCompute Unit Limit as set by set_compute_unit_limit instruction, if present in the transaction, else nullnumber144000
set_compute_unit_priceCompute Unit Price as set by set_compute_unit_price in the transactionnumber225002
effective_compute_unit_limitEffective compute unit limit for the transaction. If set_compute_unit_limitis called, it uses that value. Else it defaults to 200,000 units per instructionnumber140000
priority_feePriority fee paid, in lamports. Calculated with effective_compute_unit_limit * set_compute_unit_pricenumber31501
base_feeBase fee of the tx. Calculated with total_fee - priority_feenumber5000
total_feeTotal transaction fee, equivalent to fee column from solana.raw.transactionsnumber36501
successIndicates if the tx was successful, equivalent to success column from solana.raw.transactionsbooleanfalse
is_votingIndicates if the transaction is a voting transactions, equivalent to is_voting column from solana.raw.transactionsbooleanfalse
block_slotThe slot of the blocknumber159292973

block_

height

The height of the blocknumber123292963
block_timestampThe timestamp of the blocktimestamp_ntz2022-09-17 00:27:38.000
block_hashThe hash of the blockvarchar5X6zcnNw6HSAn4X8GaMnzBp8JnWPcNHoAThFwFN1oeph
txn_idUnique base58 identifier of the tx.varchar5Bc8KuxsmRCiLkBJhL7wYuTsawUiux2enj4xYr7FsPG7eUxVoCPKwqj9LcCAvTztA2drUJghUBTqo8C62qpRMM4H
txn_indexThe index of the tx within the block. Used for strict ordering of transactions.number5
I