Skip to main content

Overview

The trades tables capture trading activity for RWA tokens across both dedicated RWA platforms and decentralized exchanges. This includes trades for all asset classes as well as specialized equities trading data.

Methodology

  • RWA Platforms: RWA platforms are tokenization platforms that allow users to buy/sell tokenized assets directly. One example is Ondo Global Markets, where users can buy/sell tokenized assets directly. We currently support Ondo, Dinari, StableStock, Swarm.
  • DEXs: DEXs are decentralized exchanges that allow users to buy/sell tokenized assets directly from liquidity pools. One example is Uniswap V3, where users can buy/sell tokenized assets directly. This includes all EVM and Solana DEXs supported by Allium.
  • Perpetual Futures: Perpetual futures are futures contracts that never expire. We currenly support Hyperliquid HIP-3 (Hyperliquid Improvement Proposal 3) which enables permissionless perpetual futures markets.
The trades tables are currently in Beta. The coverage and metrics supported will be expanded over time.

Tables

Table NameDescription
crosschain.rwa.tradesAll RWA trades across different blockchains and platforms (RWA platforms and DEXs).
crosschain.rwa.equities_tradesTrades executed on tokenized equities across different blockchains. Filtered from the crosschain.rwa.trades table.

Table Columns

All RWA trades across different blockchains and platforms. Includes trades from RWA platforms (Ondo, Dinari, StableStock, Swarm, HIP-3) and DEX trades (EVM + Solana).Unique key: unique_id
Column NameDescription
chainThe blockchain network where the RWA token is traded (e.g., ethereum, solana, bsc)
platform_typeThe type of platform (rwa_platform or dex)
platformThe platform where the RWA token is traded (e.g., ondo_global_markets, uniswap_v3)
asset_classTop-level V2 classification (rates, equities, credit, fx, commodities, private_funds, real_estate)
asset_typeGranular V2 sub-classification within the asset class
issuerThe issuer of the RWA token (e.g., ondo, dinari, swarm)
product_idUnique identifier for the RWA product
token_addressThe contract address of the RWA token
tickerThe ticker of the RWA token
underlying_tickerThe underlying ticker of the RWA token (e.g., the stock ticker that the token represents)
nameThe name of the RWA token
sideThe side of the trade (buy or sell)
rwa_sideThe RWA-specific trade classification: ‘buy’ (buying RWA with non-RWA token), ‘sell’ (selling RWA for non-RWA token), or ‘rwa_to_rwa’ (trading one RWA token for another)
amountThe amount of the RWA token traded
priceThe price of the RWA token traded
usd_amountThe USD value of the RWA token traded in total
block_timestampThe timestamp of the block when the trade was executed
block_numberThe number of the block when the trade was executed
transaction_hashThe hash of the transaction
transaction_from_addressThe address that initiated the transaction
extra_fieldsAdditional fields containing trade-specific metadata (variant type)
unique_idThe unique identifier for the trade
_created_atThe timestamp when the trade was created
_updated_atThe timestamp when the trade was last updated

Sample Query

select date(block_timestamp) as date, platform_type, sum(usd_amount) as usd
from crosschain.rwa.trades
group by all