UNISWAP_V2_ETHEREUM

These tables are built and maintained by Space and Time.

UNISWAPV2_PRICE_FEED

Uniswapv2 Price Feed model follows the following structure:

NameDescriptionType
block_numberThe block's number.bigint
pair_addressThe pair address of the tokens.string
time_stampThe timestamp when the prices were updated (in ISO-8601 format).timestamp
token0_priceThe price of token0 in relation to token1.string
token1_priceThe price of token1 in relation to token0.string
token0_usd_priceThe price of token0 in USD.string
token1_usd_priceThe price of token1 in USD.string
total_liquidity_usdThe total liquidity of the pair in USD.string

UNISWAPV2_PAIR

Uniswapv2 Pair model follows the following structure:

NameDescriptionType
pair_addressThe address of the UniswapV2 pair.string
pair_nameThe name of the UniswapV2 pair.string
token0_addressThe address of the first token in the UniswapV2 pair.string
token1_addressThe address of the second token in the UniswapV2 pair.string
pair_decimalThe decimal of the UniswapV2 pair.string
pair_symbolThe symbol of the UniswapV2 pair.string

UNISWAPV2PAIR_EVT_BURN

Uniswapv2Pair Burn model follows the following structure:

NameDescriptionType
transaction_hashHash of the transaction containing the event.string
event_indexIndex of the event within the transaction.integer
senderAddress of the sender.string
amount0The amount of token0 burned in the transaction.string
amount1The amount of token1 burned in the transaction.string
to_Address to which the tokens were burned.string
contract_addressAddress of the UniswapV2Pair contract emitting the event.string

UNISWAPV2PAIR_EVT_MINT

Uniswapv2Pair Mint model follows the following structure:

NameDescriptionType
transaction_hashThe transaction hash for the mint event.string
event_indexThe index of the mint event within the transaction.integer
senderThe address of the sender.string
amount0The amount of token0 that was minted.string
amount1The amount of token1 that was minted.string
contract_addressThe address of the UniswapV2Pair contract.string

UNISWAPV2PAIR_EVT_SWAP

Uniswapv2Pair Swap model follows the following structure:

NameDescriptionType
transaction_hashThe hash of the transaction.string
event_indexThe index of the event in the transaction logs.integer
senderThe address that initiated the swap.string
amount0inThe amount of token0 input to the swap.string
amount1inThe amount of token1 input to the swap.string
amount0outThe amount of token0 output from the swap.string
amount1outThe amount of token1 output from the swap.string
to_The address that received the output tokens.string
contract_addressThe address of the Uniswap V2 pair contract.string

UNISWAPV2PAIR_EVT_SYNC

Uniswapv2Pair Sync model follows the following structure:

NameDescriptionType
transaction_hashThe hash of the transaction that emitted the event.string
event_indexThe index of the event in the transaction's logs.integer
reserve0The reserve of token0 in the pair contract.string
reserve1The reserve of token1 in the pair contract.string
contract_addressThe address of the UniswapV2Pair contract.string

UNISWAPV2FACTORY_EVT_PAIRCREATED

Uniswapv2Factory Paircreated model follows the following structure:

NameDescriptionType
transaction_hashThe hash of the transaction that created the pair.string
event_indexThe index of the event within the transaction.integer
token0The address of the first token in the pair.string
token1The address of the second token in the pair.string
pairThe address of the newly created pair contract.string
fu_3The index of the newly created pair contract.string
contract_addressThe address of the Uniswap V2 Factory contract.string