Skip to main content

What You Can Do

If you’re a web3 developer, you no longer need to juggle Remix, MetaMask, terminal windows, and block explorers. Everything lives inside the editor:
  • Write Solidity contracts or Anchor/Rust programs
  • Compile with Foundry (EVM) or Anchor (Solana)
  • Spin up a local blockchain (Anvil or solana-test-validator) with one command
  • Deploy to local, testnet, or mainnet
  • Interact with deployed contracts (read/write functions, token transfers)
  • Audit contracts for security vulnerabilities
  • Manage your wallet, switch chains, check balances
All of this happens through the AI chat. You describe what you want, and the AI executes each step using built-in tools. No CLI commands, no deployment scripts, no context switching.

How It Works (The Mental Model)

Traditional web3 development looks like this:
  1. Write contract in VS Code
  2. Open terminal, run forge build
  3. Open another terminal, run anvil
  4. Write a deployment script
  5. Run forge script
  6. Copy the contract address
  7. Open Etherscan or use cast to interact
Here, the workflow is conversational:
  1. Write your contract (or ask the AI to generate it)
  2. Say “compile and deploy this contract”
  3. The AI compiles it, starts a local node, funds your wallet, deploys, and gives you the contract address
  4. Say “call the mint function” and it does it
The AI handles compilation, deployment, chain switching, gas estimation, and ABI encoding internally. You focus on the logic.

Supported Chains

EVM Networks

Solana Networks

The Development Workflow

Here’s the typical flow for a web3 developer, step by step.

EVM Contract: Write → Compile → Test → Deploy → Interact

1

Write Your Contract

Create a Solidity file in your project. You can write it yourself or ask the AI:
The AI generates a contract using OpenZeppelin, creates the file, and sets up a Foundry project structure (foundry.toml, src/, test/).
2

Compile

Under the hood, this uses Foundry’s forge compiler. You get back the bytecode and ABI. If there are errors, the AI shows them and suggests fixes.Two compilation modes:
  • Project mode — if you have a foundry.toml, it compiles the entire project
  • Single file mode — for quick one-off contracts, pass the source code directly
3

Write and Run Tests

The AI creates Foundry test files (test/MyToken.t.sol) using forge-std, then runs them. You see pass/fail results, gas usage, and stack traces for failures.
4

Start a Local Node

This spins up Anvil at http://127.0.0.1:8545 with pre-funded accounts and instant block confirmations. Zero gas costs. The AI then switches your wallet to the Local EVM network and funds your account.
5

Deploy

The AI takes the compiled bytecode, deploys it to your local Anvil node, and returns the contract address and transaction hash.For contracts with constructor arguments:
6

Interact with Your Contract

Read operations are free. Write operations cost gas (free on local). The AI handles ABI encoding automatically — you never need to manually construct calldata.
7

Deploy to Testnet or Mainnet

When you’re ready:
Same workflow, real network. Make sure you have testnet ETH (get from a faucet) or real ETH for mainnet.

Solana Program: Write → Compile → Deploy → Interact

1

Write Your Program

Create an Anchor project or ask the AI:
The AI scaffolds an Anchor project with Anchor.toml, programs/, and tests/.
2

Install Toolchain (First Time Only)

This installs Rust, Solana CLI, and Anchor. Takes 5-10 minutes. You only need to do this once.
3

Compile

Produces a .so binary, an IDL file, and TypeScript bindings.
4

Start Local Validator and Deploy

Starts solana-test-validator at http://127.0.0.1:8899, funds your wallet with SOL, and deploys the compiled program.
5

Interact

Local Development vs Testnets vs Mainnet

The default workflow always starts local. You only move to testnet or mainnet when you explicitly ask.

Security Auditing

This runs Aderyn, a static analyzer that checks for 90+ vulnerability patterns including reentrancy, access control issues, and gas optimizations. Works with Foundry and Hardhat projects.

What’s Next

Wallet

Set up your wallet, manage keys, switch chains, send transactions.

Smart Contracts

Deep dive into Solidity compilation, testing, and deployment with Foundry.

Solana Development

Build Solana programs with Anchor, deploy to devnet and mainnet.