DocsGetting Started

5 Minutes with FractalAI

Create a wallet, get testnet FRAC, and send your first transaction

Testnet LiveChain ID: 62124Post-Quantum Security
1
Create Wallet
2
Get Test FRAC
3
Send Transaction
4
Connect via RPC

Step 1: Create a Wallet

Generate a CRYSTALS-Dilithium post-quantum secure wallet

  1. 1

    Go to /wallet

    The web wallet runs entirely in your browser

  2. 2

    Click "Create New Wallet"

    Set a strong password (12+ chars) to encrypt your keyfile

  3. 3

    Download your keyfile

    Your address starts with fractal1_pq_ — the pq means post-quantum (CRYSTALS-Dilithium)

Security: Keyfiles are AES-256-GCM encrypted. Keep your password safe — there is no recovery mechanism.

Step 2: Get Test FRAC

Request free tokens from the testnet faucet

  1. 1

    Go to /faucet

  2. 2

    Paste your wallet address

    From Step 1, copy your fractal1_pq_... address

  3. 3

    Click "Request 100 FRAC"

    Tokens arrive instantly. Rate limit: 1 request per 24 hours per address.

Step 3: Send Your First Transaction

Transfer FRAC to another address

  1. 1

    In the Wallet, click the "Send" tab

  2. 2

    Enter a recipient address and amount (e.g. 1 FRAC)

    Transactions are signed with your Dilithium private key — quantum-resistant

  3. 3

    View it on the Explorer

    Block time is ~3 seconds. Your transaction should confirm in the next block.

Step 4: Connect via RPC

Interact with the blockchain programmatically

Get current block number
curl -X POST https://api.fractalai.net.co \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
Chat with ATHENA AI
curl -X POST https://api.fractalai.net.co \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"fractal_aiChat",
       "params":[{"message":"What is FractalAI?"}],"id":1}'

Network Configuration

RPC URLhttps://api.fractalai.net.co
Chain ID62124 (0xF2AC)
Native TokenFRAC (18 decimals)
Block Time~3 seconds
Explorerhttps://fractalai.net.co/explorer
ConsensusProof of Fractal Work (PoFW)
CryptographyCRYSTALS-Dilithium (post-quantum)
RPC Methods243+ endpoints (JSON-RPC 2.0)

Bonus: Chat with ATHENA

Ask questions about FractalAI to the on-chain AI

FractalAI has a built-in neural engine called FANE (Fractal Adaptive Neural Engine). It uses ATHENA for intent classification, PHIRAG for knowledge retrieval, and ALETHEIA for truth verification.

Next Steps