intentTransferPosition
Transfer ownership of a Uniswap V3 LP NFT by specifying token ID, recipient address, and blockchain chain ID. Simplify Ethereum-based asset management with this focused tool.
Instructions
Transfers ownership of a Uniswap V3 LP NFT
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | ||
to | Yes | ||
tokenId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"type": "number"
},
"to": {
"type": "string"
},
"tokenId": {
"type": "string"
}
},
"required": [
"tokenId",
"to",
"chainId"
],
"type": "object"
}