Standards, Ecosystem, and Resources
标准、生态系统与资源
Three things bundled because they're all reference material you reach for in the same moment: "which standard handles X?", "is there an existing project doing Y?", and "where's the canonical doc for Z?".
将这三类内容整合在一起,因为它们都是你在同一场景下会用到的参考资料:“哪个标准适用于X?”“有没有已有的项目在做Y?”“Z的权威文档在哪里?”。
When to use this skill
何时使用本指南
- Picking the right SEP for an integration (anchors, deposits, federation, deep links, KYC, paths)
- Checking CAP status for a protocol feature you want to rely on
- Finding existing DeFi protocols, wallets, or infrastructure to integrate with rather than rebuild
- Locating official docs, SDKs, or community resources
- 为集成选择合适的SEP(锚点、存提币、联盟、深度链接、KYC、路径)
- 查看你依赖的协议功能的CAP状态
- 寻找已有的DeFi协议、钱包或基础设施进行集成,而非重新开发
- 定位官方文档、SDK或社区资源
- Implementing a SEP-41 token interface → ,
- Frontend SEP-7 / SEP-10 flows →
- CAPs for cryptography (BLS, BN254, Poseidon) →
- x402/MPP protocol context →
../agentic-payments/SKILL.md
- 实现SEP-41代币接口 → ,
- 前端SEP-7 / SEP-10流程 →
- 密码学相关CAP(BLS、BN254、Poseidon) →
- x402/MPP协议背景 →
../agentic-payments/SKILL.md
Part 1: SEP / CAP Standards Reference
第一部分:SEP / CAP标准参考
When to use this guide
何时使用本指南
Use this when you need:
- The right SEP/CAP for a feature or integration
- Interoperability guidance for wallets, anchors, and contracts
- A fast map from use case to official standards docs
当你需要以下内容时使用本指南:
- 适用于某功能或集成的SEP/CAP
- 钱包、锚点和合约的互操作性指引
- 从用例到官方标准文档的快速映射
Standards status can change quickly.
Before implementation, verify current status in:
Treat this file as a routing map, not a source of final governance/status truth.
标准状态可能会快速变化。
在实施前,请在以下位置验证当前状态:
请将本文件视为路由指引,而非最终的治理/状态来源。
High-value SEPs for app developers
对应用开发者高价值的SEP
Contracts and token interfaces
合约与代币接口
Auth, identity, and metadata
认证、身份与元数据
Anchor and fiat integration
锚点与法币集成
High-value CAPs for Soroban developers
对Soroban开发者高价值的CAP
Soroban foundations
Soroban基础
- CAP-0046: Soroban overview
- CAP-0046 subdocuments (): runtime, lifecycle, host functions, storage, auth, metering
- CAP-0046:Soroban概述
- CAP-0046子文档():运行时、生命周期、宿主函数、存储、认证、计量
Frequently used contract capabilities
常用合约功能
- CAP-0051: secp256r1 verification (passkey-related cryptography)
- CAP-0053: TTL extension behavior
- CAP-0058: constructors ()
- CAP-0059: BLS12-381 primitives
- CAP-0067: protocol/runtime improvements including asset/event model changes
Newer and draft crypto/features
较新的加密/功能提案
- CAP-0074: BN254 host functions proposal
- CAP-0075: Poseidon/Poseidon2 proposal
- CAP-0079: muxed-address strkey conversion proposal
Use the CAP preamble status fields as the source of truth for implementation readiness.
Quick mapping by use case
按用例快速映射
I am building a fungible token
我正在构建可替代代币
- Start with SEP-0041 interface expectations.
- Prefer Stellar Assets + SAC interop unless custom logic is required.
- If regulated, review SEP-0057 patterns.
- 从SEP-0041接口要求开始。
- 除非需要自定义逻辑,否则优先选择Stellar资产 + SAC互操作性。
- 若涉及监管,请查看SEP-0057模式。
I need upgrade-safe contracts
我需要可安全升级的合约
- Read SEP-0049 guidance for upgrade process design.
- Use CAP-0058 constructors for atomic initialization where protocol support exists.
- Add migration/versioning strategy before deploying upgradeable contracts.
- 阅读SEP-0049关于升级流程设计的指引。
- 在协议支持的情况下,使用CAP-0058构造函数进行原子初始化。
- 在部署可升级合约前,添加迁移/版本控制策略。
I am building a smart-wallet flow
我正在构建智能钱包流程
- Use SEP-0010 for web authentication flows.
- Review CAP-0051 for passkey-related cryptographic primitives.
- Align wallet UX and signing payloads with current SDK guidance.
- 使用SEP-0010实现Web认证流程。
- 查看CAP-0051了解与密钥相关的密码学原语。
- 使钱包UX和签名 payload 与当前SDK指引保持一致。
I need anchor integration for fiat rails
我需要锚点集成以对接法币通道
- SEP-0006 for API-first flows.
- SEP-0024 for hosted interactive rails.
- SEP-0031 when supporting payment corridors.
- SEP-0012 for KYC data requirements.
- 采用SEP-0006实现API优先的流程。
- 采用SEP-0024实现托管式交互式通道。
- 支持支付走廊时采用SEP-0031。
- 采用SEP-0012满足KYC数据要求。
Practical workflow for AI agents
AI Agent实用工作流
- Step 1: Identify feature category (token, wallet auth, anchor, upgradeability).
- Step 2: Link user to the 1-3 primary SEP/CAP docs.
- Step 3: Check status/acceptance in the source repo before asserting support.
- Step 4: Implement only what is active on the target network/protocol.
- Step 5: Document dependencies on draft standards explicitly.
- 步骤1:确定功能类别(代币、钱包认证、锚点、可升级性)。
- 步骤2:为用户链接1-3份主要的SEP/CAP文档。
- 步骤3:在确认支持前,检查源仓库中的状态/接受情况。
- 步骤4:仅在目标网络/协议上实施已激活的内容。
- 步骤5:明确记录对草案标准的依赖。
- Contract implementation details:
- Advanced architecture guidance:
- RPC and data access:
- Security considerations:
- 合约实现细节:
- 高级架构指引:
- RPC与数据访问:
- 安全注意事项:
Part 2: Stellar Ecosystem
第二部分:Stellar生态系统
This guide catalogs the major projects, protocols, and tools in the Stellar ecosystem. Use this as a reference when building on Stellar to find relevant integrations, examples, and community projects.
Canonical directories — For the most up-to-date project lists, check:
- Stellar Ecosystem — Official directory (searchable by country, asset, category)
- SCF Projects — Funded projects with status tracking
- Stellar on DefiLlama — Live DeFi TVL data
Treat project metrics/status as volatile. Validate latest activity and production readiness before taking dependencies.
本指南分类整理了Stellar生态系统中的主要项目、协议和工具。在Stellar上进行开发时,可将其作为参考,寻找相关集成、示例和社区项目。
权威目录 — 如需最新的项目列表,请查看:
- Stellar生态系统 — 官方目录(可按国家、资产、类别搜索)
- SCF项目 — 获资助项目及状态跟踪
- DeFiLlama上的Stellar — 实时DeFi TVL数据
请将项目指标/状态视为易变内容。在依赖前,请验证最新活动情况和生产就绪性。
Blend Protocol
Blend Protocol
First non-custodial lending protocol on Soroban with flash loan support.
- Use Case: Lending, borrowing, flash loans
- Features: Pool-based strategy, sTokens, dTokens, utilization caps
- Oracle: SEP-40 compatible (Reflector)
Soroban上首个支持闪电贷的非托管借贷协议。
- 用例:借贷、闪电贷
- 特性:基于池的策略、sTokens、dTokens、利用率上限
- 预言机:兼容SEP-40(Reflector)
Stellar/Soroban上首个DEX和聚合器。
Aquarius / AQUA Network
Aquarius / AQUA Network
Phoenix Protocol
Phoenix Protocol
Yield aggregation and vault infrastructure by PaltaLabs.
- Use Case: Tokenized vaults, yield strategies, DeFi abstraction
- Docs: https://docs.defindex.io
- Features: Automated rebalancing, vault management, Blend integration
Stablecoins & CDPs
稳定币与CDP
Orbit CDP Protocol
Orbit CDP Protocol
Collateralized stablecoin issuance (USD, EUR, MXN).
- Use Case: Mint stablecoins against XLM/bond collateral
- Docs: https://docs.orbitcdp.finance
- Features: Multi-currency stablecoins, Pegkeeper automation, Blend integration
SDF's flagship non-custodial browser wallet.
Feature-rich browser wallet with advanced capabilities.
- Website: https://xbull.app
- Features: Multi-account, hardware wallet support
Lightweight web-based wallet and signing provider.
- Website: https://albedo.link
- Use Case: Web authentication, transaction signing
Browser extension wallet for Stellar.
Modern Stellar wallet with DeFi features.
Most popular Stellar mobile wallet.
- Website: https://lobstr.co
- Platforms: iOS, Android, Web
- Features: DEX trading, multisig, 2FA, asset discovery
Payments platform with yield features.
- Use Case: Payments, earning (via DeFindex/Blend)
- Features: Non-custodial yield generation
具备收益功能的支付平台。
- 用例:支付、收益(通过DeFindex/Blend)
- 特性:非托管收益生成
Multi-Wallet Integration
多钱包集成
Stellar Wallets Kit
Stellar Wallets Kit
Smart Account & Authentication
智能账户与认证
Smart Account Kit (Recommended)
Smart Account Kit(推荐)
Comprehensive TypeScript SDK for OpenZeppelin Smart Accounts on Stellar/Soroban.
- GitHub: https://github.com/kalepail/smart-account-kit
- Use Case: Production smart wallets with passkeys
- Built On: OpenZeppelin stellar-contracts
- Features:
- Context rules with fine-grained authorization scopes
- Policy support (threshold multisig, spending limits, custom policies)
- Session management with automatic credential persistence
- External wallet adapter support (Freighter, LOBSTR, etc.)
- Built-in indexer for contract discovery
- Multiple signer types (passkeys, Ed25519, policies)
Passkey Kit (Legacy)
Passkey Kit(旧版)
OpenZeppelin Relayer
OpenZeppelin Relayer
Stellar-native data indexing platform with Retroshades technology.
- Website: https://mercurydata.app
- Docs: https://docs.mercurydata.app
- Use Case: Event indexing, data queries, automation
- Features: Zephyr VM (serverless Rust execution at ledger close), GraphQL API
Cloud execution environment for blockchain data processing.
- GitHub: https://github.com/xycloo/zephyr-vm
- Use Case: Indexing, monitoring, automation
- Features: Self-hostable, ledger-close execution
OpenZeppelin Stellar Contracts
OpenZeppelin Stellar Contracts
Audited smart contract library for Soroban (track latest release tags before pinning versions).
针对Soroban的经过审计的智能合约库(固定版本前请跟踪最新发布标签)。
Scout Soroban (CoinFabrik)
Scout Soroban(CoinFabrik)
开源漏洞检测器,为Soroban合约提供23种检测器。
OpenZeppelin Security Detectors SDK
OpenZeppelin Security Detectors SDK
Certora Sunbeam Prover
Certora Sunbeam Prover
针对Soroban的形式化验证工具 — Certora支持的首个WASM平台。
Runtime Verification — Komet
Runtime Verification — Komet
为Soroban设计的形式化验证和测试工具(获SCF资助)。
Soroban Security Portal (Inferara)
Soroban Security Portal(Inferara)
Community security knowledge base (SCF-funded).
- Website: https://sorobansecurity.com
- Features: Searchable audit reports, vulnerability database, best practices
Stellar SDK (JavaScript)
Stellar SDK(JavaScript)
Official JavaScript/TypeScript SDK.
官方JavaScript/TypeScript SDK。
Soroban Rust SDK
Soroban Rust SDK
Rust SDK for Soroban contract development.
Reflector Network
Reflector Network
Cross-chain oracle with 20,000+ asset support.
Band Protocol
Band Protocol
Anchors & On/Off Ramps
锚点与出入金通道
Stellar Ramps
Stellar Ramps
Anchor Platform
Anchor Platform
SDF-maintained platform for building SEP-compliant anchors.
由SDF维护的平台,用于构建符合SEP标准的锚点。
StellarExpert
StellarExpert
Comprehensive network explorer with analytics.
- Website: https://stellar.expert
- Features: Transactions, accounts, assets, contracts
Developer tools and transaction builder.
Alternative explorer with contract support.
Stellar Disbursement Platform (SDP)
Stellar Disbursement Platform(SDP)
Bulk payment infrastructure for enterprises.
Soroban Examples
Soroban Examples
Soroban Example dApp
Soroban Example dApp
Soroban Guide (Xycloo)
Soroban Guide(Xycloo)
Soroban Contracts (icolomina)
Soroban Contracts(icolomina)
Oracle Example
Oracle Example
Publisher-subscriber oracle pattern.
OZ Stellar NFT
OZ Stellar NFT
Simple NFT using OpenZeppelin.
Allbridge Core
Allbridge Core
Cross-chain stable swap bridge (Stellar is 10th supported chain).
- Use Case: Cross-chain stablecoin transfers (USDC between Stellar, Base, Arbitrum, etc.)
- Features: Automatic Stellar account activation, liquidity pools
跨链稳定币兑换桥(Stellar是第10个支持的链)。
- 用例:跨链稳定币转账(Stellar、Base、Arbitrum等之间的USDC)
- 特性:自动激活Stellar账户、流动性池
Omnichain interoperability protocol with Stellar support.
- Use Case: Cross-chain messaging, token bridging (OFT/ONFT), dApp interoperability
- Features: OApp standard, Omni-Chain Fungible Tokens, native issuer minting/burning control
支持Stellar的全链互操作性协议。
- 用例:跨链消息传递、代币桥(OFT/ONFT)、dApp互操作性
- 特性:OApp标准、全链可替代代币、原生发行方铸币/销毁控制
Builder Teams & Companies
开发团队与公司
Notable teams shipping production-level code on Stellar/Soroban. For a broader directory, see
Stellar Ecosystem.
| Team | Website | GitHub | X/Twitter | Notable Projects |
|---|
| Lightsail Network | lightsail.network | lightsail-network | @overcat_me | Quasar RPC, Java/Python SDKs, Ledger app, validators |
| PaltaLabs | paltalabs.io | paltalabs | @PaltaLabs | Soroswap, DeFindex |
| Aha Labs | ahalabs.dev | AhaLabs | @AhaLabsDev | Scaffold Stellar, Soroban CLI contributions |
| OpenZeppelin | openzeppelin.com | OpenZeppelin | @OpenZeppelin | Contracts library, Relayer, Monitor, Security Detectors SDK |
| Cheesecake Labs | cheesecakelabs.com | CheesecakeLabs | @CheesecakeLabs | Stellar Plus library |
| Script3 / Blend Capital | script3.io | script3, blend-capital | @script3official | Blend Protocol |
| Xycloo Labs | xycloo.com | Xycloo | @heytdep | Mercury indexer, Zephyr VM |
| CoinFabrik | coinfabrik.com | CoinFabrik | @coinfabrik | Scout Soroban (static analysis) |
| Creit Tech | creit.tech | Creit-Tech | @CreitTech_ | Stellar Wallets Kit, xBull, SorobanHub |
| Ultra Stellar | ultrastellar.com | lobstrco | @Lobstrco | LOBSTR wallet, StellarExpert |
Stellar Ecosystem Directory
Stellar生态系统目录
The canonical, up-to-date project directory maintained by SDF.
- Website: https://stellar.org/ecosystem
- Features: Search by country, asset, category
- Includes: DeFi, wallets, anchors, on/off ramps, exchanges, infrastructure
SCF Project Tracker
SCF项目跟踪器
All Stellar Community Fund–funded projects with status and milestones.
所有获Stellar社区基金资助的项目,包含状态和里程碑。
Stellar Community Fund (SCF)
Stellar社区基金(SCF)
Soroban Audit Bank
Soroban审计库
Major Issuers on Stellar
Stellar上的主要发行方
- Franklin Templeton: Regulated fund tokens
- Ondo: Tokenized real estate
- RedSwan: $100M commercial real estate
- Centrifuge: Yield-generating tokens
- WisdomTree: Asset-backed tokens
- Franklin Templeton:受监管基金代币
- Ondo:代币化房地产
- RedSwan:1亿美元商业地产
- Centrifuge:生息代币
- WisdomTree:资产支持代币
- USDC (Circle): Primary USD stablecoin
- EURC (Circle): EUR stablecoin
- PYUSD (PayPal): Verify current issuance and distribution details before launch planning
- USDC(Circle):主要美元稳定币
- EURC(Circle):欧元稳定币
- PYUSD(PayPal):启动规划前请验证当前发行和分发细节
Enterprise Integrations
企业集成
Major companies building on Stellar:
- PayPal: PYUSD stablecoin
- Visa: Settlement infrastructure
- Mastercard: Payment rails
- Wirex: USDC/EURC settlement
- U.S. Bank: Custom stablecoin testing
- PwC: Stablecoin exploration
在Stellar上进行开发的主要公司:
- PayPal:PYUSD稳定币
- Visa:结算基础设施
- Mastercard:支付通道
- Wirex:USDC/EURC结算
- 美国银行:自定义稳定币测试
- 普华永道:稳定币探索
Part 3: Curated Resources
第三部分:精选资源
Official Documentation
官方文档
Stellar Developer Docs
Stellar开发者文档
Client SDKs (Application Development)
客户端SDK(应用开发)
Contract SDK (Soroban Development)
合约SDK(Soroban开发)
Scaffold Stellar
Scaffold Stellar
Quickstart (Local Development)
快速开始(本地开发)
Contract Libraries & Tools
合约库与工具
OpenZeppelin Stellar Contracts
OpenZeppelin Stellar Contracts
Smart Account SDKs
智能账户SDK
For DeFi protocols, wallets, oracles, gaming/NFTs, cross-chain bridges, and builder teams, see Part 2: Stellar Ecosystem below.
如需DeFi协议、钱包、预言机、游戏/NFT、跨链桥和开发团队,请查看下方的第二部分:Stellar生态系统。
For vulnerability patterns, checklists, and detailed tooling guides, see Soroban security section.
如需漏洞模式、检查清单和详细工具指南,请查看Soroban安全章节。
Bug Bounty Programs
漏洞赏金计划
Audit Bank & Audit Firms
审计库与审计公司
- Soroban Audit Bank - $3M+ deployed, 43+ audits
- Audited Projects List - Public audit registry
- Partners: OtterSec, Veridise, Runtime Verification, CoinFabrik, QuarksLab, Coinspect, Certora, Halborn, Zellic, Code4rena
- Soroban审计库 - 已部署300万美元+,完成43+次审计
- 已审计项目列表 - 公开审计注册表
- 合作伙伴:OtterSec、Veridise、Runtime Verification、CoinFabrik、QuarksLab、Coinspect、Certora、Halborn、Zellic、Code4rena
Zero-Knowledge Proofs (Status-Sensitive)
零知识证明(状态敏感)
For comprehensive ZK development guidance, see zk-proofs.md.
Always verify CAP status and network support before treating any ZK primitive as production-available.
如需全面的ZK开发指引,请查看zk-proofs.md。
在将任何ZK原语视为可用于生产环境前,请务必验证CAP状态和网络支持情况。
Protocol & Specifications
协议与规范
Proving Systems & Tooling
证明系统与工具
Data Documentation Hub
数据文档中心
Historical Data & Analytics
历史数据与分析
- Hubble - BigQuery dataset (updated every 30 min)
- Galexie - Data pipeline for building data lakes
- Data Lake - Powers RPC Infinite Scroll (public via AWS Open Data)
- Hubble - BigQuery数据集(每30分钟更新)
- Galexie - 用于构建数据湖的数据管道
- 数据湖 - 为RPC无限滚动提供支持(通过AWS开放数据公开)
Anchors & On/Off Ramps
锚点与出入金通道
Protocol & Governance
协议与治理
Stellar Protocol
Stellar协议
Project Directories & Funding
项目目录与资助
Ecosystem Discovery
生态系统发现
Blog Posts & Guides
博客文章与指南
Stablecoins on Stellar
Stellar上的稳定币
Key People to Follow
值得关注的关键人物
Builders and contributors actively shaping the Stellar/Soroban ecosystem:
| Name | GitHub | X/Twitter | Focus |
|---|
| Tyler van der Hoeven | kalepail | @kalepail | SDF DevRel, Smart Account Kit, Passkey Kit, Launchtube |
| Leigh McCulloch | leighmcculloch | @leigh | SDF core engineer, Stellar CLI, Soroban SDK |
| James Bachini | jamesbachini | @james_bachini | SDF Dev in Residence, Soroban Playground, tutorials |
| Elliot Voris | ElliotFriend | @ElliotFriend | SDF DevRel, community education |
| Carsten Jacobsen | carstenjacobsen | — | SDF, weekly dev meetings, Soroban examples |
| Esteban Iglesias | esteblock | @esteblock_dev | PaltaLabs, Soroswap, DeFindex |
| Markus Paulson-Luna | markuspluna | @script3official | Script3, Blend Protocol |
| Alexander Mootz | mootz12 | — | Script3, Blend contracts |
| Tommaso | heytdep | @heytdep | Xycloo Labs, Mercury indexer, ZephyrVM |
| OrbitLens | orbitlens | @orbitlens | Reflector oracle, StellarExpert, Albedo |
| Frederic Rezeau | FredericRezeau | @FredericRezeau | Litemint, soroban-kit, gaming |
| Jun Luo (Overcat) | overcat | @overcat_me | Lightsail Network, Quasar RPC, Java/Python SDKs, Ledger app |
| Jay Geng | jayz22 | — | SDF, Soroban SDK, confidential tokens |
| Chad Ostrowski | chadoh | @chadoh | Aha Labs CEO, Scaffold Stellar, Soroban CLI |
| Willem Wyndham | willemneal | @willemneal | Aha Labs co-founder, Scaffold Stellar, JS contract client |
积极塑造Stellar/Soroban生态系统的开发者和贡献者:
Builder Teams & Companies
开发团队与公司
See Part 2: Stellar Ecosystem above for a table of teams shipping production code on Stellar/Soroban, with GitHub orgs, websites, and Twitter handles.
如需在Stellar/Soroban上交付生产级代码的团队列表,包括GitHub组织、官网和Twitter账号,请查看上方的第二部分:Stellar生态系统。