get-pool-type
Identify the type of a liquidity pool (balancer, stableswap, or concentrated-liquidity) on the Osmosis blockchain by providing the pool ID.
Instructions
Returns the type of a pool (balancer, stableswap, concentrated-liquidity)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
poolId | Yes | The ID of the liquidity pool |
Input Schema (JSON Schema)
{
"properties": {
"poolId": {
"description": "The ID of the liquidity pool",
"type": "string"
}
},
"required": [
"poolId"
],
"type": "object"
}