getUniV3Pool
Retrieve detailed information about a Uniswap V3 pool by specifying its address and chain ID for cryptocurrency research and Ethereum-based automation.
Instructions
Gets information about a Uniswap V3 pool
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | ||
poolAddress | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"type": "number"
},
"poolAddress": {
"type": "string"
}
},
"required": [
"poolAddress",
"chainId"
],
"type": "object"
}