intentCollectFees
Automates the collection of accumulated fees from a Uniswap V3 position by specifying the token ID, recipient, and chain ID, streamlining Ethereum-based transactions.
Instructions
Collects accumulated fees from a Uniswap V3 position
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | ||
recipient | No | ||
tokenId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"type": "number"
},
"recipient": {
"type": "string"
},
"tokenId": {
"type": "string"
}
},
"required": [
"tokenId",
"chainId"
],
"type": "object"
}