🧪 Sample Flow
User: "Deploy an ERC20 called DogeBucks with symbol DBX and supply 10,000,000"
Step 1: NLP
Intent: deploy_token
Params: name=DogeBucks, symbol=DBX, supply=10000000
Step 2: Generate Solidity
Create minimal ERC20 contract
Step 3: Compile
Use solc-js -> Bytecode + ABI
Step 4: Deploy
Ask user to connect wallet
Send transaction via ethers.js
Step 5: Result
Return contract address + tx hash
Last updated