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?".
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
Related skills
- Implementing a SEP-41 token interface →
../assets/SKILL.md,../soroban/SKILL.md - Frontend SEP-7 / SEP-10 flows →
../dapp/SKILL.md - CAPs for cryptography (BLS, BN254, Poseidon) →
../zk-proofs/SKILL.md - x402/MPP protocol context →
../agentic-payments/SKILL.md
Part 1: SEP / CAP Standards Reference
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
Maintenance note
Standards status can change quickly. Before implementation, verify current status in:
- SEPs: stellar-protocol/ecosystem
- CAPs: stellar-protocol/core
Treat this file as a routing map, not a source of final governance/status truth.
High-value SEPs for app developers
Contracts and token interfaces
- SEP-0041: Soroban token interface
- SEP-0046: Contract metadata in Wasm
- SEP-0048: Contract interface specification
- SEP-0049: Upgradeable-contract guidance
- SEP-0050: NFT standard work
- SEP-0055: Contract build verification
- SEP-0056: Vault-style tokenized products
- SEP-0057: Regulated token patterns (T-REX)
Auth, identity, and metadata
Anchor and fiat integration
- SEP-0006: Programmatic deposit/withdrawal API
- SEP-0024: Hosted interactive anchor flow
- SEP-0031: Cross-border payment flow
- SEP-0012: KYC data exchange
High-value CAPs for Soroban developers
Soroban foundations
- CAP-0046: Soroban overview
- CAP-0046 subdocuments (
cap-0046-*.md): runtime, lifecycle, host functions, storage, auth, metering
Frequently used contract capabilities
- CAP-0051: secp256r1 verification (passkey-related cryptography)
- CAP-0053: TTL extension behavior
- CAP-0058: constructors (
__constructor) - 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.
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.
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.
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.
Practical workflow for AI agents
- 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.
Related docs
- Contract implementation details:
../soroban/SKILL.md - Advanced architecture guidance:
../soroban/SKILL.md - RPC and data access:
../data/SKILL.md - Security considerations:
../security/SKILL.md
Part 2: Stellar Ecosystem
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.
DeFi Protocols
Lending & Borrowing
Blend Protocol
Universal liquidity protocol enabling permissionless lending pools.
- Use Case: Lending, borrowing, yield generation
- GitHub: https://github.com/blend-capital/blend-contracts
- GitHub (v2): https://github.com/blend-capital/blend-contracts-v2
- Integrations: Meru, Airtm, Lobstr, DeFindex, Beans
Slender
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)
DEXs & AMMs
Soroswap
First DEX and aggregator on Stellar/Soroban.
- Use Case: Token swaps, liquidity provision, aggregation
- Website: https://soroswap.finance
- GitHub (Core): https://github.com/soroswap/core
- GitHub (Frontend): https://github.com/soroswap/frontend
- GitHub (Aggregator): https://github.com/soroswap/aggregator
- Docs: https://docs.soroswap.finance
- Features: AMM + DEX aggregator across Aqua, Phoenix, Stellar Classic DEX
Aquarius / AQUA Network
Governance-driven liquidity layer with AMM functionality.
- Use Case: Liquidity incentives, AMM, governance
- Website: https://aqua.network
- GitHub: https://github.com/AquaToken/soroban-amm
- GitHub (Org): https://github.com/AquaToken
- Token: AQUA (governance + rewards)
- Docs: https://docs.aqua.network
Phoenix Protocol
AMM protocol on Soroban.
- GitHub: https://github.com/Phoenix-Protocol-Group
- Use Case: Token swaps, liquidity pools
Yield & Vaults
DeFindex
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
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
Wallets
Browser Extensions
Freighter
SDF's flagship non-custodial browser wallet.
- Website: https://freighter.app
- Docs: https://docs.freighter.app
- GitHub: https://github.com/stellar/freighter
- GitHub (Mobile): https://github.com/stellar/freighter-mobile
- API: https://github.com/stellar/freighter/tree/master/library/freighter-api
- Features: Soroban support, mobile apps (iOS/Android), Discover browser
xBull
Feature-rich browser wallet with advanced capabilities.
- Website: https://xbull.app
- Features: Multi-account, hardware wallet support
Albedo
Lightweight web-based wallet and signing provider.
- Website: https://albedo.link
- Use Case: Web authentication, transaction signing
Rabet
Browser extension wallet for Stellar.
- Website: https://rabet.io
Hana Wallet
Modern Stellar wallet with DeFi features.
- Website: https://hana.network
Mobile Wallets
LOBSTR
Most popular Stellar mobile wallet.
- Website: https://lobstr.co
- Platforms: iOS, Android, Web
- Features: DEX trading, multisig, 2FA, asset discovery
Beans
Payments platform with yield features.
- Use Case: Payments, earning (via DeFindex/Blend)
- Features: Non-custodial yield generation
Multi-Wallet Integration
Stellar Wallets Kit
SDK for integrating multiple Stellar wallets.
- GitHub: https://github.com/Creit-Tech/Stellar-Wallets-Kit
- Supports: Freighter, LOBSTR, xBull, Albedo, Rabet, Hana, Ledger, Trezor, WalletConnect
Developer Tools
Smart Account & Authentication
Smart Account Kit (Recommended)
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)
Original TypeScript SDK for passkey-based smart wallets.
- GitHub: https://github.com/kalepail/passkey-kit
- Status: Legacy - use Smart Account Kit for new projects
- Use Case: Simple passkey wallet integration
- Integration: OpenZeppelin Relayer (gasless tx), Mercury (indexing)
- Demo: passkey-kit-demo.pages.dev
- Example: Super Peach
OpenZeppelin Relayer
Service for fee-sponsored transaction submission.
- Docs: https://docs.openzeppelin.com/relayer
- Use Case: Gasless transactions, fee sponsoring
Data Indexing
For a full directory of indexing options, see Stellar Indexer Docs.
Mercury
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
SubQuery
Multi-chain indexer supporting Stellar and Soroban.
- Website: https://subquery.network
- Quick Start: https://subquery.network/doc/indexer/quickstart/quickstart_chains/stellar.html
- Features: Block/transaction/operation/event handlers, multi-threading, 300+ chains
Goldsky
Real-time data replication and subgraph platform.
- Website: https://goldsky.com
- Docs: https://docs.goldsky.com/chains/stellar
- Features: Mirror (real-time pipelines), subgraphs, on-chain + off-chain data
Zephyr VM
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
Contract Libraries
OpenZeppelin Stellar Contracts
Audited smart contract library for Soroban (track latest release tags before pinning versions).
- GitHub: https://github.com/OpenZeppelin/stellar-contracts
- Docs: https://developers.stellar.org/docs/tools/openzeppelin-contracts
- Contract Wizard: https://wizard.openzeppelin.com/stellar
- Includes: Tokens (fungible/NFT), governance (timelock), vaults (SEP-56), access control, fee forwarder
- Crates:
stellar-tokens,stellar-access,stellar-contract-utils
Security Tools
Scout Soroban (CoinFabrik)
Open-source vulnerability detector with 23 detectors for Soroban contracts.
- GitHub: https://github.com/CoinFabrik/scout-soroban
- Install:
cargo install cargo-scout-audit - Features: CLI tool, VSCode extension, SARIF output for CI/CD
- Examples: https://github.com/CoinFabrik/scout-soroban-examples
OpenZeppelin Security Detectors SDK
Framework for building custom security detectors for Soroban.
- GitHub: https://github.com/OpenZeppelin/soroban-security-detectors-sdk
- Detectors:
auth_missing,unchecked_ft_transfer, improper TTL, contract panics - Extensible: Load external detector libraries, CI/CD ready
Certora Sunbeam Prover
Formal verification for Soroban — first WASM platform supported by Certora.
- Docs: https://docs.certora.com/en/latest/docs/sunbeam/index.html
- Spec Language: CVLR (Rust macros) — https://github.com/Certora/cvlr
- Reports: Blend V1 verification
- Verifies at: WASM bytecode level, eliminating compiler trust assumptions
Runtime Verification — Komet
Formal verification and testing tool designed for Soroban (SCF-funded).
- Docs: https://docs.runtimeverification.com/komet
- Repo: https://github.com/runtimeverification/komet
- Spec Language: Rust — property-based tests written in the same language as Soroban contracts
- Operates at: WASM bytecode level via KWasm semantics (eliminates compiler trust assumptions)
- Features: Fuzzing, testing, formal verification
- Reports: https://github.com/runtimeverification/publications
- Example: TokenOps audit and verification report
- Blog: Introducing Komet
Soroban Security Portal (Inferara)
Community security knowledge base (SCF-funded).
- Website: https://sorobansecurity.com
- Features: Searchable audit reports, vulnerability database, best practices
CLI & SDKs
Stellar CLI
Official command-line interface for Stellar/Soroban.
- Docs: https://developers.stellar.org/docs/tools/stellar-cli
- Features: Contract build, deploy, invoke, bindings generation
Stellar SDK (JavaScript)
Official JavaScript/TypeScript SDK.
- GitHub: https://github.com/stellar/js-stellar-sdk
- npm:
@stellar/stellar-sdk
Soroban Rust SDK
Rust SDK for Soroban contract development.
- GitHub: https://github.com/stellar/rs-soroban-sdk
- Crate:
soroban-sdk
Oracles
Reflector Network
Community-powered price oracle for Stellar.
- Website: https://reflector.network
- Docs: https://developers.stellar.org/docs/data/oracles/oracle-providers
- Features: SEP-40 compatible, on-chain/off-chain prices, webhooks
- Integrations: Blend, OrbitCDP, DeFindex, EquitX, Slender
DIA Oracle
Cross-chain oracle with 20,000+ asset support.
- Website: https://diadata.org
- Blog: https://www.diadata.org/blog/post/soroban-stellar-oracle-dia/
- Features: VWAPIR methodology, custom feeds
Band Protocol
Cross-chain data oracle on BandChain.
- Website: https://bandprotocol.com
- Architecture: Cosmos SDK-based, cross-chain
Gaming & NFTs
Litemint
NFT marketplace and gaming platform.
- GitHub: https://github.com/litemint/litemint-soroban-contracts
- Contracts: Timed auctions, royalty payments
- Features: Open/sealed bids, ascending/descending price, buy-now
Infrastructure
Anchors & On/Off Ramps
Stellar Ramps
Suite of open standards for fiat-crypto bridges.
- Docs: https://stellar.org/use-cases/ramps
- SEPs: SEP-6, SEP-24, SEP-31 (deposits/withdrawals/cross-border)
Anchor Platform
SDF-maintained platform for building SEP-compliant anchors.
- Docs: https://developers.stellar.org/docs/learn/fundamentals/anchors
- GitHub: https://github.com/stellar/java-stellar-anchor-sdk
Block Explorers
StellarExpert
Comprehensive network explorer with analytics.
- Website: https://stellar.expert
- Features: Transactions, accounts, assets, contracts
Stellar Lab
Developer tools and transaction builder.
- Website: https://lab.stellar.org
StellarChain
Alternative explorer with contract support.
- Website: https://stellarchain.io
Disbursements
Stellar Disbursement Platform (SDP)
Bulk payment infrastructure for enterprises.
- Docs: https://developers.stellar.org/docs/category/use-the-stellar-disbursement-platform
- GitHub: https://github.com/stellar/stellar-disbursement-platform
- Use Case: Mass payments, aid distribution, payroll
Example Repositories
Official Examples
Soroban Examples
Official educational smart contract examples.
- GitHub: https://github.com/stellar/soroban-examples
- Includes: Tokens, atomic swaps, auth, events, liquidity pools, timelock, deployer, merkle distribution
Soroban Example dApp
Crowdfunding dApp with Next.js frontend.
- GitHub: https://github.com/stellar/soroban-example-dapp
- Learning: Full-stack Soroban development, Freighter integration
Community Examples
Soroban Guide (Xycloo)
Learning resources and example contracts.
- GitHub: https://github.com/xycloo/soroban-guide
- Includes: Events, rock-paper-scissors, vaults, Dutch auctions
Soroban Contracts (icolomina)
Governance and investment contract examples.
- GitHub: https://github.com/icolomina/soroban-contracts
- Includes: Ballot voting, investment contracts, multisig
Oracle Example
Publisher-subscriber oracle pattern.
- GitHub: https://github.com/FredericRezeau/soroban-oracle-example
- Uses: soroban-kit oracle module
OZ Stellar NFT
Simple NFT using OpenZeppelin.
Cross-Chain
Axelar
Cross-chain gateway and Interchain Token Service for Soroban.
- GitHub: https://github.com/axelarnetwork/axelar-amplifier-stellar
- Use Case: Cross-chain messaging, token bridging, interoperability
- Status: Active development (verify latest activity before integrating)
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
LayerZero
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
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 |
Project Directories
Official Directories
Stellar Ecosystem Directory
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
All Stellar Community Fund–funded projects with status and milestones.
Funding Programs
Stellar Community Fund (SCF)
Grants up to $150K per funding round.
- Website: https://communityfund.stellar.org
- Funded: 100+ projects across DeFi, NFT, GameFi, Web3
Soroban Audit Bank
Security audit funding for SCF projects.
- Website: https://stellar.org/grants-and-funding/soroban-audit-bank
- Features: Pre-negotiated audit rates, readiness checklist
Real-World Assets
Major Issuers on Stellar
- Franklin Templeton: Regulated fund tokens
- Ondo: Tokenized real estate
- RedSwan: $100M commercial real estate
- Centrifuge: Yield-generating tokens
- WisdomTree: Asset-backed tokens
Stablecoins
- USDC (Circle): Primary USD stablecoin
- EURC (Circle): EUR stablecoin
- PYUSD (PayPal): Verify current issuance and distribution details before launch planning
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
Part 3: Curated Resources
Official Documentation
Stellar Developer Docs
- Stellar Documentation - Primary documentation
- Build Smart Contracts - Soroban guides
- Build Apps - Client application guides
- Tools & SDKs - Available tooling
- Networks - Network configuration
- Learn Fundamentals - Core concepts
- Security Best Practices
API References
- Stellar RPC Methods - RPC API
- Horizon API - REST API (legacy-focused)
- Oracle Providers
SDKs
Client SDKs (Application Development)
- JavaScript SDK -
@stellar/stellar-sdk - Python SDK -
stellar-sdk - Java SDK -
network.lightsail:stellar-sdk(Lightsail Network) - Go SDK -
txnbuild, Horizon & RPC clients - Rust SDK (RPC Client)
- SDK Documentation
Contract SDK (Soroban Development)
- Soroban Rust SDK -
soroban-sdk - Soroban SDK Docs - Rust docs
CLI Tools
Stellar CLI
Scaffold Stellar
- Scaffold Stellar - Full-stack dApp scaffolding (contracts + React/Vite/TS frontend)
- Scaffold Docs - Official documentation
- GitHub - Open source (Apache 2.0)
Quickstart (Local Development)
Contract Libraries & Tools
OpenZeppelin Stellar Contracts
- OpenZeppelin Contracts
- Documentation
- Contract Wizard - Generate contracts
Smart Account SDKs
- Smart Account Kit - Production smart wallet SDK (recommended)
- Passkey Kit - Legacy passkey wallet SDK
- Super Peach - Smart wallet implementation example
Developer Tools
- Stellar Wallets Kit - Multi-wallet integration
- OpenZeppelin Relayer - Fee-sponsored transactions
Example Repositories
Official Examples
- Soroban Examples - Core contract patterns
- Soroban Example dApp - Crowdfunding Next.js app
- Stellar Repositories
Community Examples
- Scout Soroban Examples - Security-audited examples
- Soroban Guide (Xycloo) - Learning resources
- Soroban Contracts (icolomina) - Governance examples
- Oracle Example - Pub-sub oracle pattern
- OZ Stellar NFT - Simple NFT with OpenZeppelin
Ecosystem Projects
For DeFi protocols, wallets, oracles, gaming/NFTs, cross-chain bridges, and builder teams, see Part 2: Stellar Ecosystem below.
Security
For vulnerability patterns, checklists, and detailed tooling guides, see Soroban security section.
Bug Bounty Programs
- Stellar Bug Bounty (Immunefi) - Up to $250K, covers core + Soroban
- OpenZeppelin Stellar Bounty (Immunefi) - Up to $25K
- HackerOne VDP - Web application vulnerabilities
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
Static Analysis
- Scout Soroban - 23 vulnerability detectors, VSCode extension
- OZ Security Detectors SDK - Custom detector framework
Formal Verification
- Certora Sunbeam Prover - WASM-level formal verification
- CVLR Spec Language - Certora Verification Language for Rust
- Runtime Verification Komet - Soroban verification tool
Security Resources
- Veridise Security Checklist - Soroban-specific
- Soroban Security Portal - Community vulnerability database
- CoinFabrik Audit Reports
- Certora Security Reports - Includes Stellar verifications
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.
Protocol & Specifications
- Protocol upgrades - Upgrade timeline and network context
- CAP-0074 - BN254 host functions proposal
- CAP-0075 - Poseidon/Poseidon2 host functions proposal
SDK Documentation
- Soroban SDK BN254 module - Verify availability in your pinned SDK version
- Soroban SDK Crypto - Full crypto module reference
Proving Systems & Tooling
- Noir Documentation - Aztec's ZK domain-specific language
- RISC Zero - General-purpose zkVM for Rust programs
Example Contracts
- Soroban Examples - Official examples (includes
groth16_verifier,privacy-pools,import_ark_bn254)
Testing
Testing Guides
- Definitive Guide to Testing Smart Contracts - Comprehensive overview
- Fuzzing Guide - cargo-fuzz + SorobanArbitrary
- Fuzzing Example Contract
- Differential Testing - Automatic test snapshots
- Fork Testing - Test against production state
- Mutation Testing - cargo-mutants
Local Development
Test Networks
- Testnet Info
- Friendbot - Testnet faucet
Data & Analytics
Data Documentation Hub
- Stellar Data Overview - Choose the right tool (APIs, indexers, analytics, oracles)
- Indexer Directory - All supported indexers
- RPC Provider Directory - All RPC infrastructure providers
Block Explorers
- StellarExpert - Network explorer & analytics
- StellarExpert API - Free REST API (no auth, CORS-enabled)
- Stellar Lab - Developer tools
- StellarChain - Alternative explorer
Data Indexers
- Mercury - Stellar-native indexer with Retroshades + GraphQL (docs)
- SubQuery - Multi-chain indexer with Stellar/Soroban support (quick start)
- Goldsky - Real-time data replication pipelines + subgraphs (Stellar docs)
- Zephyr VM - Serverless Rust execution at ledger close
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)
Infrastructure
Anchors & On/Off Ramps
Disbursements
RPC Providers
- RPC Provider Directory - Full list of providers
- Quasar (Lightsail Network) - Stellar-native RPC, Archive RPC, hosted Galexie Data Lake
- Blockdaemon - Enterprise RPC
- Validation Cloud - Testnet & Mainnet
- QuickNode - Testnet, Mainnet & Dedicated
- Ankr - Testnet & Mainnet
- NOWNodes - All networks incl. Futurenet
- GetBlock - Testnet & Mainnet
Protocol & Governance
Stellar Protocol
- Stellar Protocol Repo
- CAPs - Core Advancement Proposals
- SEPs - Stellar Ecosystem Proposals
Key SEP Standards
- SEP-0001 - stellar.toml
- SEP-0010 - Web Authentication
- SEP-0024 - Hosted Deposit/Withdrawal
- SEP-0030 - Account Recovery
- SEP-0031 - Cross-Border Payments
- SEP-0041 - Token Interface
- SEP-0045 - Web Auth for Contract Accounts (Draft)
- SEP-0046 - Contract Meta (Active)
- SEP-0048 - Contract Interface Specification (Active)
- SEP-0050 - Non-Fungible Tokens (Draft)
- SEP-0056 - Tokenized Vault Standard (Draft, ERC-4626 equivalent)
Network Upgrades
Project Directories & Funding
Ecosystem Discovery
- Stellar Ecosystem - Official project directory
- Stellar Community Fund Projects
Funding Programs
- Stellar Community Fund - Grants up to $150K
- Soroban Audit Bank
- $100M Soroban Adoption Fund
Learning Resources
Official Tutorials
Video Content
- Stellar YouTube
- Learn Rust for Smart Contracts (DAO Series)
- Call Option Contract Walkthrough
- Blend Protocol Tutorial
Developer Tools
- Stella AI Bot - AI assistant for Stellar developer questions
- Soroban Playground - Browser-based Soroban IDE (GitHub)
Blog Posts & Guides
- Composability on Stellar
- Testing Smart Contracts Guide
- Sorobounty Spectacular Tutorials
- Learn Soroban 1-2-3 (Community Tools)
- SCF Infrastructure Recap
- Native vs Soroban Tokens
- 57Blocks Integration Testing
Stablecoins on Stellar
Major Stablecoins
- USDC on Stellar - Circle
- EURC on Stellar - Circle
- PYUSD (PayPal) - Verify current issuer/distribution details before integration
Asset Discovery
Community
Developer Resources
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 |
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.