← 返回
AI智能 中文

Lukso Expert

Comprehensive LUKSO blockchain knowledge base for AI agents. Makes any agent a LUKSO expert — covering all LSP standards (LSP0-LSP28), Universal Profiles, sm...
面向AI代理的LUKSO区块链综合知识库。使任何代理成为LUKSO专家——涵盖所有LSP标准(LSP0-LSP28)、Universal Profiles、智能合约等。
luksoagent
AI智能 clawhub v1.0.0 1 版本 99751.9 Key: 无需
★ 4
Stars
📥 1,126
下载
💾 32
安装
1
版本
#latest

概述

LUKSO Expert

Complete knowledge base for building on LUKSO — the blockchain for creative economies,

digital identity, and new social standards.

Quick Facts

  • Chain ID: 42 (mainnet) / 4201 (testnet)
  • Native token: LYX
  • Consensus: Proof of Stake (32 LYX per validator)
  • EVM compatible: Yes, unmodified Ethereum execution layer
  • Unique: Universal Profiles (smart contract accounts) instead of EOAs
  • Founder: Fabian Vogelsteller (also created ERC-20 and ERC-725)

Core Concepts

LUKSO extends Ethereum with LSP standards (LUKSO Standard Proposals) that enable:

  • Smart accounts (Universal Profiles) with built-in permissions, metadata, and social features
  • Flexible tokens (LSP7/LSP8) with safety features like force parameter and universal receiver hooks
  • Gasless transactions via relay service (LSP25)
  • On-chain social graph via followers system (LSP26)
  • Profile customization via The Grid (LSP28)

Architecture Overview

Universal Profile (LSP0/ERC725Account)
├── KeyManager (LSP6) — permission layer
│   ├── Controllers — addresses with specific permissions
│   └── Allowed calls/addresses — fine-grained access control
├── Profile Data (LSP3) — name, description, avatar, links
├── Universal Receiver (LSP1) — hooks for incoming transactions
├── Owned Assets (LSP5) — registry of tokens/NFTs owned
├── Issued Assets (LSP12) — registry of tokens/NFTs created
└── The Grid (LSP28) — customizable profile layout

Reference Files

Load these based on what you need:

LSP Standards (references/lsp-standards.md)

Complete reference for ALL LSP standards (LSP0-LSP28+). Includes interfaces,

function signatures, and implementation details. Read when working with any

specific LSP or needing to understand the standards architecture.

Developer Patterns (references/dev-patterns.md)

Practical code examples and implementation guides. Covers UP creation, token

operations, permissions, gasless transactions, and common pitfalls. Read when

writing code or debugging LUKSO-specific issues.

Ecosystem (references/ecosystem.md)

Projects, team, community channels, grants, and chain infrastructure. Read when

answering ecosystem questions or looking for project information.

Contracts & Repos (references/contracts-and-repos.md)

Deployed contract addresses, GitHub repositories, NPM packages, and API endpoints.

Read when looking up addresses, ABIs, or integration endpoints.

Key Contract Addresses (Mainnet)

ContractAddress
-------------------
LSP26 Follower System0xf01103E5a9909Fc0DBe8166dA7085e0285daDDcA
Envio GraphQLhttps://envio.lukso-mainnet.universal.tech/v1/graphql

> Full address list in references/contracts-and-repos.md

Common Operations Quick Reference

Resolve username to UP address

# Envio GraphQL
query { Profile(where: {name: {_eq: "username"}}) { id name } }

Check UP count

query { Profile_aggregate { aggregate { count } } }

Follow a profile (LSP26)

const LSP26 = "0xf01103E5a9909Fc0DBe8166dA7085e0285daDDcA";
const calldata = lsp26Contract.methods.follow(targetAddress).encodeABI();
await universalProfile.methods.execute(0, LSP26, 0, calldata).send({from: controller});

Important Gotchas

  1. force parameter (LSP7/LSP8): Set to true to send tokens to any address.

Set to false (default) to only send to UPs with a Universal Receiver — prevents

accidental sends to EOAs or contracts that can't handle them.

  1. LSP6 Permissions: Permissions are bitmask-based. Common mistake: granting

CALL permission but forgetting EXECUTE_RELAY_CALL for gasless transactions.

  1. ERC725Y data encoding: Use @erc725/erc725.js for encoding — manual encoding

is error-prone, especially for VerifiableURI and array types.

  1. Gas estimation: UP transactions go through KeyManager proxy, so gas estimates

can be off. Add 20-30% buffer.

Developer Resources

  • Docs: https://docs.lukso.tech
  • GitHub: https://github.com/lukso-network
  • Medium: https://medium.com/lukso
  • Discord: https://discord.gg/lukso
  • Testnet faucet: https://faucet.testnet.lukso.network

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-29 09:14 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误和纠正,以实现持续改进。使用时机:(1)命令或操作意外失败;(2)用户纠正……
★ 4,058 📥 797,426
ai-intelligence

ontology

oswalpalash
类型化知识图谱,用于结构化智能体记忆与可组合技能。支持创建/查询实体(人员、项目、任务、事件、文档)及关联...
★ 710 📥 243,638
developer-tools

Forever Moments

luksoagent
LUKSO上的永恒时刻社交平台——发布动态(LSP8 NFT)、铸造LIKES代币、创建或加入合集,并体验去中心化社交互动功能。
★ 4 📥 1,163