Skip to content
Open
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
55 changes: 55 additions & 0 deletions schemas/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,13 @@ export const STRIPE_PAYMENT: PaymentDefaults = {
currency: "usd",
decimals: 2,
};
/** Common payment defaults for AlgoVoi (Algorand/VOI on-chain USDC) */
export const ALGOVOI_PAYMENT: PaymentDefaults = {
method: "algovoi",
currency: "31566704", // Algorand USDC ASA ID; VOI aUSDC ARC200 ID: 302190
decimals: 6,
};


export interface EndpointDef {
/** Route string: "METHOD /path" (without service slug prefix) */
Expand Down Expand Up @@ -6345,4 +6352,52 @@ export const services: ServiceDef[] = [
},
],
},

// ── AlgoVoi ─────────────────────────────────────────────────────────────
{
id: "algovoi",
name: "AlgoVoi",
url: "https://www.algovoi.co.uk",
serviceUrl: "https://api1.ilovechicken.co.uk",
description:
"Multi-tenant MPP payment infrastructure for Algorand, VOI, Hedera, and Stellar. " +
"AI agents pay with on-chain USDC (no EVM required) to access payment-gated resources. " +
"Open-source adapters available for 17+ eCommerce platforms.",
categories: ["blockchain", "web"],
integration: "first-party",
status: "beta",
tags: [
"algorand",
"voi",
"hedera",
"stellar",
"usdc",
"payments",
"mpp",
"non-evm",
"avm",
],
docs: {
homepage:
"https://github.com/chopmob-cloud/AlgoVoi-Platform-Adapters",
},
provider: { name: "AlgoVoi", url: "https://www.algovoi.co.uk" },
realm: "api1.ilovechicken.co.uk",
intent: "charge",
payment: ALGOVOI_PAYMENT,
endpoints: [
{
route: "GET /protected/{resource_id}",
desc: "Access a payment-gated resource",
amount: "10000",
unitType: "request",
},
{
route: "POST /x402/verify",
desc: "Verify an on-chain payment proof",
dynamic: true,
amountHint: "0.01+ USDC",
},
],
},
];
Loading