Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@x402/avm

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@x402/avm

x402 Payment Protocol AVM (Algorand) Implementation

latest
Source
npmnpm
Version
2.14.0
Version published
Maintainers
2
Created
Source

@x402/avm npm version

AVM (Algorand Virtual Machine) implementation of the x402 payment protocol using the Exact payment scheme with ASA (Algorand Standard Asset) transfers.

Installation

npm install @x402/avm

Overview

This package provides three main components for handling x402 payments on Algorand:

  • Client - For applications that need to make payments (have wallets/signers)
  • Facilitator - For payment processors that verify and execute on-chain transactions
  • Service - For resource servers that accept payments and build payment requirements

Package Exports

Main Package (@x402/avm)

V2 Protocol Support - Modern x402 protocol with CAIP-2 network identifiers

Client:

  • ExactAvmClient - V2 client implementation using ASA transfers
  • ClientAvmSigner - TypeScript interface for client signers (implement with @algorandfoundation/algokit-utils)

Facilitator:

  • ExactAvmFacilitator - V2 facilitator for payment verification and settlement
  • FacilitatorAvmSigner - TypeScript interface for facilitator signers (implement with @algorandfoundation/algokit-utils)

Service:

  • ExactAvmServer - V2 service for building payment requirements

Usage

import { x402Client } from "@x402/core/client";
import { ExactAvmClient } from "@x402/avm";

const client = new x402Client()
  .register("algorand:*", new ExactAvmClient(signer));

Supported Networks

Networks are identified via CAIP-2:

  • algorand:wGHE2Pwdvd7S12BL5FaOP20EGYesN73ktiC1qzkkit8= - Mainnet
  • algorand:SGO1GKSzyE7IEPItTxCByw9x8FmnrCDexi9/cOUJOiI= - Testnet
  • algorand:* - Wildcard (matches all Algorand networks)

Signer Implementation

Use the built-in helper functions to create signers from a Base64-encoded private key. These use generateAddressWithSigners from @algorandfoundation/algokit-utils internally for canonical Ed25519 signing.

Client Signer

import { toClientAvmSigner } from "@x402/avm";

const signer = toClientAvmSigner(process.env.AVM_PRIVATE_KEY!);
// signer.address — the Algorand address
// signer.signTransactions(txns, indexesToSign) — signs transactions

Facilitator Signer

import { toFacilitatorAvmSigner } from "@x402/avm";

// Default (uses AlgorandClient.testNet() / .mainNet() from algokit-utils):
const signer = toFacilitatorAvmSigner(process.env.AVM_PRIVATE_KEY!);

// With custom Algod URLs:
const signer = toFacilitatorAvmSigner(process.env.AVM_PRIVATE_KEY!, {
  testnetUrl: "https://my-testnet-node.example.com",
  mainnetUrl: "https://my-mainnet-node.example.com",
});

See facilitator example for a full implementation.

Environment Variables

Client Applications

Applications that make payments using an Algorand wallet.

VariableRequiredDescription
AVM_PRIVATE_KEYYesBase64-encoded 64-byte Algorand private key (32-byte seed + 32-byte public key). Used to sign payment transactions.

Server (Resource Provider)

Servers that accept payments and build payment requirements.

VariableRequiredDescription
AVM_ADDRESSYesAlgorand wallet address to receive payments (58-character base32 address).

Facilitator

Payment processors that verify and settle transactions on-chain.

VariableRequiredDescription
AVM_PRIVATE_KEYYesBase64-encoded 64-byte Algorand private key. Used to submit settlement transactions and pay fees.

Key Format

The AVM_PRIVATE_KEY is a Base64-encoded string containing a 64-byte Algorand private key:

  • First 32 bytes: Ed25519 seed (signing key)
  • Last 32 bytes: Ed25519 public key

To derive the Algorand address from the private key:

import { toClientAvmSigner } from "@x402/avm";
const signer = toClientAvmSigner(process.env.AVM_PRIVATE_KEY!);
console.log(signer.address); // Algorand address

Network Connectivity

The SDK uses AlgorandClient from @algorandfoundation/algokit-utils for all network connectivity. By default it connects to AlgoNode public endpoints (free, no authentication required). Custom endpoints can be configured via FacilitatorAvmSignerConfig or by passing an AlgorandClient instance via ClientAvmConfig.algorandClient.

Prerequisites: Account Funding & Asset Opt-In

Algorand requires accounts to meet a Minimum Balance Requirement (MBR) and explicitly opt in to assets before receiving them. This applies to all roles: client, server (payTo), and facilitator.

1. Fund Accounts with ALGO

Every Algorand account needs a minimum ALGO balance:

  • Base MBR: 0.1 ALGO per account
  • Per asset opt-in: +0.1 ALGO per ASA opted into
  • Facilitator: needs additional ALGO to cover transaction fees for gasless payments
Testnet FaucetURL
ALGOhttps://lora.algokit.io/testnet/fund
USDC (Circle)https://faucet.circle.com/

2. Opt In to USDC ASA

Both the client (payer) and server/payTo (receiver) accounts must opt in to USDC before any payment can be made. An opt-in is a 0-amount asset transfer to yourself.

NetworkUSDC ASA ID
Testnet10458941
Mainnet31566704

3. Quick Setup (Testnet)

# 1. Generate a key (or use an existing one)
#    AVM_PRIVATE_KEY is a Base64-encoded 64-byte key (seed + pubkey)

# 2. Fund accounts with ALGO
#    Visit https://lora.algokit.io/testnet/fund

# 3. Fund accounts with testnet USDC
#    Visit https://faucet.circle.com/ (select Algorand Testnet)

# 4. Set environment variables
export AVM_PRIVATE_KEY="<base64-encoded-64-byte-key>"

Note: The facilitator account must also be funded with ALGO to cover transaction fees. For gasless payments, the facilitator pays fees on behalf of the client, so ensure the facilitator has sufficient ALGO balance.

Asset Support

Supports Algorand Standard Assets (ASA):

  • USDC (primary)
  • Any ASA with proper opt-in

Transaction Structure

The exact payment scheme uses atomic transaction groups with:

  • Payment transaction (ASA transfer or ALGO payment)
  • Optional fee payer transaction (gasless transactions)
  • Transaction simulation for validation

Transaction Fees

Algorand transaction fees are dynamic, calculated as:

fee = max(current_fee_per_byte × transaction_size, min_fee)

Under normal (non-congested) network conditions, current_fee_per_byte is 0, so fee = min_fee = 1000 µAlgo (0.001 ALGO). During network congestion, fees can rise above the minimum.

The client fetches suggestedParams from the Algorand node to determine the current fee rate. For gasless payments with a fee payer, the exact fee is calculated from the actual encoded byte sizes of all transactions in the group, ensuring correct coverage under both normal and congested conditions via Algorand's native fee pooling.

The facilitator enforces a maximum reasonable fee of 5000 µAlgo per transaction in the group (5x the normal minimum). For example, a 2-transaction group has a max fee cap of 10,000 µAlgo. This prevents fee extraction attacks while accommodating reasonable congestion surcharges.

Error Codes

The facilitator returns machine-readable error codes in invalidReason (verify) and errorReason (settle), using the invalid_exact_avm_* prefix convention. Human-readable details are in invalidMessage / errorMessage.

Verify errors: invalid_exact_avm_invalid_version, invalid_exact_avm_scheme, invalid_exact_avm_network_mismatch, invalid_exact_avm_payload, invalid_exact_avm_group_size_exceeded, invalid_exact_avm_payment_index, invalid_exact_avm_invalid_transaction, invalid_exact_avm_invalid_group_id, invalid_exact_avm_not_asset_transfer, invalid_exact_avm_amount_mismatch, invalid_exact_avm_receiver_mismatch, invalid_exact_avm_asset_mismatch, invalid_exact_avm_invalid_fee_payer, invalid_exact_avm_fee_too_high, invalid_exact_avm_payment_not_signed, invalid_exact_avm_invalid_signature, invalid_exact_avm_simulation_failed, invalid_exact_avm_facilitator_transferring, invalid_exact_avm_unsigned_non_facilitator

Settle errors: invalid_exact_avm_settlement_failed, invalid_exact_avm_confirmation_failed

See the AVM exact scheme spec for detailed descriptions.

Development

# Build
pnpm build

# Test
pnpm test

# Integration tests
pnpm test:integration

# Lint & Format
pnpm lint
pnpm format
  • @x402/core - Core protocol types and client
  • @x402/fetch - HTTP wrapper with automatic payment handling
  • @x402/evm - EVM/Ethereum implementation
  • @x402/svm - Solana/SVM implementation
  • @algorandfoundation/algokit-utils - Algorand utility library (dependency)

Keywords

x402

FAQs

Package last updated on 29 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts