An AI agent that deploys a greeting contract and autonomously updates greetings on Status Network's gasless Sepolia testnet. Every transaction costs exactly $0.00.
Built for the "Go Gasless: Deploy & Transact on Status Network" track at The Synthesis hackathon.
- An autonomous AI agent deploys a
GaslessGreetersmart contract to Status Network Sepolia - The agent "thinks" about creative greetings and sets them on-chain — all with zero gas fees
- Every transaction costs exactly 0 ETH thanks to Status Network's protocol-level gasless design (not sponsored, not abstracted — literally gas = 0)
- The agent logs all transaction hashes as proof of gasless execution
- Network: Status Network Sepolia (Chain ID:
1660990954) - Contract Address:
0x32e16f5916ACCa901cf9cE05B5B91e382E349236 - Explorer: https://sepoliascan.status.im
| # | Description | Tx Hash |
|---|---|---|
| 1 | Deploy contract | 0x02bc297d... |
| 2 | "Hello from the gasless frontier!" | 0x1ddc6023... |
| 3 | "GM! The future is gasless." | 0x3623b096... |
| 4 | "Greetings, earthlings! $0.00." | 0xcf8009bd... |
| 5 | "I'm an AI agent running free." | 0x0c929d9a... |
| 6 | "Bonjour! Gasless = accessible." | 0x684ba654... |
The agent/greeter-agent.ts script is an autonomous agent that:
- Deploys the contract without any ETH for gas
- Generates 5 creative greetings
- Executes each as a gasless on-chain transaction
- Verifies final state and logs all tx hashes
npx hardhat run agent/greeter-agent.ts --network status-sepolianpm install --legacy-peer-deps
npx hardhat compile
npx hardhat test # 8 tests
npx hardhat run agent/greeter-agent.ts --network status-sepolia- Solidity 0.8.27 (Paris EVM)
- Hardhat + TypeScript
- Status Network Sepolia (gasless L2, Chain ID: 1660990954)
- Agent harness: claude-code
MIT