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

# Fuego Blockchain Bank of XFG

Fuego is  open-source decentralized blockchain network that lets you send and receive funds privately, earn interest on deposits, and exchange encrypted messages — all without any central authority. The Fuego Suite gives you every tool you need: a full node daemon, a command-line wallet, a terminal user interface, a standalone miner, and a JSON-RPC payment gateway for application integrations.

<CardGroup cols={2}>
  <Card title="Quick Start" icon="bolt" href="/quickstart">
    Get Fuego running and send your first transaction in minutes.
  </Card>

  <Card title="Installation" icon="download" href="/installation">
    Build or download Fuego binaries for Linux, macOS, Windows, and ARM.
  </Card>

  <Card title="CLI Wallet" icon="wallet" href="/wallet/simplewallet">
    Manage XFG from the command line with the simplewallet tool.
  </Card>

  <Card title="API Reference" icon="code" href="/api/overview">
    Integrate Fuego into your application with the JSON-RPC API.
  </Card>
</CardGroup>

## What you can do with Fuego

<CardGroup cols={2}>
  <Card title="Private Transactions" icon="shield" href="/concepts/privacy">
    Send XFG using ring signatures — transactions are untraceable and unlinkable.
  </Card>

  <Card title="Decentralized Deposits" icon="piggy-bank" href="/concepts/deposits">
    Lock XFG in a time deposit to earn interest, with no bank required.
  </Card>

  <Card title="Run a Node" icon="server" href="/node/running-a-node">
    Participate in the network by running a full node with `fuegod`.
  </Card>

  <Card title="Mine XFG" icon="pickaxe" href="/node/mining">
    Contribute proof-of-work and earn block rewards with the built-in miner.
  </Card>
</CardGroup>

## Get started in three steps

<Steps>
  <Step title="Install the Fuego Suite">
    Build from source or download a pre-built binary for your platform. See [Installation](/installation) for full instructions.
  </Step>

  <Step title="Start the daemon and sync">
    Run `./fuegod` to start your node. The daemon connects to the Fuego P2P network and downloads the blockchain automatically.
  </Step>

  <Step title="Create a wallet and receive XFG">
    Run `./simplewallet --generate-new-wallet my.wallet` to create your first wallet, then share your `fire…` address to receive funds.
  </Step>
</Steps>

<Note>
  For a graphical experience, check out the [Fuego Desktop Wallet](https://github.com/usexfg/fuego-wallet) or use the built-in [Terminal User Interface (TUI)](/wallet/tui).
</Note>
