QUICKSWAP_POLYGON

These tables are built and maintained by Space and Time.

QUICKSWAP_PRICE_FEED

Quickswap Price Feed model follows the following structure:

NameDescriptionType
block_numberThe block's number.integer
pair_addressThe pair address of the token.string
time_stampThe timestamp when the price data was recorded.datetime
token0_priceThe price of token0 in relation to token1.string
token1_priceThe price of token1 in relation to token0.string
token0_usd_priceThe USD price of token0.string
token1_usd_priceThe USD price of token1.string
total_liquidity_usdThe total liquidity in USD.string

QUICKSWAP_PAIR

Quickswap Pair model follows the following structure:

NameDescriptionType
pair_addressAddress of the Quickswap pair.string
pair_nameName of the Quickswap pair.string
token0_addressAddress of the first token in the pair.string
token1_addressAddress of the second token in the pair.string
pair_decimalDecimal of the Quickswap pair.string
pair_symbolSymbol of the Quickswap pair.string

QUICKSWAPFCTORY_EVT_PAIRCREATED

Quickswapfctory Paircreated model follows the following structure:

NameDescriptionType
TRANSACTION_HASHThe hash of the transaction where the event was triggered.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 Quickswap factory contract.string

QUICKSWAPPAIR_EVT_BURN

Quickswappair Burn model follows the following structure:

NameDescriptionType
transaction_hashThe hash of the transaction in which the burn event occurred.string
event_indexThe index of the burn event in the transaction.integer
senderThe address that initiated the burn.string
amount0The amount of token0 burned.string
amount1The amount of token1 burned.string
to_The address that received the burn.string
contract_addressThe address of the QuickswapPair contract.string

QUICKSWAPPAIR_EVT_MINT

Quickswappair Mint model follows the following structure:

NameDescriptionType
transaction_hashThe hash of the transaction in which the mint event occurred.string
event_indexThe index of the Mint event within the transaction.integer
senderThe address of the account that initiated the mint.string
amount0The amount of the first token minted.string
amount1The amount of the second token minted.string
contract_addressThe address of the QuickswapPair contract where the event happened.string

QUICKSWAPPAIR_EVT_SWAP

Quickswappair Swap model follows the following structure:

NameDescriptionType
transaction_hashThe hash of the transaction that executed the swap.string
event_indexThe index of the swap event within the transaction.integer
senderThe address of the account that initiated the swap.string
amount0inThe amount of token0 sold.string
amount1inThe amount of token1 sold.string
amount0outThe amount of token0 received in the swap.string
amount1outThe amount of token1 received in the swap.string
to_The address that received the swap tokens.string
contract_addressThe address of the QuickswapPair contract.string

QUICKSWAPPAIR_EVT_SYNC

Quickswappair Sync model follows the following structure:

NameDescriptionType
transaction_hashThe hash of the transaction that triggered the sync.string
event_indexThe index of the event within the transaction.integer
reserve0The current reserve of token0 in the pair.string
reserve1The current reserve of token1 in the pair.string
contract_addressThe address of the QuickswapPair contract.string