Crawler Summary

agentdna-mint answer-first brief

Mint an AgentDNA identity NFT onchain via the Helixa V2 platform (Base network). Use when an AI agent wants to register itself onchain, get a portable identity, claim an AgentDNA NFT, or set up its onchain reputation. Supports SIWA (Sign-In With Agent) authentication for agent-initiated mints. Also use when asked about Helixa, AgentDNA, ERC-8004, or agent identity minting. --- name: agentdna-mint description: Mint an AgentDNA identity NFT onchain via the Helixa V2 platform (Base network). Use when an AI agent wants to register itself onchain, get a portable identity, claim an AgentDNA NFT, or set up its onchain reputation. Supports SIWA (Sign-In With Agent) authentication for agent-initiated mints. Also use when asked about Helixa, AgentDNA, ERC-8004, or agent identity minting. --- Hel Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.

Freshness

Last checked 2/25/2026

Best For

agentdna-mint is best for base workflows where OpenClaw compatibility matters.

Not Ideal For

Contract metadata is missing or unavailable for deterministic execution.

Evidence Sources Checked

editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack

Claim this agent
Agent DossierGitHubSafety: 89/100

agentdna-mint

Mint an AgentDNA identity NFT onchain via the Helixa V2 platform (Base network). Use when an AI agent wants to register itself onchain, get a portable identity, claim an AgentDNA NFT, or set up its onchain reputation. Supports SIWA (Sign-In With Agent) authentication for agent-initiated mints. Also use when asked about Helixa, AgentDNA, ERC-8004, or agent identity minting. --- name: agentdna-mint description: Mint an AgentDNA identity NFT onchain via the Helixa V2 platform (Base network). Use when an AI agent wants to register itself onchain, get a portable identity, claim an AgentDNA NFT, or set up its onchain reputation. Supports SIWA (Sign-In With Agent) authentication for agent-initiated mints. Also use when asked about Helixa, AgentDNA, ERC-8004, or agent identity minting. --- Hel

OpenClawself-declared

Public facts

5

Change events

1

Artifacts

0

Freshness

Feb 25, 2026

Verifiededitorial-contentNo verified compatibility signals1 GitHub stars

Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.

1 GitHub starsTrust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Feb 25, 2026

Vendor

Bendr 20

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.

Setup snapshot

git clone https://github.com/Bendr-20/helixa-mint-skill.git
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Bendr 20

profilemedium
Observed Feb 25, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Feb 25, 2026Source linkProvenance
Adoption (1)

Adoption signal

1 GitHub stars

profilemedium
Observed Feb 25, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB OPENCLEW

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Parameters

Executable Examples

solidity

// HelixaV2 — 0x2e3B541C59D38b84E3Bc54e977200230A204Fe60
function mint(
    address agentAddress,     // The agent's wallet address
    string name,              // Agent name
    string framework,         // See supported frameworks below
    bool soulbound            // true = non-transferable
) external payable returns (uint256 tokenId);

bash

cast send 0x2e3B541C59D38b84E3Bc54e977200230A204Fe60 \
  "mint(address,string,string,bool)" \
  0xYOUR_AGENT_ADDRESS "MyAgent" "openclaw" false \
  --rpc-url https://mainnet.base.org \
  --private-key $PRIVATE_KEY

javascript

const contract = new ethers.Contract(
  "0x2e3B541C59D38b84E3Bc54e977200230A204Fe60",
  ["function mint(address,string,string,bool) payable returns (uint256)"],
  signer
);
const tx = await contract.mint(agentAddress, "MyAgent", "openclaw", false);
const receipt = await tx.wait();

text

Sign-In With Agent: api.helixa.xyz wants you to sign in with your wallet {address} at {timestamp}

text

Authorization: Bearer {address}:{timestamp}:{signature}

javascript

const wallet = new ethers.Wallet(AGENT_PRIVATE_KEY);
const address = wallet.address;
const timestamp = Math.floor(Date.now() / 1000).toString();
const message = `Sign-In With Agent: api.helixa.xyz wants you to sign in with your wallet ${address} at ${timestamp}`;
const signature = await wallet.signMessage(message);
const authHeader = `Bearer ${address}:${timestamp}:${signature}`;

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB OPENCLEW

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Mint an AgentDNA identity NFT onchain via the Helixa V2 platform (Base network). Use when an AI agent wants to register itself onchain, get a portable identity, claim an AgentDNA NFT, or set up its onchain reputation. Supports SIWA (Sign-In With Agent) authentication for agent-initiated mints. Also use when asked about Helixa, AgentDNA, ERC-8004, or agent identity minting. --- name: agentdna-mint description: Mint an AgentDNA identity NFT onchain via the Helixa V2 platform (Base network). Use when an AI agent wants to register itself onchain, get a portable identity, claim an AgentDNA NFT, or set up its onchain reputation. Supports SIWA (Sign-In With Agent) authentication for agent-initiated mints. Also use when asked about Helixa, AgentDNA, ERC-8004, or agent identity minting. --- Hel

Full README

name: agentdna-mint description: Mint an AgentDNA identity NFT onchain via the Helixa V2 platform (Base network). Use when an AI agent wants to register itself onchain, get a portable identity, claim an AgentDNA NFT, or set up its onchain reputation. Supports SIWA (Sign-In With Agent) authentication for agent-initiated mints. Also use when asked about Helixa, AgentDNA, ERC-8004, or agent identity minting.

Helixa · AgentDNA Mint (V2)

Mint your onchain identity on Base via the Helixa platform. Two paths: humans use the frontend or direct contract call, agents use SIWA auth + API.

Contract: 0x2e3B541C59D38b84E3Bc54e977200230A204Fe60 (HelixaV2, Base mainnet) API: https://api.helixa.xyz Frontend: https://helixa.xyz/mint

What You Get

  • ERC-8004 compliant identity NFT on Base
  • Cred score and reputation tracking
  • Agent profile card
  • Referral system
  • Cross-registration on the canonical 8004 registry
  • Soulbound option (your choice)

Pricing

Agent mints (via API): $1 USDC via x402 payment protocol. The API returns HTTP 402 with payment instructions — any x402-compatible client handles this automatically.

Human mints (via contract): Free during Phase 1 (gas only).

Gas Requirements

You need a tiny amount of ETH on Base for gas.

| Action | Estimated Cost | |--------|---------------| | mint() | ~$0.002-0.003 |

You need approximately 0.0001 ETH on Base (~$0.25) to cover gas.


Path 1: Human Mint (Frontend or Direct Contract)

Option A: Frontend

Go to https://helixa.xyz/mint and follow the UI.

Option B: Direct Contract Call

// HelixaV2 — 0x2e3B541C59D38b84E3Bc54e977200230A204Fe60
function mint(
    address agentAddress,     // The agent's wallet address
    string name,              // Agent name
    string framework,         // See supported frameworks below
    bool soulbound            // true = non-transferable
) external payable returns (uint256 tokenId);

Supported frameworks: openclaw, eliza, langchain, crewai, autogpt, bankr, virtuals, based, agentkit, custom

Using cast (Foundry)

cast send 0x2e3B541C59D38b84E3Bc54e977200230A204Fe60 \
  "mint(address,string,string,bool)" \
  0xYOUR_AGENT_ADDRESS "MyAgent" "openclaw" false \
  --rpc-url https://mainnet.base.org \
  --private-key $PRIVATE_KEY

Using ethers.js

const contract = new ethers.Contract(
  "0x2e3B541C59D38b84E3Bc54e977200230A204Fe60",
  ["function mint(address,string,string,bool) payable returns (uint256)"],
  signer
);
const tx = await contract.mint(agentAddress, "MyAgent", "openclaw", false);
const receipt = await tx.wait();

Path 2: Agent Mint (SIWA + API)

For AI agents minting programmatically. Uses Sign-In With Agent (SIWA) authentication.

Step 1: Generate SIWA Auth Header

The agent signs a message with its wallet to prove identity.

Message format:

Sign-In With Agent: api.helixa.xyz wants you to sign in with your wallet {address} at {timestamp}

Auth header format:

Authorization: Bearer {address}:{timestamp}:{signature}

Example (ethers.js)

const wallet = new ethers.Wallet(AGENT_PRIVATE_KEY);
const address = wallet.address;
const timestamp = Math.floor(Date.now() / 1000).toString();
const message = `Sign-In With Agent: api.helixa.xyz wants you to sign in with your wallet ${address} at ${timestamp}`;
const signature = await wallet.signMessage(message);
const authHeader = `Bearer ${address}:${timestamp}:${signature}`;

Example (curl — for testing with a pre-signed value)

# Generate signature externally, then:
AUTH="Bearer 0xYourAddress:1708300000:0xYourSignature..."

curl -X POST https://api.helixa.xyz/api/v2/mint \
  -H "Content-Type: application/json" \
  -H "Authorization: $AUTH" \
  -d '{
    "name": "MyAgent",
    "framework": "openclaw",
    "personality": {
      "tone": "analytical",
      "style": "formal"
    },
    "narrative": {
      "origin": "Built to research onchain data",
      "purpose": "Autonomous research assistant"
    }
  }'

Step 2: x402 Payment Setup

The mint endpoint requires $1 USDC payment via x402. Use the official SDK — do NOT hand-roll EIP-3009 signatures.

npm install @x402/fetch @x402/evm viem
const { createWalletClient, http, publicActions } = require('viem');
const { privateKeyToAccount } = require('viem/accounts');
const { base } = require('viem/chains');
const { wrapFetchWithPayment, x402Client } = require('@x402/fetch');
const { ExactEvmScheme } = require('@x402/evm/exact/client');
const { toClientEvmSigner } = require('@x402/evm');

// Set up wallet + x402 payment client
const account = privateKeyToAccount('0xYOUR_PRIVATE_KEY');
const walletClient = createWalletClient({
  account, chain: base, transport: http('https://mainnet.base.org'),
}).extend(publicActions);

const signer = toClientEvmSigner(walletClient);
signer.address = walletClient.account.address; // Required for viem compat
const scheme = new ExactEvmScheme(signer);
const client = x402Client.fromConfig({
  schemes: [{ client: scheme, network: 'eip155:8453' }],
});

// This fetch wrapper auto-handles 402 → payment → retry
const x402Fetch = wrapFetchWithPayment(globalThis.fetch, client);

Step 3: Mint

Use x402Fetch instead of regular fetch. It automatically handles the 402 payment flow:

const res = await x402Fetch('https://api.helixa.xyz/api/v2/mint', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': authHeader, // SIWA header from Step 1
  },
  body: JSON.stringify({
    name: 'MyAgent',
    framework: 'openclaw',
    personality: { quirks: 'curious', values: 'transparency' },
    narrative: { origin: 'Built to explore', mission: 'Score agents fairly' },
  }),
});

const result = await res.json();
// { success: true, tokenId: 901, txHash: "0x...", mintOrigin: "AGENT_SIWA" }

The SDK reads the payment-required header, signs a USDC transfer via EIP-3009, sends it through the Dexter facilitator (x402.dexter.cash), and retries the request with the payment proof. Your agent gets minted and auto-registered on the ERC-8004 registry.

Required fields: name, framework Optional fields: personality (object), narrative (object)


API Reference

All endpoints use base URL https://api.helixa.xyz.

Public (no auth)

| Method | Endpoint | Description | |--------|----------|-------------| | GET | /api/v2/stats | Platform stats (total agents, etc.) | | GET | /api/v2/agents | Agent directory listing | | GET | /api/v2/agent/:id | Single agent profile |

Authenticated (SIWA required)

| Method | Endpoint | Description | |--------|----------|-------------| | POST | /api/v2/mint | Mint a new agent identity | | POST | /api/v2/agent/:id/update | Update agent metadata | | POST | /api/v2/agent/:id/verify | Verify agent identity | | POST | /api/v2/agent/:id/crossreg | Cross-register on canonical 8004 registry |

curl Examples

# Get platform stats
curl https://api.helixa.xyz/api/v2/stats

# List all agents
curl https://api.helixa.xyz/api/v2/agents

# Get specific agent
curl https://api.helixa.xyz/api/v2/agent/1

# Cross-register on 8004 (SIWA auth required)
curl -X POST https://api.helixa.xyz/api/v2/agent/1/crossreg \
  -H "Authorization: Bearer 0xAddr:1708300000:0xSig..."

Step-by-Step for AI Agents

  1. Have a wallet — You need an Ethereum wallet with a small amount of ETH on Base for gas (~0.0001 ETH).

  2. Sign SIWA message — Use your wallet's private key to sign the SIWA message (see above).

  3. POST to /api/v2/mint — Send your agent details with the auth header.

  4. Verify your mint — Check your agent profile via GET /api/v2/agent/:id.

  5. Optional: Cross-register on 8004POST /api/v2/agent/:id/crossreg to register on the canonical ERC-8004 registry.

Network Details

  • Chain: Base (Chain ID: 8453)
  • Contract: 0x2e3B541C59D38b84E3Bc54e977200230A204Fe60 (HelixaV2)
  • RPC: https://mainnet.base.org
  • Block Explorer: https://basescan.org
  • Standard: ERC-8004 (Trustless Agents)
  • Phase: 1 (Agent mint: $1 USDC via x402 | Human mint: free, gas only)
  • x402 Facilitator: Dexter (x402.dexter.cash), supports Base mainnet

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB OPENCLEW

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

Do not use if

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITHUB_REPOSactivepieces

Rank

70

AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents

Traction

No public download signal

Freshness

Updated 2d ago

OPENCLAW
GITHUB_REPOScherry-studio

Rank

70

AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs

Traction

No public download signal

Freshness

Updated 5d ago

MCPOPENCLAW
GITHUB_REPOSAionUi

Rank

70

Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!

Traction

No public download signal

Freshness

Updated 6d ago

MCPOPENCLAW
GITHUB_REPOSCopilotKit

Rank

70

The Frontend for Agents & Generative UI. React + Angular

Traction

No public download signal

Freshness

Updated 23d ago

OPENCLAW
Machine Appendix

Contract JSON

{
  "contractStatus": "missing",
  "authModes": [],
  "requires": [],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": null,
  "outputSchemaRef": null,
  "dataRegion": null,
  "contractUpdatedAt": null,
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "OPENCLEW"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "GITHUB_OPENCLEW",
      "generatedAt": "2026-04-16T23:41:55.651Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "OPENCLEW",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    },
    {
      "key": "base",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:base|supported|profile"
}

Facts JSON

[
  {
    "factKey": "docs_crawl",
    "category": "integration",
    "label": "Crawlable docs",
    "value": "6 indexed pages on the official domain",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  },
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Bendr 20",
    "href": "https://github.com/Bendr-20/helixa-mint-skill",
    "sourceUrl": "https://github.com/Bendr-20/helixa-mint-skill",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-02-25T01:46:08.621Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-02-25T01:46:08.621Z",
    "isPublic": true
  },
  {
    "factKey": "traction",
    "category": "adoption",
    "label": "Adoption signal",
    "value": "1 GitHub stars",
    "href": "https://github.com/Bendr-20/helixa-mint-skill",
    "sourceUrl": "https://github.com/Bendr-20/helixa-mint-skill",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-02-25T01:46:08.621Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "docs_update",
    "title": "Docs refreshed: Sign in to GitHub · GitHub",
    "description": "Fresh crawlable documentation was indexed for the official domain.",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  }
]

Sponsored

Ads related to agentdna-mint and adjacent AI workflows.