pharos-agent-kit
Version:
Connect AI Agents to Pharos protocols
12 lines • 571 B
TypeScript
import { PharosAgentKit } from "../../index";
import { Address } from "viem";
/**
* Mints an ERC721 token to a recipient
* @param agent The PharosAgentKit instance
* @param recipient The recipient address who will receive the minted token
* @param tokenAddress The ERC721 token contract address
* @param tokenId The token ID to mint
* @returns Transaction details as string or error message
*/
export declare function erc721Mint(agent: PharosAgentKit, recipient: Address, tokenAddress: Address, tokenId: bigint): Promise<string>;
//# sourceMappingURL=mint.d.ts.map