ANYX402 - Pay with anything. Settle in any token.
The universal payments layer for the X402 economy
This is a fork of the Coinbase x402 protocol with extended functionality for the AnySpend ecosystem.
- 📦 npm Package: @b3dotfun/anyspend-x402
- 🌐 Original Protocol: x402.org
- 📚 Documentation: x402.org/docs
- 🔗 Upstream: coinbase/x402
npm install @b3dotfun/anyspend-x402npm install @b3dotfun/anyspend-x402-solana-wallet-adapterimport { paymentMiddleware } from "x402-express";
import { facilitator } from "@b3dotfun/anyspend-x402";
// EVM example
app.use(
paymentMiddleware(
"0xYourAddress",
{ "/your-endpoint": { price: "$0.01", network: "base-sepolia" } },
facilitator
)
);
// Solana example
app.use(
paymentMiddleware(
"YourSolanaAddress",
{ "/your-endpoint": { price: "1000000", network: "solana" } }, // 1 USDC (6 decimals)
facilitator
)
);
// That's it! See examples/typescript/servers/express.ts for complete examples.import {
createWalletAdapterSigner,
useWallet,
WalletMultiButton,
} from "@b3dotfun/anyspend-x402-solana-wallet-adapter";
import { wrapFetchWithPayment } from "@b3dotfun/anyspend-x402-fetch";
function App() {
const { publicKey, signAllTransactions, connected } = useWallet();
const fetchData = async () => {
const signer = createWalletAdapterSigner(
publicKey.toBase58(),
signAllTransactions
);
const fetchWithPayment = wrapFetchWithPayment(fetch, signer);
const response = await fetchWithPayment("https://api.example.com/data");
return await response.json();
};
return (
<>
<WalletMultiButton />
<button onClick={fetchData} disabled={!connected}>Pay & Get Data</button>
</>
);
}AnySpend X402 is B3's implementation of the X402 payment protocol that enables instant, automatic cryptocurrency payments directly over HTTP. Unlike standard X402 systems, AnySpend supports multi-token and multi-chain transactions - customers can pay with any token (ETH, DAI, ERC-20 tokens on EVM chains, or SPL tokens on Solana) while sellers receive payments in their preferred denomination like USDC.
This repository is a fork of the original Coinbase x402 protocol with additional features and integrations for the AnySpend ecosystem. It maintains full compatibility with the base x402 protocol while adding:
- 🔧 Extended Facilitator Support: Pre-configured integration with Coinbase's CDP platform
- 🎯 Easy Integration: Drop-in replacement for
@coinbase/x402with additional utilities - ⛓️ Multi-Chain Support: Full EVM and Solana Virtual Machine (SVM) support
- 💳 Solana Wallet Integration: Browser wallet adapter for Phantom, Solflare, and more
- 🚀 Enhanced Examples: Additional demos and use cases for various frameworks
- 🔄 Regular Updates: Tracking upstream x402 protocol developments
For Buyers:
- Pay with any token including ETH, DAI, ERC-20 tokens (EVM), and SPL tokens (Solana)
- Support for popular Solana wallets: Phantom, Solflare, Ledger, and more
- Automatic conversion to seller's preferred denomination
- Single SDK compatible across all X402-enabled services
- Perfect for accessing premium APIs, computational resources, paywalled content, and autonomous agent interactions
For Sellers:
- Receive payments in USDC regardless of customer's token choice or blockchain
- Support for both EVM chains (Ethereum, Base, etc.) and Solana
- Add payments to your API with just a few lines of code
- No blockchain infrastructure, wallets, or token conversion management needed
- Monetize APIs and build paid AI workflows without cryptocurrency expertise
The AnySpend transaction flow:
- Client requests a resource
- Receives a 402 status with payment details
- Specifies their token preference (ERC-20 or SPL)
- Receives an AnySpend quote
- Signs authorization (EIP-3009/ERC-2612 on EVM, or Transaction signature on Solana)
- Facilitator swaps tokens to USDC (if needed)
- Resource is delivered
AnySpend Facilitator: Processes all payments with multi-token and multi-chain support across 19+ networks (including Solana, BNB Chain), automatic swaps, gasless transactions, and standards compliance.
Production endpoint: https://mainnet.anyspend.com/x402
Supported Networks: EVM chains (Ethereum, Base, Polygon, Arbitrum, Optimism, etc.) and Solana (mainnet-beta, devnet)
📚 Full Documentation: docs.b3.fun/anyspend/x402-overview
Payments on the internet are fundamentally flawed. Credit Cards are high friction, hard to accept, have minimum payments that are far too high, and don't fit into the programmatic nature of the internet. It's time for an open, internet-native form of payments. A payment rail that doesn't have high minimums + % based fee. Payments that are amazing for humans and AI agents.
- Open standard: the x402 protocol will never force reliance on a single party
- HTTP Native: x402 is meant to seamlessly complement the existing HTTP request made by traditional web services, it should not mandate additional requests outside the scope of a typical client / server flow.
- Chain and token agnostic: we welcome contributions that add support for new chains, signing standards, or schemes, so long as they meet our acceptance criteria. Currently supports both EVM and Solana Virtual Machine (SVM).
- Trust minimizing: all payment schemes must not allow for the facilitator or resource server to move funds, other than in accordance with client intentions
- Easy to use: x402 needs to be 10x better than existing ways to pay on the internet. This means abstracting as many details of crypto as possible away from the client and resource server, and into the facilitator. This means the client/server should not need to think about gas, rpc, etc.
The x402 ecosystem is growing! Check out our ecosystem page to see projects building with x402, including:
- Client-side integrations
- Services and endpoints
- Ecosystem infrastructure and tooling
- Learning and community resources
Want to add your project to the ecosystem? Visit x402.org to learn more.
Upstream Roadmap: see Coinbase x402 ROADMAP.md
resource: Something on the internet. This could be a webpage, file server, RPC service, API, any resource on the internet that accepts HTTP / HTTPS requests.client: An entity wanting to pay for a resource.facilitator server: A server that facilitates verification and execution of on-chain payments.resource server: An HTTP server that provides an API or other resource for a client.
- Permissionless and secure for clients and servers
- Gasless for client and resource servers
- Minimal integration for the resource server and client (1 line for the server, 1 function for the client)
- Ability to trade off speed of response for guarantee of payment
- Extensible to different payment flows and chains
The x402 protocol is a chain agnostic standard for payments on top of HTTP, leverage the existing 402 Payment Required HTTP status code to indicate that a payment is required for access to the resource.
It specifies:
- A schema for how servers can respond to clients to facilitate payment for a resource (
PaymentRequirements) - A standard header
X-PAYMENTthat is set by clients paying for resources - A standard schema and encoding method for data in the
X-PAYMENTheader - A recommended flow for how payments should be verified and settled by a resource server
- A REST specification for how a resource server can perform verification and settlement against a remote 3rd party server (
facilitator) - A specification for a
X-PAYMENT-RESPONSEheader that can be used by resource servers to communicate blockchain transactions details to the client in their HTTP response
The following outlines the flow of a payment using the x402 protocol. Note that steps (1) and (2) are optional if the client already knows the payment details accepted for a resource.
-
Clientmakes an HTTP request to aresource server. -
Resource serverresponds with a402 Payment Requiredstatus and aPayment Required ResponseJSON object in the response body. -
Clientselects one of thepaymentRequirementsreturned by the server response and creates aPayment Payloadbased on theschemeof thepaymentRequirementsthey have selected. -
Clientsends the HTTP request with theX-PAYMENTheader containing thePayment Payloadto the resource server. -
Resource serververifies thePayment Payloadis valid either via local verification or by POSTing thePayment PayloadandPayment Requirementsto the/verifyendpoint of afacilitator server. -
Facilitator serverperforms verification of the object based on theschemeandnetworkof thePayment Payloadand returns aVerification Response. -
If the
Verification Responseis valid, the resource server performs the work to fulfill the request. If theVerification Responseis invalid, the resource server returns a402 Payment Requiredstatus and aPayment Required ResponseJSON object in the response body. -
Resource servereither settles the payment by interacting with a blockchain directly, or by POSTing thePayment PayloadandPayment PaymentRequirementsto the/settleendpoint of afacilitator server. -
Facilitator serversubmits the payment to the blockchain based on theschemeandnetworkof thePayment Payload. -
Facilitator serverwaits for the payment to be confirmed on the blockchain. -
Facilitator serverreturns aPayment Execution Responseto the resource server. -
Resource serverreturns a200 OKresponse to theClientwith the resource they requested as the body of the HTTP response, and aX-PAYMENT-RESPONSEheader containing theSettlement Responseas Base64 encoded JSON if the payment was executed successfully.
Payment Required Response
{
// Version of the x402 payment protocol
x402Version: int,
// List of payment requirements that the resource server accepts. A resource server may accept on multiple chains, or in multiple currencies.
accepts: [paymentRequirements]
// Message from the resource server to the client to communicate errors in processing payment
error: string
}paymentRequirements
{
// Scheme of the payment protocol to use
scheme: string;
// Network of the blockchain to send payment on
network: string;
// Maximum amount required to pay for the resource in atomic units of the asset
maxAmountRequired: uint256 as string;
// URL of resource to pay for
resource: string;
// Description of the resource
description: string;
// MIME type of the resource response
mimeType: string;
// Output schema of the resource response
outputSchema?: object | null;
// Address to pay value to
payTo: string;
// Maximum time in seconds for the resource server to respond
maxTimeoutSeconds: number;
// Address of the EIP-3009 compliant ERC20 contract
asset: string;
// Extra information about the payment details specific to the scheme
// For `exact` scheme on a EVM network, expects extra to contain the records `name` and `version` pertaining to asset
extra: object | null;
}Payment Payload (included as the X-PAYMENT header in base64 encoded json)
{
// Version of the x402 payment protocol
x402Version: number;
// scheme is the scheme value of the accepted `paymentRequirements` the client is using to pay
scheme: string;
// network is the network id of the accepted `paymentRequirements` the client is using to pay
network: string;
// payload is scheme dependent
payload: <scheme dependent>;
}A facilitator server is a 3rd party service that can be used by a resource server to verify and settle payments, without the resource server needing to have access to a blockchain node or wallet.
POST /verify. Verify a payment with a supported scheme and network:
- Request body JSON:
{ x402Version: number; paymentHeader: string; paymentRequirements: paymentRequirements; }
- Response:
{ isValid: boolean; invalidReason: string | null; }
POST /settle. Settle a payment with a supported scheme and network:
-
Request body JSON:
{ x402Version: number; paymentHeader: string; paymentRequirements: paymentRequirements; }
-
Response:
{ // Whether the payment was successful success: boolean; // Error message from the facilitator server error: string | null; // Transaction hash of the settled payment txHash: string | null; // Network id of the blockchain the payment was settled on networkId: string | null; }
GET /supported. Get supported payment schemes and networks:
- Response:
{ kinds: [ { "scheme": string, "network": string, } ] }
A scheme is a logical way of moving money.
Blockchains allow for a large number of flexible ways to move money. To help facilitate an expanding number of payment use cases, the x402 protocol is extensible to different ways of settling payments via its scheme field.
Each payment scheme may have different operational functionality depending on what actions are necessary to fulfill the payment.
For example exact, the first scheme shipping as part of the protocol, would have different behavior than upto. exact transfers a specific amount (ex: pay $1 to read an article), while a theoretical upto would transfer up to an amount, based on the resources consumed during a request (ex: generating tokens from an LLM).
See specs/schemes for more details on schemes, and see specs/schemes/exact/scheme_exact_evm.md to see the first proposed scheme for exact payment on EVM chains.
Because a scheme is a logical way of moving money, the way a scheme is implemented can be different for different blockchains. (ex: the way you need to implement exact on Ethereum is very different from the way you need to implement exact on Solana).
Clients and facilitators must explicitly support different (scheme, network) pairs in order to be able to create proper payloads and verify / settle payments.
Supported Scheme-Network Pairs:
exact+ EVM networks: Uses EIP-3009 (TransferWithAuthorization) or ERC-2612 (Permit) for ERC-20 tokensexact+ Solana (SVM): Uses SPL Token TransferChecked instructions with gasless, facilitator-sponsored transactions
See specs/schemes/exact/scheme_exact_evm.md and specs/schemes/exact/scheme_exact_svm.md for detailed specifications.
Requirements: Node.js v24 or higher
-
From
examples/typescriptrunpnpm installandpnpm buildto ensure all dependent packages and examples are setup. -
Select a server, i.e. express, and
cdinto that example. Add your server's ethereum address to get paid to into the.envfile, and then runpnpm devin that directory. -
Select a client, i.e. axios, and
cdinto that example. Add your private key for the account making payments into the.envfile, and then runpnpm devin that directory.
You should see activities in the client terminal, which will display a weather report.
- Navigate to the typescript directory:
cd typescript - Install dependencies:
pnpm install - Run the unit tests:
pnpm test
This will run the unit tests for the x402 packages.
This repository publishes the following npm packages:
Core package providing:
- Pre-configured facilitator for Coinbase's CDP platform
- Helper functions for authentication and authorization
- Easy integration with x402 middleware packages
- Support for both EVM and Solana networks
Solana-specific package providing:
- Bridge between
@solana/wallet-adapter(v1) and x402 library (v2) - Support for popular Solana wallets (Phantom, Solflare, Ledger, Trust Wallet, etc.)
- Type-safe React components with fixed TypeScript compatibility
- Transaction signer adapter for seamless integration
Quick Example:
import {
createWalletAdapterSigner,
useWallet,
WalletMultiButton,
} from "@b3dotfun/anyspend-x402-solana-wallet-adapter";
import { wrapFetchWithPayment } from "@b3dotfun/anyspend-x402-fetch";
function MyComponent() {
const { publicKey, signAllTransactions, connected } = useWallet();
const fetchData = async () => {
const signer = createWalletAdapterSigner(
publicKey.toBase58(),
signAllTransactions
);
const fetchWithPayment = wrapFetchWithPayment(fetch, signer);
const response = await fetchWithPayment("https://api.example.com/premium-data");
return await response.json();
};
return (
<div>
<WalletMultiButton />
<button onClick={fetchData} disabled={!connected}>
Get Premium Data
</button>
</div>
);
}See the Solana wallet adapter README for detailed usage instructions.
anyspend-x402/
├── typescript/
│ ├── packages/
│ │ ├── anyspend-x402/ # Published npm package
│ │ ├── x402/ # Core x402 protocol
│ │ ├── x402-express/ # Express middleware
│ │ ├── x402-hono/ # Hono middleware
│ │ ├── x402-next/ # Next.js middleware
│ │ ├── x402-solana-wallet-adapter/ # Solana wallet integration
│ │ └── ...
│ └── examples/ # Example implementations
├── specs/
│ └── schemes/
│ └── exact/
│ ├── scheme_exact_evm.md # EVM implementation spec
│ └── scheme_exact_svm.md # Solana implementation spec
├── e2e/ # End-to-end tests
└── examples/ # Additional examples
We welcome contributions! To contribute:
- Fork this repository
- Create a feature branch
- Make your changes
- Submit a pull request
For major changes to the core protocol, please consider contributing to the upstream Coinbase x402 repository.
This fork tracks the upstream Coinbase x402 repository. To stay updated:
git remote add upstream https://github.com/coinbase/x402.git
git fetch upstream
git merge upstream/mainApache-2.0 (same as upstream)
- Issues: Report bugs
- Documentation: x402.org/docs
- Upstream Repository: coinbase/x402
This project is a fork maintained by the b3-fun team. For questions about the core x402 protocol, please refer to the official x402 documentation.
