get-pool-exit-fee
Calculate the exit fee percentage for a specific liquidity pool on the Osmosis blockchain by providing the pool ID. Facilitates informed decision-making for liquidity withdrawals.
Instructions
Returns the exit fee percentage for a pool
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"
}