Launch App
Quick Start

Getting Started

Get up and running with ANDE Network in minutes. Configure your wallet, get testnet tokens, and start building.

Prerequisites
  • MetaMask or any EVM-compatible wallet
  • Basic understanding of Ethereum transactions
  • Node.js 18+ (for development)
1
Configure Your Wallet
Add ANDE Network to MetaMask or any EVM-compatible wallet.

Add these network settings to your wallet:

Network Name:ANDE Network
RPC URL:https://rpc.ande.network
Chain ID:6174
Symbol:ANDE
Block Explorer:https://explorer.ande.network
2
Get Testnet Tokens
Request free ANDE tokens from our faucet.

Visit the faucet to receive testnet ANDE tokens for testing:

Go to Faucet

You can request tokens once every 24 hours per wallet address.

3
Send Your First Transaction
Test the network by sending a simple transfer.

Once you have testnet tokens, try sending a small amount to another address to verify everything is working correctly.

Using MetaMask:

  1. Click "Send" in MetaMask
  2. Enter recipient address
  3. Enter amount (e.g., 0.1 ANDE)
  4. Confirm transaction
  5. Wait ~5 seconds for confirmation
4
Verify on Explorer
Check your transaction on the block explorer.

After sending a transaction, verify it on our block explorer:

Open Block Explorer

Paste your transaction hash or address to see transaction details, status, and gas used.

Code Examples

ethers.js
import { ethers } from 'ethers';

// Connect to ANDE Network
const provider = new ethers.JsonRpcProvider('https://rpc.ande.network');

// Get block number
const blockNumber = await provider.getBlockNumber();
console.log('Current block:', blockNumber);

// Get balance
const balance = await provider.getBalance('0x...');
console.log('Balance:', ethers.formatEther(balance), 'ANDE');
viem
import { createPublicClient, http } from 'viem';
import { defineChain } from 'viem/chains';

const ande = defineChain({
  id: 6174,
  name: 'ANDE Network',
  nativeCurrency: { name: 'ANDE', symbol: 'ANDE', decimals: 18 },
  rpcUrls: {
    default: { http: ['https://rpc.ande.network'] },
  },
  blockExplorers: {
    default: { name: 'ANDE Explorer', url: 'https://explorer.ande.network' },
  },
});

const client = createPublicClient({
  chain: ande,
  transport: http(),
});

const blockNumber = await client.getBlockNumber();
Foundry (cast)
# Get current block number
cast block-number --rpc-url https://rpc.ande.network

# Get balance
cast balance 0x... --rpc-url https://rpc.ande.network

# Send transaction
cast send 0x... --value 0.1ether --rpc-url https://rpc.ande.network --private-key $PK
Next Steps
Ready to build? Explore these resources: