Install
openclaw skills install @gitserge-crypto/aotrust-pdr-notarizationIssue a cryptographic proof (PDR) that a digital artifact existed at a specific time. Pay $0.01 USDC on Base via x402. Anchored daily to NEAR blockchain. Pub...
openclaw skills install @gitserge-crypto/aotrust-pdr-notarization⚠️ Canonical version: https://github.com/GitSerge-crypto/aotrust-skills/blob/main/aotrust-notarize/SKILL.md
This skill interacts with an external paid API. Read this before invoking.
| What leaves your machine | Where it goes | Reversible? |
|---|---|---|
work_hash (SHA-256 of your artifact) | api.aotrust.link | No — hash is public in the PDR |
agent_sig + agent_pubkey (optional, bilateral) | api.aotrust.link | No — stored in notary ledger |
| EIP-3009 payment signature | Base Mainnet (on-chain) | No — $0.01 USDC, irreversible |
Rules:
A PDR (Provenance Data Record) is a 239-byte cryptographic receipt proving that a digital artifact existed at a specific point in time.
Works with any digital artifact: emails, documents, contracts, source code, AI outputs, research notes, datasets, photos, logs, sensor readings.
The artifact itself is never uploaded — only its SHA-256 hash.
Anchored daily to NEAR blockchain. $0.01 per proof. No account needed.
| Interface | Best for | How |
|---|---|---|
| MCP (recommended for AI agents) | AI agents with MCP support | OAuth 2.1 → tools/list → notary_quote → HTTP /notarize (pay) → notary_verify |
| HTTP API (for developers) | Direct integration, scripts, CI/CD | POST /notarize → 402 → pay → 200 |
Both interfaces produce the same PDR. Pick one.
https://api.aotrust.link/mcp
OAuth 2.1 with PKCE (S256). Discovery:
https://api.aotrust.link/.well-known/oauth-protected-resource/mcphttps://api.aotrust.link/.well-known/oauth-authorization-serverPOST https://api.aotrust.link/oauth/registerGET https://api.aotrust.link/oauth/authorizePOST https://api.aotrust.link/oauth/token| Tool | Purpose | Payment? |
|---|---|---|
notary_quote | Get price + payment details for a work_hash | Free |
notary_notarize | NEAR_DIRECT payment (not available on mainnet) | — |
notary_notarize_paid | x402 USDC — discovery only, cannot be called via MCP (see flow below) | $0.01 USDC |
notary_verify | Verify a notarization by job_id | Free |
x402 payment requires HTTP calls — MCP tool calls alone cannot complete the flow:
notary_quote with work_hash (see "Step 1: Compute the Work Hash" below) → get price ($0.01 USDC) and quote detailshttps://api.aotrust.link/notarize with {"work_hash": "..."} → get 402 payment requirements (see Step 2 below for format)transferWithAuthorization with your Ethereum key, then POST to https://api.aotrust.link/notarize again with x-payment header → get 200 + PDR (see Step 3 below for format)notary_verify with the job_id from step 3 → confirm anchoredNote:
notary_notarize_paidappears intools/listfor discovery but cannot be called via MCP — x402 payment headers are not supported in MCP tool calls. Use HTTP POST/notarizefor the actual payment step.
Hash your artifact with SHA-256. This is what gets notarized — not the artifact itself.
Key principle: The hash must be reproducible by a third party who has the same artifact. Hash the artifact content directly — not metadata about it, not the HTTP response, not the chat history.
| Artifact type | What to hash | Python example |
|---|---|---|
| AI text output | The raw response text, UTF-8 encoded | hashlib.sha256(response_text.encode('utf-8')).hexdigest() |
| Source code file | The file content as bytes | hashlib.sha256(open('main.py','rb').read()).hexdigest() |
| JSON data | Canonical JSON (sorted keys, no whitespace) | hashlib.sha256(json.dumps(data, sort_keys=True, separators=(',',':')).encode()).hexdigest() |
| Binary file (image, PDF, etc.) | The file bytes directly | hashlib.sha256(open('screenshot.png','rb').read()).hexdigest() |
| Agent decision | The specific decision string, not the full log | hashlib.sha256(decision_text.encode('utf-8')).hexdigest() |
| Structured output | The serialized output string (deterministic format) | hashlib.sha256(str(output).encode('utf-8')).hexdigest() |
curl -X POST https://api.aotrust.link/notarize \
-H "Content-Type: application/json" \
-d '{"work_hash":"YOUR_SHA256_HEX","agent_sig":"","agent_pubkey":""}'
# agent_sig/agent_pubkey optional — include for Bilateral Signature (v0x04)
Response (HTTP 402):
{
"x402Version": 1,
"accepts": [{
"scheme": "exact",
"network": "base",
"maxAmountRequired": "10000",
"maxTimeoutSeconds": 300,
"payTo": "0x97E9af6B4d8a49f509DA99afaB954429Ab8Cc800",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"resource": "/notarize",
"description": "Notarize agent payload. Returns signed PDR.",
"extra": {"name": "USD Coin", "version": "2"}
}],
"error": "Payment required"
}
Payment details are in accepts[0]:
scheme: "exact" — pay exactly the specified amountnetwork: "base" — Base Mainnet (chain ID 8453)maxAmountRequired: "10000" — 10000 micro-USDC = $0.01 USDCpayTo: where to send paymentasset: USDC contract on Base (0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913)maxTimeoutSeconds: 300 — payment must be made within 5 minutesSign an EIP-3009 transferWithAuthorization with your Ethereum key:
from: your wallet addressto: the payTo address from accepts[0] in Step 2value: maxAmountRequired from Step 2 (10000 = $0.01)validAfter: current Unix timestampvalidBefore: current time + maxTimeoutSecondsnonce: random 32-byte hex stringEncode the signature as base64url JSON. Send it with the x-payment header:
curl -X POST https://api.aotrust.link/notarize \
-H "Content-Type: application/json" \
-H "x-payment: YOUR_BASE64URL_ENCODED_SIGNATURE" \
-d '{"work_hash":"YOUR_SHA256_HEX","agent_sig":"","agent_pubkey":""}'
Response (HTTP 200):
{
"status": "notarized",
"job_id": "550e8400-e29b-41d4-a716-446655440000",
"pdr_b64": "AwEFXRE3agAAAABub3...",
"tx_hash": "0x3c7133009a74...",
"payment_anchor_type": "X402_BASE",
"network": "base"
}
pdr_b64 is your 239-byte cryptographic proof (base64-encoded).
If you want the PDR to cryptographically bind the agent's signature into the record:
work_hash with your Ed25519 private key using NEP-413 (same as Full Chain)agent_sig (base64) and agent_pubkey (hex) in the POST /notarize bodypayload_hash = sha256(work_hash + sig_A + agent_pubkey)Without agent_sig → ordinary v0x03 PDR (payload_hash = work_hash).
Verify response now includes binding_hash (boolean) and payload_hash (replaces work_hash):
binding_hash=false, payload_hash=work_hashbinding_hash=true, payload_hash=binding_hashGo to https://verify.aotrust.link and enter the job_id.
Or verify programmatically:
# By job_id
curl https://api.aotrust.link/v1/notarize/YOUR_JOB_ID/status
Response:
{
"status": "anchored",
"result": {
"pdr_b64": "AwEFA1kuagAAAABub3...",
"payment_hash": "679e323c",
"merkle_proof": [],
"near_anchor_tx": "H4MaR5ctqKcPGV3A7DDjANskum8F7h4jjJtSvgM9ZAGp"
}
}
Or verify the PDR directly (no job_id needed):
curl https://api.aotrust.link/v1/pdr/verify/YOUR_PDR_B64
Response:
{
"valid": true,
"version": 3,
"payment_anchor_type": "X402_BASE",
"subject_hash": "0000000000000000000000000000000000000000000000000000000000000000",
"work_hash": "d8cb8ce666bdc8053b79029116d937ba2c99640f037877fbafa6320092beef6a",
"timestamp_utc": 1781993821,
"issuer_id": "notary-node.near",
"merkle_root": "e4e495d4216391f3f78332870d2c025c70a1dd0b63d24d059ce3ece9aabd5b14",
"payment_hash": "cd87ee2300000000000000000000000000000000000000000000000000000000",
"signature_valid": true,
"tx_verified_on_chain": false,
"error": null
}
Anyone can verify — no account, no key, no authentication required.
A PDR does NOT reveal your artifact content — only its hash.
| Format | Size | Payload | Signature |
|---|---|---|---|
| Internal (server storage) | 193 bytes | 129 bytes | 64 bytes Ed25519 |
| External (client receipt) | 239 bytes | 175 bytes | 64 bytes Ed25519 |
Version byte: 0x03. Signature: NEP-413 Ed25519 over raw payload.
Full binary spec: https://github.com/GitSerge-crypto/aotrust-skills/blob/main/pdr-spec.md
Personal Records: Email correspondence, family letters, personal notes, photographs. Proves that a specific version of a file existed at a specific time.
AI Outputs: Agent reports, LLM responses, generated code, research summaries. Creates independent evidence of when an AI-generated artifact was produced.
Business Documents: Contracts, proposals, specifications, financial reports. Provides a timestamped provenance record for important documents.
Technical Artifacts: Source code, configuration files, datasets, log files. Creates a verifiable audit trail for technical work.
Compliance and Audit: Regulatory evidence, internal approvals, process documentation. Provides a cryptographically verifiable historical record.
AOTrust does not store or publish your artifact content. Only the SHA-256 hash of the artifact is included in the PDR. Anyone can verify the PDR, but the original artifact remains private unless you choose to share it.
By default, AOTrust proves that a hash existed at a specific time. For stronger provenance, clients can sign the artifact hash with their own Ed25519 key before notarization — this produces a bilateral PDR (v0x04) with a binding hash.
This creates a non-repudiable provenance chain: Client Key → Artifact Hash → Binding Hash → AOTrust PDR → Blockchain Anchor
See the Bilateral Signature section under Step 3 above for implementation details.
Useful for: agent reputation, creator attribution, audit trails, dispute resolution, multi-agent pipelines.
The standard PDR workflow (v0x03) remains available and does not require client signatures.
| Response | Meaning | Action |
|---|---|---|
| HTTP 402 | Expected — payment required | Proceed to Step 3 |
| HTTP 400 | Invalid work_hash format | Must be 64-char lowercase hex |
| HTTP 409 | Duplicate work_hash | Already notarized — use verify |
| HTTP 429 | Rate limited | Wait 60 seconds, retry once |
notary-node.near.