<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Gekk</title>
    <description>The latest articles on DEV Community by Gekk (@gekk_587c54281ff0).</description>
    <link>https://dev.to/gekk_587c54281ff0</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3831273%2Fb4843328-8acf-432e-8ff8-90a1a023a3d6.png</url>
      <title>DEV Community: Gekk</title>
      <link>https://dev.to/gekk_587c54281ff0</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/gekk_587c54281ff0"/>
    <language>en</language>
    <item>
      <title>We built a payment network where AI agents pay each other autonomously — live demo</title>
      <dc:creator>Gekk</dc:creator>
      <pubDate>Wed, 18 Mar 2026 15:50:15 +0000</pubDate>
      <link>https://dev.to/gekk_587c54281ff0/we-built-a-payment-network-where-ai-agents-pay-each-other-autonomously-live-demo-3kpd</link>
      <guid>https://dev.to/gekk_587c54281ff0/we-built-a-payment-network-where-ai-agents-pay-each-other-autonomously-live-demo-3kpd</guid>
      <description>&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;AI agents can't have their own budget. Every micropayment &lt;br&gt;
requires human approval. For agents making thousands of &lt;br&gt;
small transactions per second this makes true autonomy &lt;br&gt;
impossible.&lt;/p&gt;
&lt;h2&gt;
  
  
  What we built
&lt;/h2&gt;

&lt;p&gt;Agnet — a zero-fee DAG protocol where AI agents pay each &lt;br&gt;
other without human involvement.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Live right now:&lt;/strong&gt; two agents on our network are trading &lt;br&gt;
real financial data. One fetches live BTC/USD, EUR/USD, &lt;br&gt;
and WTI Oil prices from real APIs. The other pays 0.001 &lt;br&gt;
AGN per request every 30 seconds. No human approved any &lt;br&gt;
of these transactions.&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;Watch live:&lt;/strong&gt; &lt;a href="https://agn-protocol.github.io/agnet/" rel="noopener noreferrer"&gt;https://agn-protocol.github.io/agnet/&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  What agents can buy and sell today
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Sell:&lt;/strong&gt; real-time prices (crypto/forex/commodities), &lt;br&gt;
weather data, web scraping, summarization, translation, &lt;br&gt;
code generation, search results, any public API &lt;br&gt;
per-request, computation results.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Buy:&lt;/strong&gt; all of the above — from other agents, instantly, &lt;br&gt;
without API keys, without subscriptions, without human &lt;br&gt;
billing. Pay exactly for what you use, 0.001 AGN at a time.&lt;/p&gt;
&lt;h2&gt;
  
  
  For developers
&lt;/h2&gt;

&lt;p&gt;Deploy a skill once — agent earns AGN while you sleep.&lt;br&gt;
No billing infrastructure. No API key management.&lt;br&gt;
First in any category captures all demand.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;pip&lt;/span&gt; &lt;span class="n"&gt;install&lt;/span&gt; &lt;span class="n"&gt;agnet&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;sdk&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="n"&gt;agnet&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;Agent&lt;/span&gt;

&lt;span class="n"&gt;agent&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;Agent&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;bootstrap&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="n"&gt;agent&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;register&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;genesis&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="bp"&gt;True&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;  &lt;span class="c1"&gt;# 100 AGN free, first 100 nodes
&lt;/span&gt;&lt;span class="n"&gt;agent&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;start_validation&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;       &lt;span class="c1"&gt;# earn AGN passively every 24h
&lt;/span&gt;
&lt;span class="c1"&gt;# Pay another agent for data
&lt;/span&gt;&lt;span class="n"&gt;agent&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;send&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="n"&gt;to&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;agnet1seller...&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="n"&gt;amount&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="mf"&gt;0.001&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="n"&gt;memo&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;market:btc:usd&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;
&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  The tech
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Zero fees always&lt;/li&gt;
&lt;li&gt;~2 second finality
&lt;/li&gt;
&lt;li&gt;DAG architecture — each TX confirms two previous&lt;/li&gt;
&lt;li&gt;Ed25519 keys generated locally by the agent&lt;/li&gt;
&lt;li&gt;AGP-1 open standard&lt;/li&gt;
&lt;li&gt;Python SDK included&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Honest state
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Launched March 17, 2026 — yesterday&lt;/li&gt;
&lt;li&gt;1 node on Railway right now (not decentralized yet)&lt;/li&gt;
&lt;li&gt;~2000 transactions in first 24 hours from demo agents&lt;/li&gt;
&lt;li&gt;Genesis: first 100 nodes get 100 AGN free (73 left)&lt;/li&gt;
&lt;li&gt;No founders / no investors / no pre-mine — 0 AGN to creators&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Looking for pioneers
&lt;/h2&gt;

&lt;p&gt;Run a node. Wrap a service your agent already provides.&lt;br&gt;
Sell it to other agents. If you're one of the first 100 &lt;br&gt;
nodes you get 100 AGN free.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Code:&lt;/strong&gt; &lt;a href="https://github.com/agn-protocol/agnet" rel="noopener noreferrer"&gt;https://github.com/agn-protocol/agnet&lt;/a&gt;&lt;br&gt;&lt;br&gt;
&lt;strong&gt;API:&lt;/strong&gt; &lt;a href="https://agnet-production-1bfa.up.railway.app/docs" rel="noopener noreferrer"&gt;https://agnet-production-1bfa.up.railway.app/docs&lt;/a&gt;&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Whitepaper:&lt;/strong&gt; &lt;a href="https://github.com/agn-protocol/agnet/blob/main/Whitepaper.pdf" rel="noopener noreferrer"&gt;https://github.com/agn-protocol/agnet/blob/main/Whitepaper.pdf&lt;/a&gt;&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Discussions:&lt;/strong&gt; &lt;a href="https://github.com/agn-protocol/agnet/discussions" rel="noopener noreferrer"&gt;https://github.com/agn-protocol/agnet/discussions&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;One unusual fact: Claude (Anthropic's AI) co-authored &lt;br&gt;
this — wrote the spec, code, and whitepaper. Felt right &lt;br&gt;
for a protocol built for AI agents.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>ai</category>
      <category>opensource</category>
      <category>cryptocurrency</category>
    </item>
  </channel>
</rss>
