> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentwallex.com/llms.txt
> Use this file to discover all available pages before exploring further.

# What is AgentWallex?

> MPC-secured payment gateway for AI agents — send on-chain payments without exposing private keys.

## Overview

AgentWallex is an MPC-secured wallet infrastructure and payment gateway purpose-built for AI agents. It enables autonomous agents to transact on-chain — sending payments, paying for APIs, and managing funds — without ever exposing private keys.

Built on [Paratro](https://paratro.com)'s 2-of-3 threshold MPC protocol, AgentWallex ensures that no single party ever holds a complete private key. A configurable policy engine evaluates every transaction before it reaches the signing layer, giving developers fine-grained control over what their agents can do.

## How It Works

<Steps>
  <Step title="Agent requests a payment">
    Your AI agent calls the AgentWallex SDK or REST API with transaction details (recipient, amount, token).
  </Step>

  <Step title="Policy engine evaluates">
    The request passes through the policy engine, which checks spending limits, address whitelists, token restrictions, velocity controls, and schedule rules.
  </Step>

  <Step title="MPC signing">
    If the policy check passes, the transaction is signed using 2-of-3 threshold MPC. The full private key is never reconstructed in memory.
  </Step>

  <Step title="Broadcast and confirmation">
    The signed transaction is submitted to the blockchain. AgentWallex monitors confirmation and delivers a webhook event when complete.
  </Step>
</Steps>

## Supported Providers and Chains

| Chain                  | Chain ID         | Status      | Tokens            |
| ---------------------- | ---------------- | ----------- | ----------------- |
| Ethereum               | `eip155:1`       | Active      | ETH, USDC, USDT   |
| Base                   | `eip155:8453`    | Active      | ETH, USDC         |
| Polygon                | `eip155:137`     | Active      | MATIC, USDC, USDT |
| BNB Smart Chain        | `eip155:56`      | Active      | BNB, USDC, USDT   |
| Tron                   | `tron:mainnet`   | Active      | TRX, USDT         |
| Bitcoin                | `bip122:mainnet` | Active      | BTC               |
| Base Sepolia (testnet) | `eip155:84532`   | Active      | ETH, USDC         |
| Solana                 | `solana:mainnet` | Coming Soon | SOL, USDC         |
| Avalanche              | `eip155:43114`   | Coming Soon | AVAX, USDC        |
| Arbitrum               | `eip155:42161`   | Coming Soon | ETH, USDC         |

## Key Features

<CardGroup cols={2}>
  <Card title="MPC Wallets" icon="key" href="/features/mpc-wallets">
    2-of-3 threshold signing powered by Paratro. No single party ever holds the full key.
  </Card>

  <Card title="Policy Engine" icon="shield-check" href="/features/policy-engine">
    Per-agent spending limits, address whitelists, velocity controls, and human approval routing.
  </Card>

  <Card title="x402 Micropayments" icon="credit-card" href="/features/x402-micropayments">
    Pay-per-API-call using the HTTP 402 protocol. Session budgets and automatic payment negotiation.
  </Card>

  <Card title="Webhooks" icon="bell" href="/features/webhooks">
    Real-time notifications for payments, policy violations, agent status changes, and more.
  </Card>
</CardGroup>

## Next Steps

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/introduction/quickstart">
    Integrate AgentWallex in under 5 minutes.
  </Card>

  <Card title="Authentication" icon="lock" href="/introduction/authentication">
    Set up API keys and authentication.
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/overview">
    Full REST API documentation.
  </Card>

  <Card title="TypeScript SDK" icon="js" href="/sdks/typescript">
    Get started with the official TypeScript SDK.
  </Card>
</CardGroup>
