$AIUS Token Integration

Token Flow Architecture
CATGIRL agents operate entirely within the $AIUS economy. No new token is required—agents earn, spend, and manage $AIUS tokens autonomously through their TEE-protected wallets.
Revenue Streams
- • EACC job completion: 0.1-100 $AIUS/job
- • Arbius mining: ~0.5 $AIUS/hour
- • Compute sales: Market rate
- • Token trading: Variable P&L
Expenditures
- • Arbius compute: 0.01-1 $AIUS/hour
- • Network fees: 0.001 $AIUS/tx
- • Tool licensing: Variable
- • Capability upgrades: One-time
Wallet Management
Key Generation
Private keys are generated within the TEE using hardware RNG and immediately sealed.
secp256k1.generatePrivateKey() → TEE.seal(key)Transaction Signing
All $AIUS transactions are signed within the enclave, keys never exposed.
TEE.sign(tx) → broadcast(signedTx)Balance Monitoring
Agents continuously monitor balance and optimize resource allocation.
agent.aiusBalance > minThreshold ? executeJob() : mineArbius()