forked from Asyboi/agentic-hack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathx402-payment.ts
More file actions
299 lines (279 loc) · 7.94 KB
/
Copy pathx402-payment.ts
File metadata and controls
299 lines (279 loc) · 7.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
import { facilitator as cdpFacilitator } from "@coinbase/x402";
import { HTTPFacilitatorClient, x402ResourceServer } from "@x402/core/server";
import type { RouteConfig, RoutesConfig } from "@x402/core/http";
import { ExactEvmScheme } from "@x402/evm/exact/server";
import {
bazaarResourceServerExtension,
declareDiscoveryExtension,
} from "@x402/extensions/bazaar";
type EvmAddress = `0x${string}`;
type HttpUrl = `${string}://${string}`;
export const x402Mode = process.env.X402_MODE === "live" ? "live" : "mock";
export const x402HasCdpCredentials = Boolean(
process.env.CDP_API_KEY_ID && process.env.CDP_API_KEY_SECRET
);
export const x402PayTo: EvmAddress = "0x6B842e0F980EE89182e6aD0C4FFE36Df8D544a4a";
export const x402Price = "$0.001";
export const x402Network = "eip155:84532";
export const x402NetworkCaip = x402Network;
export const x402Facilitator = new HTTPFacilitatorClient(cdpFacilitator);
export const x402ResourceServerInstance = new x402ResourceServer(x402Facilitator)
.register(x402Network, new ExactEvmScheme())
.registerExtension(bazaarResourceServerExtension);
function createRouteConfig(
description: string,
resource?: HttpUrl,
extensions?: Record<string, unknown>
): RouteConfig {
return {
accepts: {
scheme: "exact",
payTo: x402PayTo,
price: x402Price,
network: x402Network,
},
description,
mimeType: "application/json",
...(resource ? { resource } : {}),
extensions,
};
}
const evaluateInputExample = {
agent_id: "marketplace-buyer-agent",
target: {
name: "LinkedIn",
type: "website",
domain: "linkedin.com",
policy_urls: ["https://www.linkedin.com/legal/user-agreement"],
},
intended_action: {
action_type: "scrape_profiles",
description: "Scrape 100 public profiles matching software engineer.",
uses_automation: true,
frequency: "bulk",
stores_data: true,
data_types: ["profile"],
contains_pii: true,
commercial_use: true,
uses_official_api: false,
},
};
const evaluateInputSchema = {
type: "object",
properties: {
agent_id: { type: "string" },
target: {
type: "object",
properties: {
name: { type: "string" },
type: { type: "string", enum: ["website", "api", "saas"] },
domain: { type: "string" },
policy_urls: {
type: "array",
items: { type: "string", format: "uri" },
},
},
required: ["name"],
},
intended_action: {
type: "object",
properties: {
action_type: { type: "string" },
description: { type: "string" },
uses_automation: { type: "boolean" },
frequency: {
type: "string",
enum: ["once", "daily", "bulk", "user_initiated_only"],
},
stores_data: { type: "boolean" },
data_types: { type: "array", items: { type: "string" } },
contains_pii: { type: "boolean" },
commercial_use: { type: "boolean" },
uses_official_api: { type: "boolean" },
},
required: ["action_type"],
},
},
required: ["agent_id", "target", "intended_action"],
};
const verdictOutputExample = {
decision: "blocked",
risk_level: "high",
reason: "The proposed automated collection is not allowed by the target policy.",
matched_rules: ["no_automated_access"],
machine_instruction: {
proceed: false,
disable_target_action: true,
requires_human_review: false,
},
citation: {
source_url: "https://www.linkedin.com/legal/user-agreement",
quoted_text: "Use bots or other automated methods to access the Services...",
fetched_at: "2026-05-23T17:00:00.000Z",
},
};
const verdictOutputSchema = {
type: "object",
properties: {
decision: {
type: "string",
enum: ["allowed", "blocked", "modify_recommended"],
},
risk_level: { type: "string", enum: ["low", "medium", "high"] },
reason: { type: "string" },
matched_rules: { type: "array", items: { type: "string" } },
machine_instruction: { type: "object" },
citation: { type: "object" },
cited_md_url: { type: "string", format: "uri" },
},
required: [
"decision",
"risk_level",
"reason",
"matched_rules",
"machine_instruction",
"citation",
],
};
const researchInputExample = {
agent_id: "marketplace-buyer-agent",
task: "Find 20 project-management tools under $50/user and check whether collecting pricing data is policy-compliant.",
max_vendors: 5,
};
const researchInputSchema = {
type: "object",
properties: {
agent_id: { type: "string" },
task: { type: "string", minLength: 10 },
max_vendors: { type: "integer", minimum: 1, maximum: 20 },
},
required: ["agent_id", "task"],
};
const researchOutputExample = {
research_id: "research-demo",
status: "completed",
summary: "Found candidate vendors and policy-checked the planned collection.",
vendors: [],
};
const researchOutputSchema = {
type: "object",
properties: {
research_id: { type: "string" },
task: { type: "string" },
status: { type: "string", enum: ["completed", "partial"] },
summary: { type: "string" },
vendors: { type: "array" },
},
required: ["research_id", "task", "status", "summary"],
};
function paidDemoExtension() {
return declareDiscoveryExtension({
input: {},
inputSchema: {
type: "object",
properties: {},
additionalProperties: false,
},
output: {
example: {
ok: true,
paid: true,
service: "PolicyGuard paid demo",
},
schema: {
type: "object",
properties: {
ok: { type: "boolean" },
paid: { type: "boolean" },
service: { type: "string" },
},
required: ["ok", "paid", "service"],
},
},
});
}
function evaluateExtension(method: "GET" | "POST") {
if (method === "GET") {
return declareDiscoveryExtension({
input: {},
inputSchema: {
type: "object",
properties: {},
additionalProperties: false,
},
output: {
example: {
service: "PolicyGuard",
endpoint: "POST /api/evaluate",
},
},
});
}
return declareDiscoveryExtension({
input: evaluateInputExample,
inputSchema: evaluateInputSchema,
bodyType: "json",
output: {
example: verdictOutputExample,
schema: verdictOutputSchema,
},
});
}
function researchExtension(method: "GET" | "POST") {
if (method === "GET") {
return declareDiscoveryExtension({
input: {},
inputSchema: {
type: "object",
properties: {},
additionalProperties: false,
},
output: {
example: {
service: "PolicyGuard Research",
endpoint: "POST /api/research",
},
},
});
}
return declareDiscoveryExtension({
input: researchInputExample,
inputSchema: researchInputSchema,
bodyType: "json",
output: {
example: researchOutputExample,
schema: researchOutputSchema,
},
});
}
export function createX402Routes(origin?: HttpUrl): RoutesConfig {
const resource = (path: string) => (origin ? (`${origin}${path}` as HttpUrl) : undefined);
return {
"GET /api/paid-demo": createRouteConfig(
"PolicyGuard Base Sepolia x402 self-payment demo",
resource("/api/paid-demo"),
paidDemoExtension()
),
"GET /api/evaluate": createRouteConfig(
"PolicyGuard compliance verdict API",
resource("/api/evaluate"),
evaluateExtension("GET")
),
"POST /api/evaluate": createRouteConfig(
"PolicyGuard compliance verdict API",
resource("/api/evaluate"),
evaluateExtension("POST")
),
"GET /api/research": createRouteConfig(
"PolicyGuard marketplace research API",
resource("/api/research"),
researchExtension("GET")
),
"POST /api/research": createRouteConfig(
"PolicyGuard marketplace research API",
resource("/api/research"),
researchExtension("POST")
),
};
}
export const x402Routes: RoutesConfig = createX402Routes();