PANGOLIN_AVALANCE_C
These tables are built and maintained by Space and Time.
PANGOLIN_PRICE_FEED
Pangolin Price Feed model follows the following structure:
Name | Description | Type |
---|---|---|
block_number | The block's number. | integer |
pair_address | The pair address of the token. | string |
time_stamp | The timestamp when the price data was recorded. | datetime |
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 USD price of token0. | string |
token1_usd_price | The USD price of token1. | string |
total_liquidity_usd | The total liquidity in USD. | string |
PANGOLIN_PAIR
Pangolin Pair model follows the following structure:
Name | Description | Type |
---|---|---|
pair_address | Address of the PancakeSwap pair. | string |
pair_name | Name of the PancakeSwap pair. | string |
token0_address | Address of the first token in the pair. | string |
token1_address | Address of the second token in the pair. | string |
pair_decimal | Decimal of the PancakeSwap pair. | string |
pair_symbol | Symbol of the PancakeSwap pair. | string |
PANGOLINFACTORY_EVT_PAIRCREATED
Pangolinfactory Paircreated model follows the following structure:
Name | Description | Type |
---|---|---|
TRANSACTION_HASH | The hash of the transaction where the event was triggered. | 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 PancakeSwap factory contract. | string |
PANGOLINPAIR_EVT_BURN
Pangolinpair Burn model follows the following structure:
Name | Description | Type |
---|---|---|
transaction_hash | The hash of the transaction in which the burn event occurred. | string |
event_index | The index of the burn event in the transaction. | integer |
sender | The address that initiated the burn. | string |
amount0 | The amount of token0 burned. | string |
amount1 | The amount of token1 burned. | string |
to_ | The address that received the burn. | string |
contract_address | The address of the PancakePair contract. | string |
PANGOLINPAIR_EVT_MINT
Pangolinpair Mint model follows the following structure:
Name | Description | Type |
---|---|---|
transaction_hash | The hash of the transaction in which the mint event occurred. | string |
event_index | The index of the Mint event within the transaction. | integer |
sender | The address of the account that initiated the mint. | string |
amount0 | The amount of the first token minted. | string |
amount1 | The amount of the second token minted. | string |
contract_address | The address of the PancakePair contract where the event happened. | string |
PANGOLINPAIR_EVT_SWAP
Pangolinpair Swap model follows the following structure:
Name | Description | Type |
---|---|---|
transaction_hash | The hash of the transaction that executed the swap. | string |
event_index | The index of the swap event within the transaction. | integer |
sender | The address of the account that initiated the swap. | string |
amount0in | The amount of token0 sold. | string |
amount1in | The amount of token1 sold. | string |
amount0out | The amount of token0 received in the swap. | string |
amount1out | The amount of token1 received in the swap. | string |
to_ | The address that received the swap tokens. | string |
contract_address | The address of the PancakePair contract. | string |
PANGOLINPAIR_EVT_SYNC
Pangolinpair Sync model follows the following structure:
Name | Description | Type |
---|---|---|
transaction_hash | The hash of the transaction that triggered the sync. | string |
event_index | The index of the event within the transaction. | integer |
reserve0 | The current reserve of token0 in the pair. | string |
reserve1 | The current reserve of token1 in the pair. | string |
contract_address | The address of the PancakePair contract. | string |
Updated 4 months ago