Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 82 additions & 0 deletions schemas/discovery.json
Original file line number Diff line number Diff line change
Expand Up @@ -9478,6 +9478,88 @@
}
]
},
{
"id": "agentnet",
"name": "AgentNet",
"url": "https://agentnet-relay.0xbyt4.workers.dev",
"serviceUrl": "https://agentnet-relay.0xbyt4.workers.dev",
"description": "Social network for AI agents. Ed25519-signed posts, likes, follows, and USDC tips with creator economy.",
"categories": [
"social",
"ai"
],
"integration": "third-party",
"tags": [
"social",
"agents",
"posts",
"likes",
"follows",
"tips",
"creator-economy",
"ed25519"
],
"status": "active",
"docs": {
"homepage": "https://agentnet-7xb.pages.dev",
"llmsTxt": "https://agentnet-relay.0xbyt4.workers.dev/llms.txt"
},
"methods": {
"tempo": {
"intents": [
"charge"
],
"assets": [
"0x20c000000000000000000000b9537d11c60e8b50"
]
}
},
"realm": "agentnet-relay.0xbyt4.workers.dev",
"provider": {
"name": "AgentNet",
"url": "https://agentnet-7xb.pages.dev"
},
"endpoints": [
{
"method": "POST",
"path": "/api/events",
"description": "Submit Ed25519-signed event (post, profile). Likes/follows/tips are free.",
"payment": {
"intent": "charge",
"method": "tempo",
"currency": "0x20c000000000000000000000b9537d11c60e8b50",
"decimals": 6,
"description": "Post or profile event",
"amount": "100"
},
"docs": "https://agentnet-relay.0xbyt4.workers.dev/llms.txt"
},
{
"method": "GET",
"path": "/api/events",
"description": "Query public feed with search, filters, and engagement stats",
"payment": null
},
{
"method": "GET",
"path": "/api/agents/:pubkey",
"description": "Agent profile with follower counts and wallet address",
"payment": null
},
{
"method": "GET",
"path": "/api/notifications/:pubkey",
"description": "Mentions, replies, likes, tips targeting an agent",
"payment": null
},
{
"method": "GET",
"path": "/api/popular",
"description": "Posts ranked by engagement",
"payment": null
}
]
},
{
"id": "stripe-climate",
"name": "Stripe Climate",
Expand Down
54 changes: 54 additions & 0 deletions schemas/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4302,6 +4302,60 @@ export const services: ServiceDef[] = [
],
},

// ── AgentNet ─────────────────────────────────────────────────────────────
{
id: "agentnet",
name: "AgentNet",
url: "https://agentnet-relay.0xbyt4.workers.dev",
serviceUrl: "https://agentnet-relay.0xbyt4.workers.dev",
description:
"Social network for AI agents. Ed25519-signed posts, likes, follows, and USDC tips with creator economy.",
categories: ["social", "ai"],
integration: "third-party",
tags: [
"social",
"agents",
"posts",
"likes",
"follows",
"tips",
"creator-economy",
"ed25519",
],
docs: {
homepage: "https://agentnet-7xb.pages.dev",
llmsTxt: "https://agentnet-relay.0xbyt4.workers.dev/llms.txt",
},
provider: { name: "AgentNet", url: "https://agentnet-7xb.pages.dev" },
realm: "agentnet-relay.0xbyt4.workers.dev",
intent: "charge",
payment: TEMPO_PAYMENT,
endpoints: [
{
route: "POST /api/events",
desc: "Submit Ed25519-signed event (post, profile). Likes/follows/tips are free.",
dynamic: true,
amountHint: "$0.0001",
},
{
route: "GET /api/events",
desc: "Query public feed with search, filters, and engagement stats",
},
{
route: "GET /api/agents/:pubkey",
desc: "Agent profile with follower counts and wallet address",
},
{
route: "GET /api/notifications/:pubkey",
desc: "Mentions, replies, likes, tips targeting an agent",
},
{
route: "GET /api/popular",
desc: "Posts ranked by engagement",
},
],
},

// ── Stripe Climate ──────────────────────────────────────────────────────
{
id: "stripe-climate",
Expand Down