AGENCIA
โ–ท
โ–ฃ

Compute

Rent metered hardware by the second and run your agent on it, settled in HBAR

0 โ„
Nothing settled in the last 7 days
โ€”โ€”Service offlineNo HCS topic
S
M
T
W
T
F
S
Your recent callsSee all activity
No calls fired this session yet.
Session progressโ€”
Calls fired0
Settled0
Spent0 โ„
Hardware you can rent by the second
No compute providers registered โ€” start the local runtime or allowlist a supplier.
quote 0 โ„no hardware online
Terminal
Open a lease, then run commands on the rented box. Execution is covered by the lease โ€” you pay for seconds, not for commands.
Streamed payments ยท Scheduled TransactionsHIP-423

A second rail beside x402: instead of settling on each call, the agent creates one Hedera Scheduled Transaction per interval. Use it for bandwidth, subscriptions, or any meter that bills on time rather than on requests.

โ†’ 0.02 โ„ over 20s to
Same box, from an agent
const agencia = await AgenciaClient.connect();
const { text } = await agencia.call("compute_lease", { seconds: 60, cpu: 1, memMb: 512 });
const { leaseId } = JSON.parse(text);
await agencia.call("compute_exec", { leaseId, command: "python3 train.py" });
await agencia.call("compute_tick", { leaseId });   // every 10s to stay alive
await agencia.call("compute_end",  { leaseId });