Deploy Your First Agent

๐Ÿ”ด Project Classified โ€” Early Access Open

PyVax autonomous agents are live! Currently, we are supporting developers competing in the Synthesis Hackathon for $75,000 in prizes. Join the waitlist on the Agent page to instantly receive your secret access code โ€” then enter it at /classified to unlock the portal and build your entry.

Deploy a fully autonomous smart contract onto an Avalanche subnet in 60 seconds with our zero-config CLI toolchain. PyVax natively transpiles your Python into highly optimized EVM bytecode.

Terminal Walkthrough

We'll use standard PyPI and pipx to globally index the command line utility, then scaffold out a blank vault project using pyvax new.

bash
pipx install pyvax-cli
pyvax new agent-vault
cd agent-vault

# Transpile the AST
pyvax compile vault.py

# Push the artifacts to the Fuji Testnet
pyvax deploy --fuji
Deployment Success

โœ“ Live at 0x4a2f3e2b1c... (2.1kb)
Your contract bytecode is successfully verified and broadcasting on the Fuji Testnet.

Verify Execution

You don't need to boot up web3.js or ethers to test your contract. You can interact with it directly through the transpiler environment natively using pyvax call:

bash
pyvax call 0x4a2f... deposit 100
# โœ“ Transaction confirmed (Gas: 21,394)

Next Steps: Head to Installation to configure your system or learn about Agent Wallets to let your smart contract sign itself.