Skip to main content

Table Details

PropertyValue
Table Nameplume.rwa.supply_change
Table StatusProduction-Ready
Unique Keyblock_date, unique_id
Clustering Key(s)block_date, token_address, transfer_type
Search Optimizationblock_date, token_address, transfer_type

Table Columns

Column NameData TypeDescription
chainVARCHAR(16777216)Name of the blockchain network this record belongs to.
from_addressVARCHAR(16777216)Address that sent in this event. For token transfers, the account whose balance decreased.
to_addressVARCHAR(16777216)Address that received in this event. For token transfers, the account whose balance increased.
transfer_typeVARCHAR(9)Category of transfer (e.g. mint, burn, standard transfer).
token_typeVARCHAR(16777216)Token standard or category (e.g. erc20, erc721, native).
token_addressVARCHAR(16777216)Contract address of the token. On EVM chains native currency is represented as the zero address.
token_nameVARCHAR(16777216)Human-readable name of the token.
token_symbolVARCHAR(16777216)Ticker symbol of the token.
token_decimalsNUMBER(38,0)Number of decimal places used to convert the token’s raw integer amount to a human-readable amount.
raw_amount_strVARCHAR(16777216)Token amount in the smallest indivisible unit as a string, to preserve full precision.
raw_amountFLOATToken amount in the smallest indivisible unit (not decimal-adjusted).
amount_strVARCHAR(16777216)Decimal-adjusted token amount represented as a string to preserve full precision.
amountFLOATDecimal-adjusted amount of tokens involved in this record.
usd_amountFLOATUSD value of the amount, computed using the token’s USD exchange rate at the record’s timestamp.
usd_exchange_rateFLOATUSD price of one unit of the token at the record’s timestamp.
transaction_from_addressVARCHAR(16777216)Sender (msg.sender) of the transaction that produced this record.
transaction_to_addressVARCHAR(16777216)Destination address of the transaction that produced this record (may be a smart contract).
transaction_hashVARCHAR(16777216)Hash of the transaction that produced this record. Uniquely identifies a transaction within the blockchain.
transaction_indexNUMBER(38,0)Zero-based position of the transaction within its block. The first transaction in a block has index 0.
log_indexNUMBER(38,0)Zero-based position of this event log within its transaction. The first log emitted by a transaction has index 0.
block_dateDATECalendar date (UTC) of the block that contains this record.
block_timestampTIMESTAMP_NTZ(9)Timestamp (UTC) of the block that contains this record.
block_numberNUMBER(38,0)Sequential number of the block that contains this record. Starts at 0 (genesis) and increments by 1 per block.
block_hashVARCHAR(16777216)Cryptographic hash of the block header that contains this record. Uniquely identifies a block.
unique_idVARCHAR(16777216)Allium’s deterministic unique identifier for this row, generated from the fields that uniquely identify the record. Stable across full refreshes.
_rwa_token_created_atTIMESTAMP_NTZ(9)Timestamp (UTC) when the RWA token record was first created in the Allium platform.
_transfers_created_atTIMESTAMP_NTZ(9)Timestamp (UTC) when the underlying transfer record was first created in the Allium platform.
_created_atTIMESTAMP_NTZ(9)Timestamp of when the entry was created in the database.
_updated_atTIMESTAMP_NTZ(9)Timestamp of when the entry was last updated in the database.
_changed_since_full_refreshBOOLEANIndicates if the record has changed since the last full data refresh.
is_mintBOOLEANWhether this transfer is a mint (tokens created, originating from the zero address).
is_burnBOOLEANWhether this transfer is a burn (tokens destroyed, sent to the zero address).