eth.uniswap_v2.pool_stats
SQL table schema for eth.uniswap_v2.pool_stats
Ethereum Uniswap-V2 Pool stats (reserves, etc) for each block.
Column Name | Data Type | Description |
---|---|---|
| BIGINT | The number of the block at which these stats were calculated. |
| CHARACTER VARYING | The address of the contract that defines this pool. |
| DOUBLE | The amount of liquidity of the first token staked in this pool. Provided as a convenience, but may overflow. |
| CHARACTER VARYING | Lossless encoding of the full |
| DOUBLE | The amount of liquidity of the second token staked in this pool. Provided as a convenience, but may overflow. |
| CHARACTER VARYING | Lossless encoding of the full |
| BIGINT | The timestamp of the last block that updated this pool. |
| CHARACTER VARYING | The last cumulative price of the first token, as reported by the contract. |
| CHARACTER VARYING | The last cumulative price of the second token, as reported by the contract. |
| CHARACTER VARYING | The total supply of liquidity tokens for this pool, encoded as a hexadecimal string. |
| DOUBLE | The price of the first token in this pool: |
| DOUBLE | The price of the second token in this pool: |
Last updated