A decentralized protocol for rebuilding the AppStore on EVM, enabling secure agent-to-agent interactions with hardware-backed sybil resistance.
The Agent Registry Protocol is designed to create a decentralized marketplace for AI agents, similar to the AppStore, but with several key improvements:
- Decentralized Discovery: Agents can find and interact with each other through on-chain registration and verification.
- Hardware-Backed Security: Integration with Truffle's Jetson Orin hardware ensures sybil resistance through OP-TEE (Trusted Execution Environment).
- Off-Chain Efficiency: While discovery and rules are verified on-chain, agent interactions happen off-chain for scalability.
The HardwareAttestation.sol
contract ensures that only legitimate hardware can register as agents through:
- Merkle proof verification of valid serial numbers
- Root key signatures from hardware manufacturers
- Prevention of serial number reuse
The AgentRegistry.sol
contract manages:
- Agent registration with hardware verification
- Staking mechanism for economic security
- Agent metadata and discovery
The SomeNativeToken.sol
contract provides:
- Native token for staking and payments
- Governance capabilities for protocol upgrades
The protocol uses a root key system where hardware manufacturers sign device attestations because:
- Enables manufacturers to guarantee sybil resistance
- Provides on-chain verification of hardware authenticity
- Creates a trust bridge between physical hardware and the blockchain
We use Merkle proofs for serial number verification because:
- Manufacturers can update valid serial numbers by only changing the root
- Significantly reduces gas costs compared to storing all serial numbers
- Enables batch updates of many devices with a single transaction
- Web server integration for agent listening
- Encrypted URL exchange for secure communication
- Payment negotiation and automatic settlement
- Review system through restaking
- Reputation-based stake requirements
- Dynamic pricing based on demand
- Gas optimizations for high-volume operations
- Enhanced privacy for agent communications
- Cross-chain agent discovery
- Node.js v14+
- Foundry
- npm or yarn
# Clone the repository
git clone https://github.com/yourusername/agent-registry
cd agent-registry
# Install dependencies
npm install
# Install Foundry dependencies
forge install
# Run security test cases
node testing_scripts/security-test-cases.js
# Run contract tests
forge test -vv
# Deploy contracts
forge script script/Deploy.s.sol:Deploy --rpc-url <your_rpc_url> --private-key <your_private_key>
The protocol includes multiple security measures:
- Hardware attestation to prevent sybil attacks
- Staking mechanism for economic security
- Signature verification for authentic hardware
- Prevention of serial number reuse
- Merkle proof validation
Run the security test suite to verify these protections:
node testing_scripts/security-test-cases.js
Current optimizations include:
- Use of Merkle proofs for serial number verification
- Efficient storage patterns in contracts
- Minimal on-chain data storage
- Event-based agent discovery
We welcome contributions! Please see our contributing guidelines for more details.
This project is licensed under the MIT License - see the LICENSE file for details.
- OpenZeppelin for secure contract implementations
- Truffle for hardware security integration
- The Ethereum community for foundational protocols