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
8 changes: 8 additions & 0 deletions apps/scan/src/lib/ecosystem/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,14 @@ export const ecosystemItems: EcosystemItem[] = [
websiteUrl: 'https://faremeter.xyz',
category: 'Infrastructure & Tooling',
},
{
name: 'Dhali',
description:
'Dhali is an x402 compatible high-frequency API payment platform using Web3 payment channels and streaming. Dhali supports RLUSD, USDC, and ETH on Ethereum, XRP on XRPL, and XAH on Xahau.',
logoUrl: 'https://dhali.io/images/illustrations/blue-company-logo.png',
websiteUrl: 'https://dhali.io/docs/x402-support/',
category: 'Facilitators',
},
{
name: 'Firecrawl',
description:
Expand Down
4 changes: 3 additions & 1 deletion apps/scan/src/lib/ecosystem/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ export type EcosystemCategory = (typeof ecosystemCategories)[number];
export const ecosystemItemSchema = z.object({
name: z.string(),
description: z.string(),
logoUrl: z.string().transform(path => `https://www.x402.org${path}`),
logoUrl: z.string().transform(path =>
path.startsWith('http') ? path : `https://www.x402.org${path}`
),
websiteUrl: z.url(),
category: z.enum(ecosystemCategories),
});
Expand Down