What problem does it solve? Building an x402 payment facilitator for Algorand requires implementing the FacilitatorAvmSigner protocol, handling algosdk's tricky base64/msgpack encoding boundaries, and wiring up verification and settlement endpoints—tasks that are error-prone without a proven reference implementation. ## Core Features & Use Cases - FacilitatorAvmSigner Implementation: Provides a complete, production-ready signer class covering sign_transaction, sign_group, simulate_group, send_group, and confirm_transaction using py-algorand-sdk. - FastAPI Service Scaffolding: Generates /verify, /settle, and /supported endpoints registered via register_exact_avm_facilitator for Algorand testnet and mainnet. - Multi-Network Support: Covers registration patterns for combined EVM, SVM, and AVM facilitators, plus lifecycle hooks for custom verification and settlement logic. - Use Case: A developer needs to accept x402 payments on Algorand; this Skill produces a working facilitator service with correct algosdk encoding handling and troubleshooting guidance for common errors like msgpack_decode failures. ## Quick Start Create a Python x402 facilitator service for Algorand testnet with FastAPI endpoints for verifying and settling payments.