pharos-agent-kit
Version:
Connect AI Agents to Pharos protocols
13 lines • 656 B
TypeScript
import { PharosAgentKit } from "../../index";
import { Address } from "viem";
/**
* Transfers an ERC721 token from the agent's wallet to a recipient
* @param agent The PharosAgentKit instance
* @param amount Deprecated parameter (kept for compatibility)
* @param recipient The recipient address
* @param tokenAddress The ERC721 token contract address
* @param tokenId The token ID to transfer
* @returns Transaction details as string or error message
*/
export declare function erc721Transfer(agent: PharosAgentKit, amount: bigint, recipient: Address, tokenAddress: Address, tokenId: bigint): Promise<string>;
//# sourceMappingURL=transfer.d.ts.map