---
name: Standards
slug: standards
category: AI Engineering
description: Standards covers Stellar SEPs, CAPs, and ecosystem references for wallet auth, anchors, KYC, deposits, withdrawals, and token contracts. Use it when implementing SEP-10, SEP-12, SEP-6, SEP-24, or SEP-41 features.
github: "https://github.com/rylsherdamz-rgb/stellar-forge/tree/master/skills/standards"
language: HTML
stars: 14
forks: 0
install: "npx degit https://github.com/rylsherdamz-rgb/stellar-forge/tree/master/skills/standards ~/.claude/skills/standards"
installs_to: ~/.claude/skills/standards
source_path: skills/standards/SKILL.md
collection_size: 11
category_size: 2451
collection_url: "https://dirskills.com/collections/rylsherdamz-rgb/stellar-agentic-framework"
added: 2026-08-12T04:42:28.065Z
last_synced: 2026-08-12T04:42:28.065Z
canonical_url: "https://dirskills.com/skills/standards"
---

# Standards

Standards covers Stellar SEPs, CAPs, and ecosystem references for wallet auth, anchors, KYC, deposits, withdrawals, and token contracts. Use it when implementing SEP-10, SEP-12, SEP-6, SEP-24, or SEP-41 features.

**Install:**

```bash
npx degit https://github.com/rylsherdamz-rgb/stellar-forge/tree/master/skills/standards ~/.claude/skills/standards
```

## README

# Standards (SEPs + CAPs)

## When to Use
- Connecting a wallet via Stellar Wallets Kit
- Implementing SEP-10 (stellar.toml) for anchors
- Building KYC flow with SEP-12
- Handling deposits/withdrawals with SEP-6/SEP-24
- Using a SEP-41 token contract

## Key SEPs

| SEP | Purpose |
|-----|---------|
| SEP-1 | stellar.toml — defines off-chain metadata |
| SEP-6 | Deposit/Withdrawal API for anchors |
| SEP-10 | Stellar Web Auth (wallet authentication) |
| SEP-12 | KYC API (customer info) |
| SEP-24 | Interactive anchor deposit/withdrawal |
| SEP-41 | Contract token interface (SAC standard) |
| SEP-42 | Smart account passkeys |

## Key CAPs

| CAP | Purpose |
|-----|---------|
| CAP-59 | BLS12-381 host functions (ZK verification) |
| CAP-74 | BN254 curve support |
| CAP-75 | Poseidon hash for ZK |

## Ecosystem References
- **Wallets**: Freighter, Lobstr, Wallet Kit
- **Dev Tools**: stellar-sdk, soroban CLI, Hubble
- **DeFi**: Aquarius, Blend, Phoenix
- **Infra**: RPC providers, Horizon endpoints

## Strict Rules
1. Always check the SEP version listed in the integration docs
2. Testnet vs pubnet have different config values — never hardcode
3. SEP-41 tokens use the SAC pattern: `useContract().read("balance_of", [address])`
