tapp_collect_fee
Collect fees from a specific liquidity position within a pool on Tapp Exchange. Input pool ID and position address to manage earnings.
Instructions
Collect fees from a specific liquidity position in a given pool
Input Schema
Name | Required | Description | Default |
---|---|---|---|
poolId | Yes | The address of the pool from which to collect fees | |
positionAddr | Yes | The address of the liquidity position |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"poolId": {
"description": "The address of the pool from which to collect fees",
"type": "string"
},
"positionAddr": {
"description": "The address of the liquidity position",
"type": "string"
}
},
"required": [
"poolId",
"positionAddr"
],
"type": "object"
}