/** * Minimal IdentityRegistry ABI for ERC-8004 on-chain operations. * * Contains only the functions needed for agent registration: * - register() — mint a new agent NFT * - register(string agentURI) — mint and set URI in one transaction * - setAgentURI() — set/update the IPFS URI for an agent * - tokenURI() — read the current URI (for verification) * - Registered event — extract agentId from registration receipt * - Transfer event — fallback for extracting agentId * * Sourced from the full ABI in the OpenServ monorepo: * packages/ai/agent0/core/contracts.ts */ export declare const IDENTITY_REGISTRY_ABI: readonly [{ readonly inputs: readonly []; readonly name: "register"; readonly outputs: readonly [{ readonly internalType: "uint256"; readonly name: "agentId"; readonly type: "uint256"; }]; readonly stateMutability: "nonpayable"; readonly type: "function"; }, { readonly inputs: readonly [{ readonly internalType: "string"; readonly name: "agentURI"; readonly type: "string"; }]; readonly name: "register"; readonly outputs: readonly [{ readonly internalType: "uint256"; readonly name: "agentId"; readonly type: "uint256"; }]; readonly stateMutability: "nonpayable"; readonly type: "function"; }, { readonly inputs: readonly [{ readonly internalType: "uint256"; readonly name: "agentId"; readonly type: "uint256"; }, { readonly internalType: "string"; readonly name: "newURI"; readonly type: "string"; }]; readonly name: "setAgentURI"; readonly outputs: readonly []; readonly stateMutability: "nonpayable"; readonly type: "function"; }, { readonly inputs: readonly [{ readonly internalType: "uint256"; readonly name: "tokenId"; readonly type: "uint256"; }]; readonly name: "tokenURI"; readonly outputs: readonly [{ readonly internalType: "string"; readonly name: ""; readonly type: "string"; }]; readonly stateMutability: "view"; readonly type: "function"; }, { readonly anonymous: false; readonly inputs: readonly [{ readonly indexed: true; readonly internalType: "uint256"; readonly name: "agentId"; readonly type: "uint256"; }, { readonly indexed: false; readonly internalType: "string"; readonly name: "agentURI"; readonly type: "string"; }, { readonly indexed: true; readonly internalType: "address"; readonly name: "owner"; readonly type: "address"; }]; readonly name: "Registered"; readonly type: "event"; }, { readonly anonymous: false; readonly inputs: readonly [{ readonly indexed: true; readonly internalType: "uint256"; readonly name: "agentId"; readonly type: "uint256"; }, { readonly indexed: false; readonly internalType: "string"; readonly name: "newURI"; readonly type: "string"; }, { readonly indexed: true; readonly internalType: "address"; readonly name: "updatedBy"; readonly type: "address"; }]; readonly name: "URIUpdated"; readonly type: "event"; }, { readonly anonymous: false; readonly inputs: readonly [{ readonly indexed: true; readonly internalType: "address"; readonly name: "from"; readonly type: "address"; }, { readonly indexed: true; readonly internalType: "address"; readonly name: "to"; readonly type: "address"; }, { readonly indexed: true; readonly internalType: "uint256"; readonly name: "tokenId"; readonly type: "uint256"; }]; readonly name: "Transfer"; readonly type: "event"; }]; //# sourceMappingURL=erc8004-abi.d.ts.map