Quick Start Guide
CivraGet 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
Sign Up
Visit Civra and create your account. Connect your wallet to get started.
Create a New Project
Click "New Project" and choose from our templates:
- DeFi Dashboard
- NFT Marketplace
- DAO Governance
- Token Launch Platform
- Custom Project
Configure Your Project
Select your target blockchain:
- Ethereum Mainnet
- Polygon
- Optimism
- Arbitrum
- Or use testnets for development
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:
- Click "Deploy" in the top right
- Review your smart contracts
- Choose your network
- Confirm the transaction in your wallet
- Get your live dApp URL
Next Steps
Need Help?
- Check our FAQ
- Join our Discord
- Email support@civra.dev