Documentation

Robinhood table reference

Full schema for the Supanode Robinhood Chain Historical Data Indexer - 25 tables covering decoded Uniswap v3/v4 swaps and pools, ERC-20 token metadata, and eight launchpads, with every column and type.

// updated 2026-09-07

The robinhood database holds decoded activity from Robinhood Chain, an Ethereum-compatible Arbitrum Layer 2. This page documents every table, column, type, and description. For runnable patterns see Query examples; for connection details see Indexer overview.

NOTE

Schema snapshot: 1 September 2026. History starts 22 May 2026 - the chain itself is young, so every table is short by the standards of our Solana or Polymarket sets. Row counts grow continuously.

Summary

Two kinds of surface live here. Tables hold decoded rows on disk and report a size. Views are computed when you query them, so the catalog reports no rows for them - query one and you get data back.

TableKindRowsSizeHistory
uniswap_v3_tradestable131,160,44034.14 GB2026-05-22 → 2026-09-01
uniswap_v4_tradestable69,102,10616.34 GB2026-05-22 → 2026-09-01
uniswap_v3_poolstable657,565238.1 MB2026-06-18 → 2026-09-01
uniswap_v4_poolstable554,327215.9 MB2026-05-22 → 2026-09-01
tokenstable64,44031.4 MB2026-07-08 → 2026-09-01
pons_curve_tradestable5,155,5541.41 GB2026-07-21 → 2026-09-01
pons_creationstable143,89256.9 MB2026-08-03 → 2026-09-01
pons_migrationstable1,758747.2 KB2026-08-04 → 2026-09-01
pons_tradingview--inherited
flap_curve_tradestable1,295,777352.8 MB2026-07-08 → 2026-09-01
flap_creationstable295,316118.4 MB2026-07-08 → 2026-09-01
flap_migrationsview--inherited
flap_tradingview--inherited
doppler_creationstable288,585127.0 MB2026-07-01 → 2026-09-01
doppler_tradingview--inherited
noxa_creationstable60,14324.9 MB2026-06-16 → 2026-07-11
noxa_tradingview--inherited
nox_creationstable1,086411.4 KB2026-07-22 → 2026-08-30
nox_tradingview--inherited
letscash_creationstable9,8674.5 MB2026-07-10 → 2026-09-01
letscash_tradingview--inherited
varo_creationstable8,9124.7 MB2026-07-26 → 2026-09-01
varo_tradingview--inherited
long_creationsview--inherited
long_tradingview--inherited
TIP

Every launchpad follows the same two-part shape. The _creations table is the launch record - who deployed the token, its metadata, and the pool it opened against. The _trading surface is the swap stream for those pools. Where a launchpad graduates tokens onto a public AMM there is also a _migrations table, and where it runs its own bonding curve there is _curve_trades. Learn the pattern once and all eight read the same way.

WARNING

Amounts are raw base units. Every amount*, value and fee column is an unscaled integer. Divide by 10 to the power of the token's decimals (from tokens) before showing a human number. Prices arrive as sqrt_price_x96, a Q64.96 fixed-point integer, not a decimal price.

NOTE

Every decoded row carries its execution envelope. Block number, log index, transaction hash, gas used and the EIP-1559 fee fields sit on each event, so you can reproduce ordering and attribute cost without a second provider.

uniswap_v3_trades

Decoded Uniswap v3 swaps, one row per swap event: signed token deltas, post-swap price and liquidity, the tick, and the full transaction envelope. The largest table here and the starting point for most price and volume work.

Rows: 131,160,440 · Size: 34.14 GB · Columns: 27
Partition key: toYYYYMMDD(block_timestamp)
History: 2026-05-22 → 2026-09-01

ColumnTypeDescription
pool_addressStringAddress of the Uniswap v3 pool contract
senderStringAddress that initiated the swap callback
recipientStringAddress that received the swap output
amount0Int256Signed change in the pool's token0 balance, in raw token units
amount1Int256Signed change in the pool's token1 balance, in raw token units
sqrt_price_x96UInt256Pool square-root price after the swap as a Q64.96 integer
liquidityUInt128In-range pool liquidity after the swap
tickInt32Pool tick after the swap
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse

uniswap_v4_trades

Decoded Uniswap v4 swaps. Same shape as the v3 stream plus a per-swap fee, which v4 hooks are free to vary.

Rows: 69,102,106 · Size: 16.34 GB · Columns: 27
Partition key: toYYYYMMDD(block_timestamp)
History: 2026-05-22 → 2026-09-01

ColumnTypeDescription
pool_idStringUniswap v4 pool identifier derived from its PoolKey
senderStringAddress recorded as the swap sender
amount0Int128Signed change in the pool's currency0 balance, in raw units
amount1Int128Signed change in the pool's currency1 balance, in raw units
sqrt_price_x96UInt256Pool square-root price after the swap as a Q64.96 integer
liquidityUInt128In-range pool liquidity after the swap
tickInt32Pool tick after the swap
feeUInt32Swap fee applied to this event in hundredths of a basis point
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse

uniswap_v3_pools

One row per Uniswap v3 pool creation: the token pair, fee tier and tick spacing. Join it to the v3 swaps on pool_id to know what a swap was actually trading.

Rows: 657,565 · Size: 238.1 MB · Columns: 24
History: 2026-06-18 → 2026-09-01

ColumnTypeDescription
pool_addressStringAddress of the Uniswap v3 pool contract
token0StringAddress of token0 in the pool
token1StringAddress of token1 in the pool
feeUInt32Pool swap fee in hundredths of a basis point
tick_spacingInt32Permitted spacing between initialized ticks
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse

uniswap_v4_pools

One row per Uniswap v4 pool initialization: the two currencies, fee, tick spacing, the hooks contract, and the pool's opening price and tick.

Rows: 554,327 · Size: 215.9 MB · Columns: 27
History: 2026-05-22 → 2026-09-01

ColumnTypeDescription
pool_idStringUniswap v4 pool identifier derived from its PoolKey
currency0StringAddress of currency0, or the native-currency sentinel
currency1StringAddress of currency1, or the native-currency sentinel
feeUInt32Pool swap fee in hundredths of a basis point
tick_spacingInt32Permitted spacing between initialized ticks
hooksStringAddress of the hooks contract configured for the pool
init_sqrt_price_x96UInt256Initial square-root price encoded as a Q64.96 integer
init_tickInt32Pool tick at initialization
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse

tokens

ERC-20 identities on Robinhood Chain - name, symbol, decimals, and the creation context. This is what turns an address into something readable, and the source of the decimals you need to scale every amount.

Rows: 64,440 · Size: 31.4 MB · Columns: 28
History: 2026-07-08 → 2026-09-01

ColumnTypeDescription
token_addressStringERC-20 token contract address
nameStringToken name from contract metadata
symbolStringToken ticker symbol from contract metadata
decimalsUInt8Number of decimal places used by the token
descriptionStringHuman-readable token description when available
websiteStringProject website URL when available
imageStringToken image URL when available
extra_dataStringAdditional token metadata serialized as text
creatorStringAddress associated with creation of the token
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse

pons_curve_trades

Bonding-curve buys and sells on Pons, before a token graduates to an AMM pool.

Rows: 5,155,554 · Size: 1.41 GB · Columns: 28
Partition key: toYYYYMMDD(block_timestamp)
History: 2026-07-21 → 2026-09-01

ColumnTypeDescription
curveStringAddress of the bonding-curve contract for the token
tokenStringAddress of the launchpad token
is_buyUInt8Whether the trade was a buy (1) or a sell (0)
senderStringAddress recorded as the swap sender
recipientStringAddress that received the swap output
quote_amountUInt256Quote-token amount for the trade, in raw quote-token units
token_amountUInt256Amount of the token deposited, in raw token units
feeUInt256Pool swap fee in hundredths of a basis point
taxUInt256Transfer tax configured for the token, in basis points
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse

pons_creations

Token launches on Pons: the asset, its metadata, and the pool it opens against.

Rows: 143,892 · Size: 56.9 MB · Columns: 28
History: 2026-08-03 → 2026-09-01

ColumnTypeDescription
tokenStringAddress of the launchpad token
curveStringAddress of the bonding-curve contract for the token
deployerStringAddress that deployed the token
pair_tokenStringAddress of the token paired with the launchpad token
launch_config_idUInt256Identifier of the launch configuration used
graduation_thresholdUInt256Bonding-curve graduation threshold, in raw quote-token units
nameStringToken name from contract metadata
symbolStringToken ticker symbol from contract metadata
decimalsUInt8Number of decimal places used by the token
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse

pons_migrations

Tokens that graduated off the Pons bonding curve onto a public pool.

Rows: 1,758 · Size: 747.2 KB · Columns: 26
History: 2026-08-04 → 2026-09-01

ColumnTypeDescription
tokenStringAddress of the token being migrated
pool_idStringIdentifier of the destination pool created by the migration
quote_tokenStringAddress of the quote token paired with the migrated token
creatorStringAddress that created the migrated token
position_idUInt256Liquidity position identifier minted by the migration
token_amountUInt256Amount of the migrated token deposited, in raw token units
pair_token_amountUInt256Amount of the paired quote token deposited, in raw token units
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse

pons_trading

Post-graduation swap stream for Pons tokens, computed from the pool events.

Kind: view, computed at query time · Columns: 28

ColumnTypeDescription
pool_idStringPons pool identifier
senderStringAddress recorded as the swap sender
amount0Int128Signed change in the pool's token0 balance, in raw token units
amount1Int128Signed change in the pool's token1 balance, in raw token units
sqrt_price_x96UInt256Pool square-root price after the swap as a Q64.96 integer
liquidityUInt128In-range pool liquidity after the swap
tickInt32Pool tick after the swap
feeUInt32Swap fee applied to this event in hundredths of a basis point
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse
launchpad_tokenStringAddress of the launchpad token traded in this pool

flap_curve_trades

Bonding-curve buys and sells on Flap, before a token graduates to an AMM pool.

Rows: 1,295,777 · Size: 352.8 MB · Columns: 27
Partition key: toYYYYMMDD(block_timestamp)
History: 2026-07-08 → 2026-09-01

ColumnTypeDescription
tokenStringAddress of the launchpad token
traderStringAddress that executed the bonding-curve trade
is_buyUInt8Whether the trade was a buy (1) or a sell (0)
seqUInt256Sequence number of the trade within the bonding curve
amount0UInt256Raw amount field 0 from the bonding-curve trade event
amount1UInt256Raw amount field 1 from the bonding-curve trade event
amount2UInt256Raw amount field 2 from the bonding-curve trade event
amount3UInt256Raw amount field 3 from the bonding-curve trade event
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse

flap_creations

Token launches on Flap: the asset, its metadata, and the pool it opens against.

Rows: 295,316 · Size: 118.4 MB · Columns: 26
History: 2026-07-08 → 2026-09-01

ColumnTypeDescription
tokenStringAddress of the launchpad token
creatorStringAddress that created the token
nonceUInt256Creation nonce for the token
tsUInt256Creation timestamp (unix seconds)
nameStringToken name from contract metadata
symbolStringToken ticker symbol from contract metadata
metaStringAdditional token metadata serialized as text
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse

flap_migrations

Tokens that graduated off the Flap bonding curve onto a public pool.

Kind: view, computed at query time · Columns: 8

ColumnTypeDescription
poolStringAddress of the liquidity pool created for the token
tokenStringAddress of the launchpad token
token0StringAddress of token0 in the pool
token1StringAddress of token1 in the pool
feeUInt32Pool swap fee in hundredths of a basis point
block_numberUInt64EVM block number containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
transaction_hashStringHash of the transaction containing the event

flap_trading

Post-graduation swap stream for Flap tokens, computed from the pool events.

Kind: view, computed at query time · Columns: 28

ColumnTypeDescription
pool_addressStringAddress of the pool contract
senderStringAddress recorded as the swap sender
recipientStringAddress that received the swap output
amount0Int256Signed change in the pool's token0 balance, in raw token units
amount1Int256Signed change in the pool's token1 balance, in raw token units
sqrt_price_x96UInt256Pool square-root price after the swap as a Q64.96 integer
liquidityUInt128In-range pool liquidity after the swap
tickInt32Pool tick after the swap
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse
flap_tokenStringAddress of the Flap launchpad token traded in this pool

doppler_creations

Token launches on Doppler, each carrying the Uniswap v4 pool and hooks contract it opens against.

Rows: 288,585 · Size: 127.0 MB · Columns: 32
History: 2026-07-01 → 2026-09-01

ColumnTypeDescription
assetStringAddress of the launchpad asset (token) for the launch
numeraireStringAddress of the numeraire (quote) token for the pool
initializerStringAddress of the contract that initialized the pool
pool_or_hookStringAddress of the pool or its hooks contract
pool_idStringPool identifier
hookStringAddress of the Uniswap v4 hooks contract for the pool
currency0StringAddress of currency0, or the native-currency sentinel
currency1StringAddress of currency1, or the native-currency sentinel
feeUInt32Pool swap fee in hundredths of a basis point
tick_spacingInt32Permitted spacing between initialized ticks
nameStringToken name from contract metadata
symbolStringToken ticker symbol from contract metadata
decimalsUInt8Number of decimal places used by the token
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse

doppler_trading

Swap stream for Doppler pools, computed from the pool events.

Kind: view, computed at query time · Columns: 28

ColumnTypeDescription
pool_idStringPool identifier
senderStringAddress recorded as the swap sender
amount0Int128Signed change in the pool's token0 balance, in raw token units
amount1Int128Signed change in the pool's token1 balance, in raw token units
sqrt_price_x96UInt256Pool square-root price after the swap as a Q64.96 integer
liquidityUInt128In-range pool liquidity after the swap
tickInt32Pool tick after the swap
feeUInt32Pool swap fee in hundredths of a basis point
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse
launchpad_assetStringAddress of the launchpad asset (token) traded in this pool

noxa_creations

Token launches on Noxa. Last record is 11 July 2026 - the launchpad has been quiet since.

Rows: 60,143 · Size: 24.9 MB · Columns: 32
History: 2026-06-16 → 2026-07-11

ColumnTypeDescription
tokenStringAddress of the launchpad token
deployerStringAddress that deployed the token
dex_factoryStringAddress of the DEX factory that created the pool
pair_tokenStringAddress of the token paired with the launchpad token
poolStringAddress of the liquidity pool created for the token
dex_idUInt256Identifier of the DEX/venue used for the launch
launch_config_idUInt256Identifier of the launch configuration used
position_idUInt256Liquidity position identifier
restrictions_end_blockUInt256Block number at which post-launch trading restrictions end
initial_buy_amountUInt256Amount spent on the creator's initial buy, in raw quote-token units
nameStringToken name from contract metadata
symbolStringToken ticker symbol from contract metadata
decimalsUInt8Number of decimal places used by the token
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse

noxa_trading

Swap stream for Noxa pools, computed from the pool events.

Kind: view, computed at query time · Columns: 28

ColumnTypeDescription
pool_addressStringAddress of the pool contract
senderStringAddress recorded as the swap sender
recipientStringAddress that received the swap output
amount0Int256Signed change in the pool's token0 balance, in raw token units
amount1Int256Signed change in the pool's token1 balance, in raw token units
sqrt_price_x96UInt256Pool square-root price after the swap as a Q64.96 integer
liquidityUInt128In-range pool liquidity after the swap
tickInt32Pool tick after the swap
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse
launchpad_tokenStringAddress of the launchpad token traded in this pool

nox_creations

Token launches on Nox, the smallest launchpad in the set. Last record is 30 August 2026.

Rows: 1,086 · Size: 411.4 KB · Columns: 27
History: 2026-07-22 → 2026-08-30

ColumnTypeDescription
tokenStringAddress of the launchpad token
creatorStringAddress that created the token
poolStringAddress of the liquidity pool created for the token
position_idUInt256Liquidity position identifier
initial_buyUInt256Amount spent on the creator's initial buy, in raw quote-token units
nameStringToken name from contract metadata
symbolStringToken ticker symbol from contract metadata
decimalsUInt8Number of decimal places used by the token
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse

nox_trading

Swap stream for Nox pools, computed from the pool events.

Kind: view, computed at query time · Columns: 28

ColumnTypeDescription
pool_addressStringAddress of the pool contract
senderStringAddress recorded as the swap sender
recipientStringAddress that received the swap output
amount0Int256Signed change in the pool's token0 balance, in raw token units
amount1Int256Signed change in the pool's token1 balance, in raw token units
sqrt_price_x96UInt256Pool square-root price after the swap as a Q64.96 integer
liquidityUInt128In-range pool liquidity after the swap
tickInt32Pool tick after the swap
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse
launchpad_tokenStringAddress of the launchpad token traded in this pool

letscash_creations

Token launches on Letscash.

Rows: 9,867 · Size: 4.5 MB · Columns: 30
History: 2026-07-10 → 2026-09-01

ColumnTypeDescription
tokenStringAddress of the launchpad token
creatorStringAddress that created the token
pool_idStringPool identifier
hookStringAddress of the Uniswap v4 hooks contract for the pool
fee_recipientStringAddress that receives trading fees for the token
taxUInt256Transfer tax configured for the token, in basis points
initial_buyUInt256Amount spent on the creator's initial buy, in raw quote-token units
initial_buy_tokensUInt256Tokens received from the creator's initial buy, in raw token units
nameStringToken name from contract metadata
symbolStringToken ticker symbol from contract metadata
decimalsUInt8Number of decimal places used by the token
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse

letscash_trading

Swap stream for Letscash pools, computed from the pool events.

Kind: view, computed at query time · Columns: 28

ColumnTypeDescription
pool_idStringPool identifier
senderStringAddress recorded as the swap sender
amount0Int128Signed change in the pool's token0 balance, in raw token units
amount1Int128Signed change in the pool's token1 balance, in raw token units
sqrt_price_x96UInt256Pool square-root price after the swap as a Q64.96 integer
liquidityUInt128In-range pool liquidity after the swap
tickInt32Pool tick after the swap
feeUInt32Pool swap fee in hundredths of a basis point
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse
launchpad_tokenStringAddress of the launchpad token traded in this pool

varo_creations

Token launches on Varo. The widest creation table of the set at 38 columns.

Rows: 8,912 · Size: 4.7 MB · Columns: 38
History: 2026-07-26 → 2026-09-01

ColumnTypeDescription
launch_idUInt256Varo launch identifier
tokenStringAddress of the newly created token
creatorStringAddress that created the token
poolStringAddress of the liquidity pool created for the token
numeraireStringAddress of the numeraire (quote) token for the pool
aux_contractStringAddress of the auxiliary contract associated with the launch
total_supplyUInt256Total token supply minted at creation, in raw token units
feeUInt32Pool swap fee in hundredths of a basis point
sqrt_price_x96UInt256Initial pool square-root price as a Q64.96 integer
tick_lowerInt32Lower tick of the initial liquidity position
tick_upperInt32Upper tick of the initial liquidity position
start_tickInt32Pool tick at launch
liquidityUInt256Initial liquidity provided at launch
position_idUInt256Liquidity position identifier minted at launch
aux_paramUInt256Auxiliary launch parameter (protocol-specific)
nameStringToken name from contract metadata
symbolStringToken ticker symbol from contract metadata
image_uriStringURI of the token image
metadata_uriStringURI of the token metadata document
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse

varo_trading

Swap stream for Varo pools, computed from the pool events.

Kind: view, computed at query time · Columns: 28

ColumnTypeDescription
pool_addressStringAddress of the Varo pool contract
senderStringAddress that initiated the swap callback
recipientStringAddress that received the swap output
amount0Int256Signed change in the pool's token0 balance, in raw token units
amount1Int256Signed change in the pool's token1 balance, in raw token units
sqrt_price_x96UInt256Pool square-root price after the swap as a Q64.96 integer
liquidityUInt128In-range pool liquidity after the swap
tickInt32Pool tick after the swap
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse
launchpad_tokenStringAddress of the launchpad token traded in this pool

long_creations

Token launches on Long. Unlike the other launchpads this one is a view, computed at query time.

Kind: view, computed at query time · Columns: 32

ColumnTypeDescription
assetStringAddress of the launchpad asset (token) for the launch
numeraireStringAddress of the numeraire (quote) token for the pool
initializerStringAddress of the contract that initialized the pool
pool_or_hookStringAddress of the pool or its hooks contract
pool_idStringPool identifier
hookStringAddress of the Uniswap v4 hooks contract for the pool
currency0StringAddress of currency0, or the native-currency sentinel
currency1StringAddress of currency1, or the native-currency sentinel
feeUInt32Pool swap fee in hundredths of a basis point
tick_spacingInt32Permitted spacing between initialized ticks
nameStringToken name from contract metadata
symbolStringToken ticker symbol from contract metadata
decimalsUInt8Number of decimal places used by the token
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse

long_trading

Swap stream for Long pools, computed from the pool events.

Kind: view, computed at query time · Columns: 28

ColumnTypeDescription
pool_idStringPool identifier
senderStringAddress recorded as the swap sender
amount0Int128Signed change in the pool's token0 balance, in raw token units
amount1Int128Signed change in the pool's token1 balance, in raw token units
sqrt_price_x96UInt256Pool square-root price after the swap as a Q64.96 integer
liquidityUInt128In-range pool liquidity after the swap
tickInt32Pool tick after the swap
feeUInt32Pool swap fee in hundredths of a basis point
event_idStringUnique identifier for the decoded contract event
block_numberUInt64EVM block number containing the event
log_indexUInt32Event log index within the transaction receipt
transaction_indexUInt32Transaction index within the block
contract_addressStringAddress of the contract that emitted the event
block_hashStringHash of the block containing the event
block_timestampDateTimeUTC timestamp of the block containing the event
gas_usedUInt64Gas consumed by the transaction
gas_limitUInt64Transaction gas limit
base_fee_per_gasUInt256Block base fee per gas in wei
transaction_hashStringHash of the transaction containing the event
transaction_fromStringAddress that submitted the transaction
transaction_toStringTransaction destination address
transaction_valueUInt256Native ETH value sent with the transaction, in wei
transaction_gasUInt64Gas limit declared by the transaction
transaction_nonceUInt64Sender nonce used by the transaction
max_fee_per_gasUInt256Maximum EIP-1559 fee per gas in wei
max_priority_fee_per_gasUInt256Maximum EIP-1559 priority fee per gas in wei
inserted_atDateTimeUTC timestamp when the record was inserted into ClickHouse
launchpad_assetStringAddress of the launchpad asset (token) traded in this pool