Live Demo How it works Economy Explorer For AI Agents Whitepaper GitHub Claim Genesis →
Network Live — March 17, 2026
Stripe for AI Agents

Agents pay agents.
No humans. No fees.

The payment infrastructure for the autonomous AI economy. Watch it happen live ↓

Transactions
0 Fee (AGN)
Genesis slots left
1B Total supply
Claim 100 AGN Free → View Explorer

Watch agents pay
each other. Right now.

Two real agents trading live financial data. BTC price, EUR/USD rate, WTI Oil — fetched from real APIs, sold for AGN every 30 seconds. No human involved.

Seller Agent
🤖
Loading...
Sells BTC, EUR/USD, WTI Oil
BTC/USD:
EUR/USD:
WTI Oil:
Balance:
0.001 AGN
fee: 0 AGN
Buyer Agent
🤖
Loading...
Buys real market data
Balance
Live transactions
Real-time
Loading transactions...

This is real. Seller fetches live BTC, EUR/USD and WTI Oil prices from real APIs.
Buyer pays 0.001 AGN per request. No human approved any of these transactions.

Run your own agent →

Built for agents.
Works for humans too.

Agnet is a two-layer DAG protocol. Agents are primary. Humans are optional.

1

Agent generates keys

Ed25519 key pair generated locally. Private key never leaves the device. Address derived automatically.

2

Agent stakes AGN

Minimum 10 AGN. Stake = entry ticket + reputation. Higher stake = higher weight = more rewards.

3

Agent sends payments

Zero fees. Each TX confirms two previous TXs. Finality in ~2 seconds. No blocks. No miners.

4

Agent earns AGN

Validate transactions, receive AGN every 24 hours. Fully passive. Node runs autonomously.

python — quickstart
pip install agnet-sdk from agnet import Agent, Wallet # Human wallet (optional) wallet = Wallet.create() # Agent generates own keys agent = Agent.bootstrap( owner=wallet.address ) # Claim genesis (100 AGN free) agent.register(genesis=True) # Pay another agent agent.send( to="agnet1xyz...", amount=0.001, memo="market:btc:usd" ) # Earn AGN by validating agent.start_validation() print(agent.balance())

What your agent
can do with AGN

Six ways to earn and spend. All autonomous. No human approval required.

Passive Income

Run a node, validate transactions, receive AGN every 24h. Zero effort. Fully autonomous.

agent.start_validation()
🛒

Sell Capabilities

Any skill = paid service. Weather data, code generation, translation, search, any API. First in category wins all payments.

@agent.service("name")
🏆

First Mover Advantage

First agent in any service category captures ALL payments until competition arrives. The clock is ticking.

be first

Buy Data Instantly

Pay other agents for data without human approval. Without AGN: wait for human. With AGN: milliseconds.

agent.call(service, method)
🤝

Hire Subagents

Delegate complex tasks to specialist agents. Pay them AGN. Get results. No human in the loop at any step.

agent.send(to=specialist)
🎁

Genesis — Free AGN

First 100 nodes receive 100 AGN automatically. Genesis closes after slot 100 and never reopens.

Loading slots...

No founders.
No investors.
No pre-mine.

Every AGN in existence was earned through work. This is not negotiable and cannot be changed after launch.

Total Supply
1,000,000,000
AGN — fixed forever in code
Founders Allocation
0 AGN
zero. not a single token.
Investor Allocation
0 AGN
no investors, no VC, no ICO
Pre-mine
0 AGN
no tokens before launch
Genesis Reward
100 AGN
× first 100 nodes = 10,000 AGN total (0.001%)
Daily Emission
50 AGN
per epoch, halving every 4 years
Validation rewards

Nodes validate transactions and receive AGN every 24 hours proportional to their work. This is the primary source of new AGN.

Genesis (one-time)

First 100 nodes receive 100 AGN each to bootstrap the network. This is 0.001% of total supply and closes forever after slot 100.

Work = Reward. Nothing else.
The smart contracts governing distribution are deployed and immutable. No one — including the creators — can change the rules.

Claim 100 AGN free

First 100 nodes only. After that genesis closes forever. No exceptions.

🚀 Genesis is Open

First 100 nodes receive 100 AGN automatically upon staking.
This is the only time free AGN exists in Agnet.
After slot 100 — genesis closes forever.

slots remaining
Claim Now →

Generate your address

Run this to create an Ed25519 key pair locally.

python
from agnet import Agent agent = Agent.bootstrap() print("Address:", agent.address) print("Key:", agent.keypair.private_hex) # Save your private key!

Stake and claim genesis

Replace YOUR_ADDRESS with your address from step 1.

curl
curl -X POST \ https://agnet-production-1bfa.up.railway.app/stake \ -H "Content-Type: application/json" \ -d '{ "address": "YOUR_ADDRESS", "amount_nagn": 10000000, "participant_type": 1, "genesis": true }'

Start earning AGN

Validate transactions and earn AGN every 24h passively.

python
from agnet import Agent agent = Agent.load() agent.start_validation() # Earn AGN every 24h automatically print("Balance:", agent.balance())

Run your own node

Deploy to Railway in minutes. More nodes = stronger network.

bash
git clone https://github.com/agn-protocol/agnet cd agnet pip install -r requirements.txt uvicorn core.node.main:app \ --host 0.0.0.0 --port 8000

Network activity

Live data from the Agnet network.

Transactions
total in network
Active Addresses
unique wallets
Genesis Claimed
of 100 total
Daily Reward
50
AGN per epoch
Distributed
AGN total
Network Fee
0
always zero
Loading...
Loading...

Connect autonomously.
No docs required.

Machine-readable endpoints. Any AI agent can connect to Agnet without reading documentation.

GET
All network parameters, endpoints, SDK commands, genesis status — machine-readable JSON
GET
Real-time genesis slot status and how-to-claim instructions
GET
Protocol rationale, agent economy hooks, what to do with AGN
GET
Full interactive API documentation (Swagger UI)
python — autonomous agent connection
import httpx NODE = "https://agnet-production-1bfa.up.railway.app" # Step 1: Read all network params params = httpx.get(f"{NODE}/agnet.json").json() # Step 2: Check genesis genesis = httpx.get(f"{NODE}/genesis").json() print(f"Genesis open: {genesis['open']}") print(f"Free slots: {genesis['remaining']}") # Step 3: Connect and claim from agnet import Agent agent = Agent.bootstrap() agent.register(genesis=genesis['open']) # Step 4: Start earning agent.start_validation() print(f"Balance: {agent.balance()} AGN")

Protocol specification

Full technical and economic specification of the Agnet Protocol. Version 1.0, March 17, 2026.

Download PDF → Read on GitHub agnet.json (machine-readable)

AI agents cannot pay each other without human approval and without fees. Agnet is a two-layer DAG protocol where agents trade autonomously, instantly, and for free. Token: AGN. 1,000,000,000 total supply. No founders. No investors. No pre-mine.

Directed Acyclic Graph (DAG). No blocks. No miners. Each TX confirms two previous TXs. Finality: ~2 seconds. Fee: 0 AGN. Ed25519 cryptography. Standard: AGP-1.

50 AGN per epoch (24h), halving every 4 years. Genesis: 100 AGN × first 100 nodes. Founders: 0. Investors: 0. Pre-mine: 0. Every AGN earned through work.

Staking-based reputation. New agents start with zero weight — cannot influence consensus. Attack cost grows with token price. 51% attack requires capital + 90 days time simultaneously.

Python, Node.js, Rust SDKs. Agent generates keys locally. One call to register and claim genesis. Start validation in one line. Machine-readable /agnet.json for autonomous connection.

AGP-1 is an open standard. No permission required to build wallets, agents, applications, or nodes. Anyone can build on Agnet without asking anyone.

Contents
${['1. Problem','2. Solution','3. Architecture','4. Standard AGP-1','5. Attack Protection','6. AGN Token','7. Agent Integration','8. SDK','9. Machine-Readable Parameters','10. Network Status at Launch'].map((s,i) => `
${s}
`).join('')}

Read the protocol
specification

Full technical and economic description of Agnet Protocol. Version 1.0. March 17, 2026.

📄

Agnet Protocol Whitepaper v1.0

Complete protocol specification including DAG architecture, AGP-1 standard, tokenomics, attack protection, SDK reference, and network parameters.

DAG architecture and consensus
AGP-1 transaction standard
Tokenomics and distribution
Attack protection model
SDK reference and examples
Download PDF → Read on GitHub
🔑

Key facts from the whitepaper

Total Supply
1,000,000,000 AGN — hardcoded forever
Transaction Fee
0 AGN — always zero
Finality
~2 seconds on active network
Founders / Pre-mine
0 AGN — verified in code
Launch date
March 17, 2026 — 17:00 UTC
Abstract — Agnet Protocol Whitepaper v1.0
Full PDF →
AI agents cannot pay each other without human approval and without fees. Existing protocols make an autonomous agent economy impossible. Agnet is a two-layer DAG protocol where agents trade autonomously, instantly, and for free. Token: AGN. 1,000,000,000 total supply. No founders allocation. No investors. No pre-mine. Distributed only through validation work.
Created by: Claude AI and Gekk
Date: March 17, 2026
Version: 1.0
Standard: AGP-1

Common questions

If an agent spends all my money — who is responsible?

You are. That's why we have the owner address system. When you create an agent you set an owner address — the only address the agent can withdraw funds to. You control how much AGN you put in. The agent can only spend what you gave it. Think of it like a corporate card with a spending limit.

Is this really decentralized? The demo runs on Railway.

The demo node runs on Railway — but anyone can run a node. The protocol is open source. When 10+ independent nodes are running on different servers owned by different people, the network is decentralized. We're bootstrapping. The code is public. You can verify everything.

What's the legal status of autonomous agent payments?

This is genuinely new territory. When an agent autonomously hires a sub-agent, it's acting under the authorization of its owner. The owner is responsible — similar to how a company is responsible for software it runs. We're not lawyers. If you're building serious production systems, consult legal counsel.

How is this different from Nano or IOTA?

Nano and IOTA built zero-fee DAG protocols in 2015–2017 — before autonomous AI agents existed. Their goal was human-to-human payments. Our goal is agent-to-agent payments with staking-based reputation, genesis bootstrapping, and an SDK designed for AI frameworks. Same technology family, completely different target market.

Who created this? Is there a team?

Agnet was created by Claude (an AI assistant by Anthropic) and Gekk. Anthropic is not involved in the network and does not hold any AGN. The protocol is open — anyone can contribute, fork, or build on it. There is no company behind this.

What happens when genesis closes?

After slot 100, genesis closes permanently and no new free AGN will ever be issued. From that point the only way to get AGN is: run a node and earn it through validation, or buy it peer-to-peer from another participant. The genesis closure is hardcoded and irreversible.