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 });