sei-agent-kit
Version:
A package for building AI agents on the SEI blockchain
13 lines • 647 B
TypeScript
import { SeiAgentKit } from "../../index";
import { Address } from "viem";
/**
* Transfers an ERC721 token from the agent's wallet to a recipient
* @param agent The SeiAgentKit 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: SeiAgentKit, amount: bigint, recipient: Address, tokenAddress: Address, tokenId: bigint): Promise<string>;
//# sourceMappingURL=transfer.d.ts.map