> Feedback: If these docs are stale, missing, or confusing, post sanitized feedback to `https://docs.tempo.xyz/api/feedback` with `source: "mcp"`, a short `message`, and any relevant `toolName`, `relatedResource`, or `client`.
# Faucet

Get test stablecoins on Tempo testnet.

<Tabs>
  <Tab title="Fund an address">
    <div className="h-4" />

    Send test stablecoins to any address.

    <div className="h-6" />

    <Demo.Container name="Fund an address">
      <AddFundsToOthers stepNumber={1} last />
    </Demo.Container>
  </Tab>

  <Tab title="Fund your wallet">
    <div className="h-4" />

    Connect your wallet to receive test stablecoins directly.

    <div className="h-6" />

    <Demo.Container name="Connect and fund your wallet" footerVariant="balances" tokens={[Token.pathUsd, Token.alphaUsd, Token.betaUsd, Token.thetaUsd]} balanceSource="wallet">
      <ConnectWallet stepNumber={1} />

      <AddFundsToWallet stepNumber={2} />

      <AddTokensToWallet stepNumber={3} />

      <SetFeeToken stepNumber={4} last />
    </Demo.Container>
  </Tab>

  <Tab title="cURL request">
    <div className="h-4" />

    Request tokens programmatically via the faucet API.

    <div className="h-4" />

    ```bash
    curl -X POST https://docs.tempo.xyz/api/faucet \
      -H "Content-Type: application/json" \
      -d '{"address": "<YOUR_ADDRESS>"}'
    ```

    <div className="h-4" />

    Replace `<YOUR_ADDRESS>` with a lowercase wallet address.
  </Tab>

  <Tab title="Cast RPC">
    <div className="h-4" />

    Request tokens using the `tempo_fundAddress` RPC method.

    <div className="h-4" />

    ```bash
    cast rpc tempo_fundAddress <YOUR_ADDRESS> \
      --rpc-url https://rpc.moderato.tempo.xyz
    ```

    <div className="h-4" />

    Replace `<YOUR_ADDRESS>` with your wallet address.
  </Tab>
</Tabs>

The faucet funds the following assets.

| Asset | Address |Amount|
|-------|---------|----:|
| [pathUSD](https://explore.tempo.xyz/address/0x20c0000000000000000000000000000000000000) | `0x20c0000000000000000000000000000000000000` | `1M` |
| [AlphaUSD](https://explore.tempo.xyz/address/0x20c0000000000000000000000000000000000001) | `0x20c0000000000000000000000000000000000001` | `1M` |
| [BetaUSD](https://explore.tempo.xyz/address/0x20c0000000000000000000000000000000000002) | `0x20c0000000000000000000000000000000000002` | `1M` |
| [ThetaUSD](https://explore.tempo.xyz/address/0x20c0000000000000000000000000000000000003)   | `0x20c0000000000000000000000000000000000003` | `1M` |
