Skip to content

Quick Start Guide

Civra LogoCivra

Get started with Civra in minutes and build your first Web3 application.

Prerequisites

Before you begin, ensure you have:

  • A modern web browser (Chrome, Firefox, or Brave recommended)
  • A MetaMask or compatible Web3 wallet
  • Basic knowledge of Web3 concepts

Create Your First Project

  1. Sign Up

    Visit Civra and create your account. Connect your wallet to get started.

  2. Create a New Project

    Click "New Project" and choose from our templates:

    • DeFi Dashboard
    • NFT Marketplace
    • DAO Governance
    • Token Launch Platform
    • Custom Project
  3. Configure Your Project

    Select your target blockchain:

    • Ethereum Mainnet
    • Polygon
    • Optimism
    • Arbitrum
    • Or use testnets for development
  4. Start Building

    Use our AI assistant to describe what you want to build:

    Create a token swap interface with MetaMask integration

Your First Smart Contract

Civra makes it easy to deploy smart contracts:

solidity
// Ask the AI: "Create an ERC-20 token contract"
contract MyToken is ERC20 {
    constructor() ERC20("MyToken", "MTK") {
        _mint(msg.sender, 1000000 * 10 ** decimals());
    }
}

The AI will:

  • Generate the complete contract
  • Set up deployment scripts
  • Create a UI for interaction
  • Handle wallet connections

Deploy Your Application

When ready to deploy:

  1. Click "Deploy" in the top right
  2. Review your smart contracts
  3. Choose your network
  4. Confirm the transaction in your wallet
  5. Get your live dApp URL

Next Steps

Need Help?

Built with Civra - Web3 Development Platform