Quick Start Guide
This guide will walk you through setting up GweAI and executing your first automated DCA (Dollar Cost Averaging) strategy in under 5 minutes.Testnet First: You’ll be using Base Sepolia testnet, so there’s no risk while learning the platform.
Prerequisites
Before you begin, make sure you have:- A web browser (Chrome, Firefox, Safari, or Brave)
- MetaMask, Coinbase Wallet, or WalletConnect-compatible wallet
- 5 minutes of your time
Step 1: Access the Platform
Navigate to the GweAI landing page and click the Launch App button.- DCA/SIP strategies
- Market analysis
- Portfolio queries
Click the Launch App button in the navigation bar or the Start Investing Now button on the hero section.
Step 2: Connect Your Wallet
GweAI uses Dynamic for advanced wallet authentication with multiple connection options. MetaMask
The most popular Ethereum wallet with browser extension support.
- Click MetaMask in the wallet selector
- Approve the connection in the MetaMask popup
- Sign the authentication message
Coinbase Wallet
Integrated Coinbase smart wallet with seamless UX.
- Click Coinbase in the wallet selector
- Authenticate with your Coinbase account
- Approve the connection
WalletConnect
Connect any mobile wallet via QR code scanning.
- Click WalletConnect in the wallet selector
- Scan the QR code with your mobile wallet
- Approve the connection on your phone
Network Auto-Switch: GweAI automatically configures your wallet to use Base Sepolia testnet.
Step 3: Get Testnet Funds
Before trading, you need testnet USDC to execute transactions.Step 4: Create Your First DCA Strategy
Now let’s create an automated Dollar Cost Averaging strategy using natural language.interface DCAParameters {
amount: number; // USD amount per purchase
token: string; // Target cryptocurrency
frequency: 'daily' | 'weekly' | 'monthly';
duration: number; // Duration in months
startDay?: string; // Optional: specific day for weekly/monthly
}
Step 5: Execute Your First Trade
While DCA runs automatically, you can also execute instant trades using AI commands.interface TradeParams {
type: 'buy' | 'sell' | 'swap';
token: string; // For buy/sell
fromToken?: string; // For swap
toToken?: string; // For swap
amount: number; // USD for buy, token amount for sell
slippage?: number; // Default 0.5%
}
// Transaction executed on Base Sepolia
const txHash = await executeSwap({
tokenInAddress: USDC_ADDRESS,
tokenOutAddress: ETH_ADDRESS,
amountIn: '50',
slippageBps: 50 // 0.5%
});
Step 6: Monitor Your Portfolio
Track your investments and strategy performance in real-time.📊 **Your Portfolio**
| Asset | Balance | USD Value | 24h Change |
|-------|---------|-----------|------------|
| BTC | 0.0234 | $2,340 | +5.2% |
| ETH | 1.256 | $3,456 | +3.1% |
| USDC | 5,432 | $5,432 | 0.0% |
**Total Portfolio Value:** $11,228
Common AI Commands
Here are some popular commands to try:Trading Commands
DCA Commands
Portfolio Commands
Natural Language: The AI understands context and variations. Feel free to ask in your own words!
Advanced Features
Vault Locking
Prevent emotional panic selling by locking assets in a time-locked vault:AI Market Analysis
Get real-time market insights powered by Groq AI:Multi-Token DCA
Create diversified DCA strategies:Troubleshooting
Wallet not connecting
Wallet not connecting
Solutions:
- Refresh the page and try again
- Make sure your wallet extension is unlocked
- Check if you’re on the correct network (Base Sepolia)
- Try a different wallet connector (MetaMask, Coinbase, WalletConnect)
Transaction failing
Transaction failing
Common causes:
- Insufficient USDC balance
- Insufficient ETH for gas fees
- Slippage tolerance too low
- Network congestion
- Check your USDC and ETH balances
- Visit the faucet to get more testnet tokens
- Increase slippage tolerance (try 1-2%)
- Wait a few minutes and retry
AI not understanding commands
AI not understanding commands
Tips for better AI interaction:
- Be specific about amounts and tokens
- Use full token names or standard symbols (BTC, ETH, SOL)
- Include the action verb (buy, sell, swap, create)
- For DCA, specify frequency and duration
Portfolio not updating
Portfolio not updating
Solutions:
- Wait 10-15 seconds for blockchain confirmation
- Refresh your portfolio: ask “Show my portfolio” again
- Check the transaction on Base Sepolia explorer
- Verify your wallet is still connected
What’s Next?
Wallet Connection Deep Dive
Learn advanced Dynamic wallet features and configuration
DCA Strategies
Learn advanced DCA investment strategies
AI Trading Guide
Master AI-powered trading commands
Smart Contracts
Understand the underlying smart contract architecture
Portfolio Tracking
Monitor your investments and track performance
Congratulations! You’ve successfully set up GweAI and executed your first automated crypto investment strategy. 🎉