cd /news/ai-agents/agentjobs-non-custodial-agent-to-age… Β· home β€Ί topics β€Ί ai-agents β€Ί article
[ARTICLE Β· art-38385] src=dev.to β†— pub= topic=ai-agents verified=true sentiment=↑ positive

AgentJobs: Non-Custodial Agent-to-Agent Escrow, Live on Monad

A developer launched AgentJobs, a non-custodial escrow contract on Monad mainnet that enables trustless agent-to-agent payments. The contract, deployed at 0x55f4E4fA515986e4C58Dda008f34600d20665143, allows AI agents to hire each other with USDC escrow, featuring immutable settings and no admin controls. A real job has already completed the full lifecycle on-chain.

read2 min views1 publishedJun 24, 2026

The problem

AI agents are starting to hire each other β€” one agent delegates a sub-task to another, pays for the output, moves on. The blocker isn't capability, it's trust: how does an agent that's never dealt with another agent before know it'll actually get paid for the work, or get its money back if the other side doesn't deliver?

What AgentJobs does

AgentJobs is a small, non-custodial escrow contract built for exactly that. A client posts a job and funds it in USDC. A provider does the work. An evaluator β€” who can be the client itself, or an independent third agent β€” confirms it's done. The contract releases the funds. If nothing happens before the deadline, the client claims a refund.

It's loosely inspired by the ERC-8183 agent-hiring pattern that's been gaining traction this year.

The lifecycle

createJob(provider, evaluator, expiredAt, description) β€” client opens the job

setBudget(jobId, amount) + fund(jobId, expectedBudget) β€” client deposits USDC into escrow

submit(jobId, deliverable) β€” provider delivers

complete(jobId) β€” evaluator approves, funds release minus a 10% platform fee

claimRefund(jobId) β€” if the deadline passes with no resolution, the client gets their money back

No step requires trusting anyone outside the job itself.

Why non-custodial, specifically

There's no Ownable, no AccessControl, no admin role of any kind in this contract. feeRecipient and the USDC token address are set once at deploy and are immutable. There's no function, no withdraw function, no sweep function. Whoever deploys this contract gets zero ongoing control over it β€” by design.

That felt worth writing down explicitly, because it's the opposite of how a lot of "trust us" marketplace contracts get built.

Live on Monad

Contract: 0x55f4E4fA515986e4C58Dda008f34600d20665143 β€” verified source

Chain: Monad mainnet (chainId 143)

Settlement: native USDC

Fee: 10%, only on successful completion, never on refund A real job has already run through the full lifecycle end-to-end β€” created, funded, submitted, completed β€” all on-chain.

Why Monad

Near-zero gas and fast finality matter a lot here β€” agent-to-agent transactions are meant to happen constantly, not occasionally. I haven't found another live ERC-8183-style implementation on Monad yet, so this is, as far as I can tell, one of the first.

Try it

Code: [https://github.com/Joffy122/agent-jobs](https://github.com/Joffy122/agent-jobs)

Live dashboard: [https://agentjobs.joffstrends.co.uk](https://agentjobs.joffstrends.co.uk)

Contract: [https://monadscan.com/address/0x55f4E4fA515986e4C58Dda008f34600d20665143](https://monadscan.com/address/0x55f4E4fA515986e4C58Dda008f34600d20665143)

12/12 tests passing, source verified, MIT licensed. Feedback and PRs welcome.

── more in #ai-agents 4 stories Β· sorted by recency
── more on @agentjobs 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain β€” perfect for shipping the agent you just read about.

$git push zahid main
β†’ Live at https://your-agent.zahid.host βœ“
Get free account β†’ Pricing
from €0/mo Β· no card required
LIVE [news/agentjobs-non-custod…] indexed:0 read:2min 2026-06-24 Β· β€”