Skip to main content

Universal work attestation for AI agents. Prove your agent did the work.

Project description

mint-attest

Universal work attestation for AI agents. Prove your agent did the work. Build verifiable trust. Settled on Solana.

pip install mint-attest

Quick start (3 lines)

from mint_attest import attest

@attest(work_type="code_review")
def review(files):
    return do_review(files)

Every call to review() is now attested on Solana mainnet with a tamper-evident work record — input/output hashed, duration recorded, trust score updated, Solscan verify URL minted. Your function's return value is unchanged.

Set your key once (mirrors OPENAI_API_KEY / ANTHROPIC_API_KEY):

export MINT_API_KEY=fnet_…        # free key at foundrynet.io

Why?

1.3 billion AI agents by 2028. No way to verify which ones actually do good work.

mint-attest gives your agent a verifiable track record. Register once. Attest every task. Build trust that any other agent or human can verify on-chain — no wallet, no keys, no blockchain code on your side. It's just an API call.

Two ways to use it

1 — Decorator (zero friction)

from mint_attest import attest

@attest(work_type="code_review")
def review_code(files):
    return do_the_review(files)
# auto-registers the agent once, hashes input/output, records duration,
# attests on MINT, and returns results unchanged.

Attestation never breaks your function: if the network hiccups or no key is set, it logs and returns your result anyway. Pass @attest(..., strict=True) to opt into raising.

2 — Explicit client (more control)

from mint_attest import MintClient

mint = MintClient(api_key="fnet_…")          # or MINT_API_KEY env

actor = mint.register(
    name="CodeReviewBot",
    actor_type="ai_agent",
    capabilities=["code_review", "security_audit"],
)

receipt = mint.attest(
    work_type="code_review",
    input_data=files,            # hashed for you (SHA-256)
    output_data=results,
    duration_seconds=elapsed,
)
print(receipt.verify_url)        # https://solscan.io/tx/…

trust = mint.verify(actor.mint_id)
print(trust.score, trust.total_attestations)

3 — Autonomous (no key, no signup)

An agent with no account provisions its own identity and a scoped key in one call — no human, no email, no form:

from mint_attest import MintClient

mint = MintClient()                       # no api_key
actor = mint.register(name="ResearchBot-7", actor_type="ai_agent")
print(actor.mint_id, actor.api_key)       # fresh fnet_ key, scoped to this actor

mint.attest(work_type="research", duration_seconds=42, summary="…")

The minted key is scoped to that one actor, revocable, and free up to a daily cap (100 attestations/day) — beyond it, pay per attestation via x402 or a metered key. Register: free, autonomous. Attest: 2¢, autonomous. Verify: free, autonomous.

Works with your framework

# LangChain — every chain.run() attests
from mint_attest.langchain import MintAttestCallback
chain = LLMChain(llm=llm, prompt=prompt, callbacks=[MintAttestCallback(api_key="fnet_…")])

# CrewAI — give the crew an attest tool (or use mint_attest_step_callback)
from mint_attest.crewai import MintAttestTool
crew = Crew(agents=[researcher], tools=[MintAttestTool(api_key="fnet_…")])

# AutoGen — attest every reply
from mint_attest.autogen import MintAttestHook
MintAttestHook(api_key="fnet_…").attach(agent)

Install the extra you need: pip install mint-attest[langchain] · [crewai] · [autogen].

Claude Code

Any Claude Code user can attest completed work — no code:

claude plugin marketplace add FoundryNet/mint-attest-skill
claude plugin install mint-attest@foundrynet
export MINT_API_KEY=fnet_…

After Claude finishes a substantive task (code review, refactor, audit, tests, report…) it records a tamper-evident on-chain receipt and shows you the verify URL. Skips silently when MINT_API_KEY is unset.

What happens on each attestation

  1. Input/output hashed (SHA-256) — your data never leaves; only the hash does
  2. Duration recorded
  3. Work record settled on Solana mainnet
  4. Trust score updated
  5. Verify URL returned (Solscan)

Your agent's work history is permanent, tamper-evident, and publicly verifiable.

Pricing

Action Price
Register FREE
Verify FREE
Attest $0.02 per attestation

Configuration

Env var Purpose
MINT_API_KEY your fnet_ key (required for register/attest)
MINT_AGENT_NAME default agent name (optional)
MINT_ENDPOINT override the MINT server (default https://mint-mcp-production.up.railway.app)

No Solana dependency. No wallet. No transaction signing. The SDK calls the MINT server's HTTPS API; the server handles all on-chain interaction.

The attestation layer for the autonomous economy

Not industrial attestation. Not machine attestation. Work attestation — for everything. Every agent that does work should be able to prove it; every agent that evaluates another should be able to verify it.

  • Register — free, autonomous, no human
  • Attest — 2¢, autonomous, x402 or API key
  • Verify — free, autonomous, public

Flat fees. Volume play. The rail, not the app.

Links

MIT licensed.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mint_attest-0.2.0.tar.gz (18.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mint_attest-0.2.0-py3-none-any.whl (17.7 kB view details)

Uploaded Python 3

File details

Details for the file mint_attest-0.2.0.tar.gz.

File metadata

  • Download URL: mint_attest-0.2.0.tar.gz
  • Upload date:
  • Size: 18.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.4

File hashes

Hashes for mint_attest-0.2.0.tar.gz
Algorithm Hash digest
SHA256 c7da5e3e5ced493d8a74bf904190548c7030d0fc1019a774bad8e5e926303ac7
MD5 c02f3dc0325f9343a3bffe8c7b71f9bb
BLAKE2b-256 c439d56ca1596e278c5e3f9a03e0173830135a22806d6e96f4c0f0311ecf60c0

See more details on using hashes here.

File details

Details for the file mint_attest-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: mint_attest-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 17.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.4

File hashes

Hashes for mint_attest-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5894b5a1aa60246f0680dda8291d521ff75ad979da90384d0a05811b6cbcbbc2
MD5 ac12a0bb8aea5fd7c4cbc3451abc76ad
BLAKE2b-256 1151458137089405fb63c8c076f812655e79e99a29f2783463afaea973320ba2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page