UNISWAP_V2_ETHEREUM
These tables are built and maintained by Space and Time.
UNISWAPV2_PRICE_FEED
Uniswapv2 Price Feed model follows the following structure:
Name | Description | Type |
---|---|---|
block_number | The block's number. | bigint |
pair_address | The pair address of the tokens. | string |
time_stamp | The timestamp when the prices were updated (in ISO-8601 format). | timestamp |
token0_price | The price of token0 in relation to token1. | string |
token1_price | The price of token1 in relation to token0. | string |
token0_usd_price | The price of token0 in USD. | string |
token1_usd_price | The price of token1 in USD. | string |
total_liquidity_usd | The total liquidity of the pair in USD. | string |
UNISWAPV2_PAIR
Uniswapv2 Pair model follows the following structure:
Name | Description | Type |
---|---|---|
pair_address | The address of the UniswapV2 pair. | string |
pair_name | The name of the UniswapV2 pair. | string |
token0_address | The address of the first token in the UniswapV2 pair. | string |
token1_address | The address of the second token in the UniswapV2 pair. | string |
pair_decimal | The decimal of the UniswapV2 pair. | string |
pair_symbol | The symbol of the UniswapV2 pair. | string |
UNISWAPV2PAIR_EVT_BURN
Uniswapv2Pair Burn model follows the following structure:
Name | Description | Type |
---|---|---|
transaction_hash | Hash of the transaction containing the event. | string |
event_index | Index of the event within the transaction. | integer |
sender | Address of the sender. | string |
amount0 | The amount of token0 burned in the transaction. | string |
amount1 | The amount of token1 burned in the transaction. | string |
to_ | Address to which the tokens were burned. | string |
contract_address | Address of the UniswapV2Pair contract emitting the event. | string |
UNISWAPV2PAIR_EVT_MINT
Uniswapv2Pair Mint model follows the following structure:
Name | Description | Type |
---|---|---|
transaction_hash | The transaction hash for the mint event. | string |
event_index | The index of the mint event within the transaction. | integer |
sender | The address of the sender. | string |
amount0 | The amount of token0 that was minted. | string |
amount1 | The amount of token1 that was minted. | string |
contract_address | The address of the UniswapV2Pair contract. | string |
UNISWAPV2PAIR_EVT_SWAP
Uniswapv2Pair Swap model follows the following structure:
Name | Description | Type |
---|---|---|
transaction_hash | The hash of the transaction. | string |
event_index | The index of the event in the transaction logs. | integer |
sender | The address that initiated the swap. | string |
amount0in | The amount of token0 input to the swap. | string |
amount1in | The amount of token1 input to the swap. | string |
amount0out | The amount of token0 output from the swap. | string |
amount1out | The amount of token1 output from the swap. | string |
to_ | The address that received the output tokens. | string |
contract_address | The address of the Uniswap V2 pair contract. | string |
UNISWAPV2PAIR_EVT_SYNC
Uniswapv2Pair Sync model follows the following structure:
Name | Description | Type |
---|---|---|
transaction_hash | The hash of the transaction that emitted the event. | string |
event_index | The index of the event in the transaction's logs. | integer |
reserve0 | The reserve of token0 in the pair contract. | string |
reserve1 | The reserve of token1 in the pair contract. | string |
contract_address | The address of the UniswapV2Pair contract. | string |
UNISWAPV2FACTORY_EVT_PAIRCREATED
Uniswapv2Factory Paircreated model follows the following structure:
Name | Description | Type |
---|---|---|
transaction_hash | The hash of the transaction that created the pair. | string |
event_index | The index of the event within the transaction. | integer |
token0 | The address of the first token in the pair. | string |
token1 | The address of the second token in the pair. | string |
pair | The address of the newly created pair contract. | string |
fu_3 | The index of the newly created pair contract. | string |
contract_address | The address of the Uniswap V2 Factory contract. | string |
Updated about 2 months ago