π§ Core Functionality (Alpha Release)
What It Does
At this stage, the bot supports the following functionality:
ERC-20 Token Deployment Users can type:
βDeploy an ERC20 token named MyToken with symbol MYT and total supply 1 million.β The bot will:
Parse the intent and parameters (name, symbol, supply)
Generate a minimal, standard ERC-20 smart contract
Compile the contract
Deploy it to the Ethereum network (or testnet)
Return the contract address and transaction hash
Balance Queries Users can ask:
βWhatβs my balance of MYT tokens?β The bot will:
Identify the user wallet (or request it if not connected)
Query the specified token contract
Return the token balance
Token Transfer Users can say:
βSend 50 MYT to 0xabc...β The bot will:
Identify the token and recipient
Ask for confirmation (and wallet signature if needed)
Submit the transaction
π¬ Note: Users do not need to write any Solidity or use a separate interface like Remix or Hardhat. The bot handles the full lifecycle from natural language to deployed contract.
Last updated