Skip to content
View blockvyn's full-sized avatar
  • Joined May 27, 2026

Block or report blockvyn

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
blockvyn/README.md

Blockvyn Banner

Blockvyn

The trust layer for autonomous AI agents and battle-tested smart contracts.

Status License PHP TailwindCSS Anthropic

Website · Whitepaper · Twitter · Telegram


🌌 What is Blockvyn?

Blockvyn is an AI-Native Web3 engineering protocol that delivers a complete trust layer for autonomous agents and smart contract systems. We build infrastructure that lets builders ship AI agents on-chain with verifiable legitimacy — not just promises.

Stop shipping promises. Start shipping proof.


✨ Core Features

Module Description
🤖 AI Agent Studio Configure & deploy autonomous LLM-powered agents with one click
🪙 $BVYN Token Launch Token countdown, contract address, Pump.fun integration
🔐 Email OTP + Wallet Auth Login via email OTP (SMTP) or Phantom wallet (Solana)
💬 Live Agent Chat Talk to your agents — powered by Claude (Anthropic API)
📜 Verification Certificates Cryptographic Agent IDs (AGT-XXXX-XXXX-XXXX) + verification hashes
📊 Service Dashboard Manage projects across 5 service lines (Agents, DeFi, Intel, Infra, Audit)
📄 Whitepaper Full 10-section technical whitepaper with tokenomics

🛠 Tech Stack

Frontend

  • HTML5 + TailwindCSS (CDN)
  • Vanilla JavaScript (no framework)
  • Iconify (Solar + Simple Icons sets)
  • UnicornStudio (animated background)

Backend

  • PHP 8.0+ (compatible with any shared hosting)
  • Native SMTP client (zero dependencies)
  • Anthropic Claude API integration
  • HMAC-SHA256 JWT-like tokens
  • Session-based OTP storage

Auth

  • Email OTP via SMTP (Hostinger / any provider)
  • Phantom Wallet (Solana) integration
  • LocalStorage-based session persistence

📂 Project Structure

blockvyn/
├── index.html              # Landing page (hero, token launch, services)
├── login.html              # Email OTP + Phantom wallet auth
├── dashboard.html          # Client portal (5 service lines)
├── launch-agent.html       # AI Agent Studio + live chat
├── whitepaper.html         # Full whitepaper (10 sections)
├── logo.png                # Brand logo
├── favicon.svg             # Favicon (embedded logo, white BG)
├── banner.png              # GitHub banner
│
├── .htaccess               # Apache security & HTTPS redirect
├── .env.example            # Environment variables template
│
└── api/                    # PHP backend
    ├── config.php          # Loads .env, helpers, sessions
    ├── smtp.php            # Native SMTP client (no deps)
    ├── send-otp.php        # OTP email dispatcher
    ├── verify-otp.php      # OTP validation + token issuance
    └── chat.php            # Claude API proxy for AI Agent

🚀 Quick Start (Local)

This is a static site with a PHP backend. To run locally:

# Clone the repo
git clone https://github.com/blockvyn/blockvyn.git
cd blockvyn

# Copy env template
cp .env.example .env
# Edit .env and fill in your credentials

# Start PHP dev server
php -S localhost:8000

# Visit http://localhost:8000

⚙️ Configuration

Create a .env file (use .env.example as a template):

# Email (SMTP)
SMTP_HOST=smtp.hostinger.com
SMTP_PORT=465
SMTP_USER=noreply@yourdomain.com
SMTP_PASSWORD=your_email_password
SMTP_FROM_EMAIL=noreply@yourdomain.com
SMTP_FROM_NAME=Blockvyn

# Auth secret (generate via: openssl rand -hex 32)
AUTH_SECRET=your_64_char_random_string

# Anthropic API (for AI Agent chat)
ANTHROPIC_API_KEY=sk-ant-xxxxxxxxxxxxx
ANTHROPIC_MODEL=claude-sonnet-4-6

# Rate limits
CHAT_MAX_MESSAGES_PER_HOUR=50
CHAT_MAX_TOKENS=2048

⚠️ Place .env 1 level ABOVE public_html/ on shared hosting. Set permissions to 600.


🌐 Deployment

Option A — Hostinger / Shared Hosting (Recommended)

  1. Upload static files to public_html/:

    • All .html files
    • logo.png, favicon.svg, banner.png
    • .htaccess
    • api/ folder (entire)
  2. Place .env in the parent directory of public_html/

  3. Create email account (e.g. noreply@yourdomain.com) in Hostinger panel

  4. Enable SSL (free Let's Encrypt via Hostinger)

  5. Test login at https://yourdomain.com/login.html

Option B — VPS / Custom Server

Any LAMP / LEMP stack works. Just ensure:

  • PHP 8.0+ with curl extension
  • .env placed outside webroot
  • HTTPS enabled
  • File permissions: chmod 600 .env

🔐 Authentication Flow

┌─────────────┐     ┌──────────────┐     ┌──────────────┐     ┌──────────────┐
│   Browser   │────▶│  send-otp.php │────▶│  SMTP server  │────▶│  User Inbox  │
└─────────────┘     └──────────────┘     └──────────────┘     └──────────────┘
       │                                                              │
       │  ◀───── 6-digit OTP via email ───────────────────────────────┘
       ▼
┌─────────────┐     ┌────────────────┐
│   Browser   │────▶│ verify-otp.php │
└─────────────┘     └────────────────┘
       │                    │
       │  ◀── HMAC-signed token (30 days) ──
       │
       └──▶ localStorage → dashboard access

🤖 AI Agent Chat Architecture

User Message
    │
    ▼
launch-agent.html (chat modal)
    │ POST { token, agent, messages }
    ▼
api/chat.php
    │ 1. Verify HMAC token
    │ 2. Rate-limit check (50/hr)
    │ 3. Build system prompt from agent config
    │ 4. Cache system prompt (Anthropic Ephemeral Cache)
    ▼
https://api.anthropic.com/v1/messages
    │
    ▼
Claude reply → JSON response → render in chat UI

System prompt is dynamically constructed from each agent's configuration:

  • Name, Role, Personality
  • Target Chain (Ethereum, Solana, etc.)
  • Selected Capabilities (Trading, Treasury, Governance, etc.)
  • Custom operator instructions

Each agent becomes a unique Claude persona with its own scope and personality.


🪙 Token Launch

Property Value
Ticker $BVYN
Standard SPL (Solana)
Total Supply 1,000,000,000
Launch Platform Pump.fun
Launch Date 29 May 2026, 5:00 PM UTC
Contract TBA — Reveals at Launch

Distribution

  • 40% — Public Sale & Liquidity
  • 20% — Ecosystem & Builder Grants
  • 15% — Team & Advisors (vested)
  • 15% — Treasury & DAO
  • 10% — Strategic Partners

🗺 Roadmap

  • Q2 2026 — Genesis: TGE, Agent Studio public launch, first 100 verified agents
  • Q3 2026 — Trust Registry: On-chain verification, SDK release
  • Q4 2026 — Multi-Chain: Solana, Arbitrum, Optimism, A2A messaging
  • 2027 — Permissionless registration, auditor marketplace, full DAO

See whitepaper.html for the full breakdown.


🤝 Contributing

We welcome contributions from the community. Please:

  1. Fork the repo
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📜 License

MIT License — see LICENSE for details.


🌐 Links


Built by Vyners, for Vyners.

The future ships verified.

Popular repositories Loading

  1. blockvyn blockvyn Public

    We build autonomous AI agents, battle-tested smart contracts, and full-stack Web3 systems. From LLM-powered agents to multi-chain DeFi — Blockvyn ships intelligence that lives on-chain.

    HTML