x402-engineer 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENT.md +102 -0
- package/README.md +43 -0
- package/dist/cli.cjs +137 -0
- package/package.json +51 -0
- package/skills/stellar-dev/SKILL.md +146 -0
- package/skills/stellar-dev/advanced-patterns.md +188 -0
- package/skills/stellar-dev/api-rpc-horizon.md +521 -0
- package/skills/stellar-dev/common-pitfalls.md +510 -0
- package/skills/stellar-dev/contracts-soroban.md +565 -0
- package/skills/stellar-dev/ecosystem.md +430 -0
- package/skills/stellar-dev/frontend-stellar-sdk.md +651 -0
- package/skills/stellar-dev/resources.md +306 -0
- package/skills/stellar-dev/security.md +491 -0
- package/skills/stellar-dev/standards-reference.md +94 -0
- package/skills/stellar-dev/stellar-assets.md +419 -0
- package/skills/stellar-dev/testing.md +786 -0
- package/skills/stellar-dev/zk-proofs.md +136 -0
- package/skills/x402-add-paywall/SKILL.md +208 -0
- package/skills/x402-add-paywall/references/patterns.md +132 -0
- package/skills/x402-debug/SKILL.md +92 -0
- package/skills/x402-debug/references/checklist.md +146 -0
- package/skills/x402-explain/SKILL.md +136 -0
- package/skills/x402-init/SKILL.md +129 -0
- package/skills/x402-init/templates/env-example.md +17 -0
- package/skills/x402-init/templates/express/config.ts.md +29 -0
- package/skills/x402-init/templates/express/server.ts.md +30 -0
- package/skills/x402-init/templates/fastify/adapter.ts.md +66 -0
- package/skills/x402-init/templates/fastify/config.ts.md +29 -0
- package/skills/x402-init/templates/fastify/server.ts.md +90 -0
- package/skills/x402-init/templates/hono/config.ts.md +29 -0
- package/skills/x402-init/templates/hono/server.ts.md +31 -0
- package/skills/x402-init/templates/next-app-router/config.ts.md +29 -0
- package/skills/x402-init/templates/next-app-router/server.ts.md +31 -0
- package/skills/x402-stellar/SKILL.md +139 -0
- package/skills/x402-stellar/references/api.md +237 -0
- package/skills/x402-stellar/references/patterns.md +276 -0
- package/skills/x402-stellar/references/setup.md +138 -0
- package/skills/x402-stellar/scripts/check-deps.js +218 -0
|
@@ -0,0 +1,306 @@
|
|
|
1
|
+
# Curated Resources (Source-of-Truth First)
|
|
2
|
+
|
|
3
|
+
## Official Documentation
|
|
4
|
+
|
|
5
|
+
### Stellar Developer Docs
|
|
6
|
+
- [Stellar Documentation](https://developers.stellar.org/docs) - Primary documentation
|
|
7
|
+
- [Build Smart Contracts](https://developers.stellar.org/docs/build/smart-contracts) - Soroban guides
|
|
8
|
+
- [Build Apps](https://developers.stellar.org/docs/build/apps) - Client application guides
|
|
9
|
+
- [Tools & SDKs](https://developers.stellar.org/docs/tools) - Available tooling
|
|
10
|
+
- [Networks](https://developers.stellar.org/docs/networks) - Network configuration
|
|
11
|
+
- [Learn Fundamentals](https://developers.stellar.org/docs/learn/fundamentals) - Core concepts
|
|
12
|
+
- [Security Best Practices](https://developers.stellar.org/docs/build/security-docs)
|
|
13
|
+
|
|
14
|
+
### API References
|
|
15
|
+
- [Stellar RPC Methods](https://developers.stellar.org/docs/data/apis/rpc/api-reference/methods) - RPC API
|
|
16
|
+
- [Horizon API](https://developers.stellar.org/docs/data/apis/horizon/api-reference) - REST API (legacy-focused)
|
|
17
|
+
- [Oracle Providers](https://developers.stellar.org/docs/data/oracles/oracle-providers)
|
|
18
|
+
|
|
19
|
+
## SDKs
|
|
20
|
+
|
|
21
|
+
### Client SDKs (Application Development)
|
|
22
|
+
- [JavaScript SDK](https://github.com/stellar/js-stellar-sdk) - `@stellar/stellar-sdk`
|
|
23
|
+
- [Python SDK](https://github.com/StellarCN/py-stellar-base) - `stellar-sdk`
|
|
24
|
+
- [Java SDK](https://github.com/lightsail-network/java-stellar-sdk) - `network.lightsail:stellar-sdk` (Lightsail Network)
|
|
25
|
+
- [Go SDK](https://github.com/stellar/go-stellar-sdk) - `txnbuild`, Horizon & RPC clients
|
|
26
|
+
- [Rust SDK (RPC Client)](https://github.com/stellar/rs-stellar-rpc-client)
|
|
27
|
+
- [SDK Documentation](https://developers.stellar.org/docs/tools/sdks/client-sdks)
|
|
28
|
+
|
|
29
|
+
### Contract SDK (Soroban Development)
|
|
30
|
+
- [Soroban Rust SDK](https://github.com/stellar/rs-soroban-sdk) - `soroban-sdk`
|
|
31
|
+
- [Soroban SDK Docs](https://docs.rs/soroban-sdk/latest/soroban_sdk/) - Rust docs
|
|
32
|
+
|
|
33
|
+
## CLI Tools
|
|
34
|
+
|
|
35
|
+
### Stellar CLI
|
|
36
|
+
- [Stellar CLI Repository](https://github.com/stellar/stellar-cli)
|
|
37
|
+
- [CLI Installation](https://developers.stellar.org/docs/tools/stellar-cli)
|
|
38
|
+
- [CLI Commands Reference](https://developers.stellar.org/docs/tools/stellar-cli/stellar-cli-commands)
|
|
39
|
+
|
|
40
|
+
### Scaffold Stellar
|
|
41
|
+
- [Scaffold Stellar](https://scaffoldstellar.org) - Full-stack dApp scaffolding (contracts + React/Vite/TS frontend)
|
|
42
|
+
- [Scaffold Docs](https://developers.stellar.org/docs/tools/scaffold-stellar) - Official documentation
|
|
43
|
+
- [GitHub](https://github.com/theahaco/scaffold-stellar) - Open source (Apache 2.0)
|
|
44
|
+
|
|
45
|
+
### Quickstart (Local Development)
|
|
46
|
+
- [Quickstart Docker](https://github.com/stellar/quickstart)
|
|
47
|
+
- [Quickstart Guide](https://developers.stellar.org/docs/tools/quickstart)
|
|
48
|
+
|
|
49
|
+
## Contract Libraries & Tools
|
|
50
|
+
|
|
51
|
+
### OpenZeppelin Stellar Contracts
|
|
52
|
+
- [OpenZeppelin Contracts](https://github.com/OpenZeppelin/stellar-contracts)
|
|
53
|
+
- [Documentation](https://developers.stellar.org/docs/tools/openzeppelin-contracts)
|
|
54
|
+
- [Contract Wizard](https://wizard.openzeppelin.com/stellar) - Generate contracts
|
|
55
|
+
|
|
56
|
+
### Smart Account SDKs
|
|
57
|
+
- [Smart Account Kit](https://github.com/kalepail/smart-account-kit) - Production smart wallet SDK (recommended)
|
|
58
|
+
- [Passkey Kit](https://github.com/kalepail/passkey-kit) - Legacy passkey wallet SDK
|
|
59
|
+
- [Super Peach](https://github.com/kalepail/superpeach) - Smart wallet implementation example
|
|
60
|
+
|
|
61
|
+
### Developer Tools
|
|
62
|
+
- [Stellar Wallets Kit](https://github.com/Creit-Tech/Stellar-Wallets-Kit) - Multi-wallet integration
|
|
63
|
+
- [OpenZeppelin Relayer](https://docs.openzeppelin.com/relayer) - Fee-sponsored transactions
|
|
64
|
+
|
|
65
|
+
## Example Repositories
|
|
66
|
+
|
|
67
|
+
### Official Examples
|
|
68
|
+
- [Soroban Examples](https://github.com/stellar/soroban-examples) - Core contract patterns
|
|
69
|
+
- [Soroban Example dApp](https://github.com/stellar/soroban-example-dapp) - Crowdfunding Next.js app
|
|
70
|
+
- [Stellar Repositories](https://github.com/orgs/stellar/repositories)
|
|
71
|
+
|
|
72
|
+
### Community Examples
|
|
73
|
+
- [Scout Soroban Examples](https://github.com/CoinFabrik/scout-soroban-examples) - Security-audited examples
|
|
74
|
+
- [Soroban Guide (Xycloo)](https://github.com/xycloo/soroban-guide) - Learning resources
|
|
75
|
+
- [Soroban Contracts (icolomina)](https://github.com/icolomina/soroban-contracts) - Governance examples
|
|
76
|
+
- [Oracle Example](https://github.com/FredericRezeau/soroban-oracle-example) - Pub-sub oracle pattern
|
|
77
|
+
- [OZ Stellar NFT](https://github.com/jamesbachini/OZ-Stellar-NFT) - Simple NFT with OpenZeppelin
|
|
78
|
+
|
|
79
|
+
## Ecosystem Projects
|
|
80
|
+
|
|
81
|
+
For DeFi protocols, wallets, oracles, gaming/NFTs, cross-chain bridges, and builder teams, see [ecosystem.md](ecosystem.md).
|
|
82
|
+
|
|
83
|
+
## Security
|
|
84
|
+
|
|
85
|
+
For vulnerability patterns, checklists, and detailed tooling guides, see [security.md](security.md).
|
|
86
|
+
|
|
87
|
+
### Bug Bounty Programs
|
|
88
|
+
- [Stellar Bug Bounty (Immunefi)](https://immunefi.com/bug-bounty/stellar/) - Up to $250K, covers core + Soroban
|
|
89
|
+
- [OpenZeppelin Stellar Bounty (Immunefi)](https://immunefi.com/bug-bounty/openzeppelin-stellar/) - Up to $25K
|
|
90
|
+
- [HackerOne VDP](https://stellar.org/grants-and-funding/bug-bounty) - Web application vulnerabilities
|
|
91
|
+
|
|
92
|
+
### Audit Bank & Audit Firms
|
|
93
|
+
- [Soroban Audit Bank](https://stellar.org/grants-and-funding/soroban-audit-bank) - $3M+ deployed, 43+ audits
|
|
94
|
+
- [Audited Projects List](https://stellar.org/audit-bank/projects) - Public audit registry
|
|
95
|
+
- Partners: OtterSec, Veridise, Runtime Verification, CoinFabrik, QuarksLab, Coinspect, Certora, Halborn, Zellic, Code4rena
|
|
96
|
+
|
|
97
|
+
### Static Analysis
|
|
98
|
+
- [Scout Soroban](https://github.com/CoinFabrik/scout-soroban) - 23 vulnerability detectors, VSCode extension
|
|
99
|
+
- [OZ Security Detectors SDK](https://github.com/OpenZeppelin/soroban-security-detectors-sdk) - Custom detector framework
|
|
100
|
+
|
|
101
|
+
### Formal Verification
|
|
102
|
+
- [Certora Sunbeam Prover](https://docs.certora.com/en/latest/docs/sunbeam/index.html) - WASM-level formal verification
|
|
103
|
+
- [CVLR Spec Language](https://github.com/Certora/cvlr) - Certora Verification Language for Rust
|
|
104
|
+
- [Runtime Verification Komet](https://runtimeverification.com/blog/introducing-komet-smart-contract-testing-and-verification-tool-for-soroban-created-by-runtime-verification) - Soroban verification tool
|
|
105
|
+
|
|
106
|
+
### Security Resources
|
|
107
|
+
- [Veridise Security Checklist](https://veridise.com/blog/audit-insights/building-on-stellar-soroban-grab-this-security-checklist-to-avoid-vulnerabilities/) - Soroban-specific
|
|
108
|
+
- [Soroban Security Portal](https://sorobansecurity.com) - Community vulnerability database
|
|
109
|
+
- [CoinFabrik Audit Reports](https://www.coinfabrik.com/smart-contract-audit-reports/)
|
|
110
|
+
- [Certora Security Reports](https://github.com/Certora/SecurityReports) - Includes Stellar verifications
|
|
111
|
+
|
|
112
|
+
## Zero-Knowledge Proofs (Status-Sensitive)
|
|
113
|
+
|
|
114
|
+
For comprehensive ZK development guidance, see [zk-proofs.md](zk-proofs.md).
|
|
115
|
+
|
|
116
|
+
Always verify CAP status and network support before treating any ZK primitive as production-available.
|
|
117
|
+
|
|
118
|
+
### Protocol & Specifications
|
|
119
|
+
- [Protocol upgrades](https://stellar.org/protocol-upgrades) - Upgrade timeline and network context
|
|
120
|
+
- [CAP-0074](https://github.com/stellar/stellar-protocol/blob/master/core/cap-0074.md) - BN254 host functions proposal
|
|
121
|
+
- [CAP-0075](https://github.com/stellar/stellar-protocol/blob/master/core/cap-0075.md) - Poseidon/Poseidon2 host functions proposal
|
|
122
|
+
|
|
123
|
+
### SDK Documentation
|
|
124
|
+
- [Soroban SDK BN254 module](https://docs.rs/soroban-sdk/latest/soroban_sdk/crypto/bn254/) - Verify availability in your pinned SDK version
|
|
125
|
+
- [Soroban SDK Crypto](https://docs.rs/soroban-sdk/latest/soroban_sdk/crypto/) - Full crypto module reference
|
|
126
|
+
|
|
127
|
+
### Proving Systems & Tooling
|
|
128
|
+
- [Noir Documentation](https://noir-lang.org/docs/) - Aztec's ZK domain-specific language
|
|
129
|
+
- [RISC Zero](https://dev.risczero.com/) - General-purpose zkVM for Rust programs
|
|
130
|
+
|
|
131
|
+
### Example Contracts
|
|
132
|
+
- [Soroban Examples](https://github.com/stellar/soroban-examples) - Official examples (includes `groth16_verifier`, `privacy-pools`, `import_ark_bn254`)
|
|
133
|
+
|
|
134
|
+
## Testing
|
|
135
|
+
|
|
136
|
+
### Testing Guides
|
|
137
|
+
- [Definitive Guide to Testing Smart Contracts](https://stellar.org/blog/developers/the-definitive-guide-to-testing-smart-contracts-on-stellar) - Comprehensive overview
|
|
138
|
+
- [Fuzzing Guide](https://developers.stellar.org/docs/build/guides/testing/fuzzing) - cargo-fuzz + SorobanArbitrary
|
|
139
|
+
- [Fuzzing Example Contract](https://developers.stellar.org/docs/build/smart-contracts/example-contracts/fuzzing)
|
|
140
|
+
- [Differential Testing](https://developers.stellar.org/docs/build/guides/testing/differential-tests-with-test-snapshots) - Automatic test snapshots
|
|
141
|
+
- [Fork Testing](https://developers.stellar.org/docs/build/guides/testing/fork-testing) - Test against production state
|
|
142
|
+
- [Mutation Testing](https://developers.stellar.org/docs/build/guides/testing/mutation-testing) - cargo-mutants
|
|
143
|
+
|
|
144
|
+
### Local Development
|
|
145
|
+
- [Stellar Quickstart](https://github.com/stellar/quickstart)
|
|
146
|
+
- [Docker Setup](https://developers.stellar.org/docs/tools/quickstart)
|
|
147
|
+
|
|
148
|
+
### Test Networks
|
|
149
|
+
- [Testnet Info](https://developers.stellar.org/docs/networks/testnet)
|
|
150
|
+
- [Friendbot](https://friendbot.stellar.org) - Testnet faucet
|
|
151
|
+
|
|
152
|
+
## Data & Analytics
|
|
153
|
+
|
|
154
|
+
### Data Documentation Hub
|
|
155
|
+
- [Stellar Data Overview](https://developers.stellar.org/docs/data) - Choose the right tool (APIs, indexers, analytics, oracles)
|
|
156
|
+
- [Indexer Directory](https://developers.stellar.org/docs/data/indexers) - All supported indexers
|
|
157
|
+
- [RPC Provider Directory](https://developers.stellar.org/docs/data/apis/rpc/providers) - All RPC infrastructure providers
|
|
158
|
+
|
|
159
|
+
### Block Explorers
|
|
160
|
+
- [StellarExpert](https://stellar.expert) - Network explorer & analytics
|
|
161
|
+
- [StellarExpert API](https://stellar.expert/openapi.html) - Free REST API (no auth, CORS-enabled)
|
|
162
|
+
- [Stellar Lab](https://lab.stellar.org) - Developer tools
|
|
163
|
+
- [StellarChain](https://stellarchain.io) - Alternative explorer
|
|
164
|
+
|
|
165
|
+
### Data Indexers
|
|
166
|
+
- [Mercury](https://mercurydata.app) - Stellar-native indexer with Retroshades + GraphQL ([docs](https://docs.mercurydata.app))
|
|
167
|
+
- [SubQuery](https://subquery.network) - Multi-chain indexer with Stellar/Soroban support ([quick start](https://subquery.network/doc/indexer/quickstart/quickstart_chains/stellar.html))
|
|
168
|
+
- [Goldsky](https://goldsky.com) - Real-time data replication pipelines + subgraphs ([Stellar docs](https://docs.goldsky.com/chains/stellar))
|
|
169
|
+
- [Zephyr VM](https://github.com/xycloo/zephyr-vm) - Serverless Rust execution at ledger close
|
|
170
|
+
|
|
171
|
+
### Historical Data & Analytics
|
|
172
|
+
- [Hubble](https://developers.stellar.org/docs/data/analytics/hubble) - BigQuery dataset (updated every 30 min)
|
|
173
|
+
- [Galexie](https://developers.stellar.org/docs/data/indexers/build-your-own/galexie) - Data pipeline for building data lakes
|
|
174
|
+
- [Data Lake](https://developers.stellar.org/docs/data/apis/rpc/admin-guide/data-lake-integration) - Powers RPC Infinite Scroll (public via AWS Open Data)
|
|
175
|
+
|
|
176
|
+
## Infrastructure
|
|
177
|
+
|
|
178
|
+
### Anchors & On/Off Ramps
|
|
179
|
+
- [Anchor Platform](https://github.com/stellar/java-stellar-anchor-sdk)
|
|
180
|
+
- [Anchor Docs](https://developers.stellar.org/docs/category/anchor-platform)
|
|
181
|
+
- [Anchor Fundamentals](https://developers.stellar.org/docs/learn/fundamentals/anchors)
|
|
182
|
+
- [Stellar Ramps](https://stellar.org/use-cases/ramps)
|
|
183
|
+
|
|
184
|
+
### Disbursements
|
|
185
|
+
- [Stellar Disbursement Platform](https://github.com/stellar/stellar-disbursement-platform)
|
|
186
|
+
- [SDP Documentation](https://developers.stellar.org/docs/category/use-the-stellar-disbursement-platform)
|
|
187
|
+
|
|
188
|
+
### RPC Providers
|
|
189
|
+
- [RPC Provider Directory](https://developers.stellar.org/docs/data/apis/rpc/providers) - Full list of providers
|
|
190
|
+
- [Quasar (Lightsail Network)](https://quasar.lightsail.network) - Stellar-native RPC, Archive RPC, hosted Galexie Data Lake
|
|
191
|
+
- [Blockdaemon](https://www.blockdaemon.com/soroban) - Enterprise RPC
|
|
192
|
+
- [Validation Cloud](https://www.validationcloud.io) - Testnet & Mainnet
|
|
193
|
+
- [QuickNode](https://www.quicknode.com) - Testnet, Mainnet & Dedicated
|
|
194
|
+
- [Ankr](https://www.ankr.com) - Testnet & Mainnet
|
|
195
|
+
- [NOWNodes](https://nownodes.io) - All networks incl. Futurenet
|
|
196
|
+
- [GetBlock](https://getblock.io) - Testnet & Mainnet
|
|
197
|
+
|
|
198
|
+
## Protocol & Governance
|
|
199
|
+
|
|
200
|
+
### Stellar Protocol
|
|
201
|
+
- [Stellar Protocol Repo](https://github.com/stellar/stellar-protocol)
|
|
202
|
+
- [CAPs](https://github.com/stellar/stellar-protocol/tree/master/core) - Core Advancement Proposals
|
|
203
|
+
- [SEPs](https://github.com/stellar/stellar-protocol/tree/master/ecosystem) - Stellar Ecosystem Proposals
|
|
204
|
+
|
|
205
|
+
### Key SEP Standards
|
|
206
|
+
- [SEP-0001](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0001.md) - stellar.toml
|
|
207
|
+
- [SEP-0010](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0010.md) - Web Authentication
|
|
208
|
+
- [SEP-0024](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0024.md) - Hosted Deposit/Withdrawal
|
|
209
|
+
- [SEP-0030](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0030.md) - Account Recovery
|
|
210
|
+
- [SEP-0031](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0031.md) - Cross-Border Payments
|
|
211
|
+
- [SEP-0041](https://developers.stellar.org/docs/tokens/token-interface) - Token Interface
|
|
212
|
+
- [SEP-0045](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0045.md) - Web Auth for Contract Accounts (Draft)
|
|
213
|
+
- [SEP-0046](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0046.md) - Contract Meta (Active)
|
|
214
|
+
- [SEP-0048](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0048.md) - Contract Interface Specification (Active)
|
|
215
|
+
- [SEP-0050](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0050.md) - Non-Fungible Tokens (Draft)
|
|
216
|
+
- [SEP-0056](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0056.md) - Tokenized Vault Standard (Draft, ERC-4626 equivalent)
|
|
217
|
+
|
|
218
|
+
### Network Upgrades
|
|
219
|
+
- [Protocol Upgrades](https://stellar.org/protocol-upgrades)
|
|
220
|
+
- [SDF Blog](https://stellar.org/blog)
|
|
221
|
+
|
|
222
|
+
## Project Directories & Funding
|
|
223
|
+
|
|
224
|
+
### Ecosystem Discovery
|
|
225
|
+
- [Stellar Ecosystem](https://stellar.org/ecosystem) - Official project directory
|
|
226
|
+
- [Stellar Community Fund Projects](https://communityfund.stellar.org/projects)
|
|
227
|
+
|
|
228
|
+
### Funding Programs
|
|
229
|
+
- [Stellar Community Fund](https://communityfund.stellar.org) - Grants up to $150K
|
|
230
|
+
- [Soroban Audit Bank](https://stellar.org/grants-and-funding/soroban-audit-bank)
|
|
231
|
+
- [$100M Soroban Adoption Fund](https://stellar.org/soroban)
|
|
232
|
+
|
|
233
|
+
## Learning Resources
|
|
234
|
+
|
|
235
|
+
### Official Tutorials
|
|
236
|
+
- [Getting Started](https://developers.stellar.org/docs/build/smart-contracts/getting-started)
|
|
237
|
+
- [Hello World Contract](https://developers.stellar.org/docs/build/smart-contracts/getting-started/hello-world)
|
|
238
|
+
- [Deploy to Testnet](https://developers.stellar.org/docs/build/smart-contracts/getting-started/deploy-to-testnet)
|
|
239
|
+
- [TypeScript Bindings](https://developers.stellar.org/docs/build/apps/guestbook/bindings)
|
|
240
|
+
- [Passkey Prerequisites](https://developers.stellar.org/docs/build/apps/guestbook/passkeys-prerequisites)
|
|
241
|
+
|
|
242
|
+
### Video Content
|
|
243
|
+
- [Stellar YouTube](https://www.youtube.com/@StellarDevelopmentFoundation)
|
|
244
|
+
- [Learn Rust for Smart Contracts (DAO Series)](https://www.youtube.com/watch?v=VeQM5N-0DrI)
|
|
245
|
+
- [Call Option Contract Walkthrough](https://www.youtube.com/watch?v=Z8FHVllP_D0)
|
|
246
|
+
- [Blend Protocol Tutorial](https://www.youtube.com/watch?v=58j0QkXKiDU)
|
|
247
|
+
|
|
248
|
+
### Developer Tools
|
|
249
|
+
- [Stella AI Bot](https://developers.stellar.org/docs/tools/developer-tools) - AI assistant for Stellar developer questions
|
|
250
|
+
- [Soroban Playground](https://soropg.com) - Browser-based Soroban IDE ([GitHub](https://github.com/jamesbachini/Soroban-Playground))
|
|
251
|
+
|
|
252
|
+
### Blog Posts & Guides
|
|
253
|
+
- [Composability on Stellar](https://stellar.org/blog/developers/composability-on-stellar-from-concept-to-reality)
|
|
254
|
+
- [Testing Smart Contracts Guide](https://stellar.org/blog/developers/the-definitive-guide-to-testing-smart-contracts-on-stellar)
|
|
255
|
+
- [Sorobounty Spectacular Tutorials](https://stellar.org/blog/developers/sorobounty-spectacular-dapp-tutorials)
|
|
256
|
+
- [Learn Soroban 1-2-3 (Community Tools)](https://stellar.org/blog/developers/learn-soroban-as-easy-as-1-2-3-with-community-made-tooling)
|
|
257
|
+
- [SCF Infrastructure Recap](https://stellar.org/blog/ecosystem/stellar-community-fund-recap-soroban-infrastructure)
|
|
258
|
+
- [Native vs Soroban Tokens](https://cheesecakelabs.com/blog/native-tokens-vs-soroban-tokens/)
|
|
259
|
+
- [57Blocks Integration Testing](https://57blocks.com/blog/soroban-integration-testing-best-practices)
|
|
260
|
+
|
|
261
|
+
## Stablecoins on Stellar
|
|
262
|
+
|
|
263
|
+
### Major Stablecoins
|
|
264
|
+
- [USDC on Stellar](https://www.circle.com/usdc/stellar) - Circle
|
|
265
|
+
- [EURC on Stellar](https://www.circle.com/en/eurc) - Circle
|
|
266
|
+
- PYUSD (PayPal) - Verify current issuer/distribution details before integration
|
|
267
|
+
|
|
268
|
+
### Asset Discovery
|
|
269
|
+
- [StellarExpert Asset Directory](https://stellar.expert/explorer/public/asset)
|
|
270
|
+
|
|
271
|
+
## Community
|
|
272
|
+
|
|
273
|
+
### Developer Resources
|
|
274
|
+
- [Stellar Developers Discord](https://discord.gg/stellar)
|
|
275
|
+
- [Stellar Stack Exchange](https://stellar.stackexchange.com)
|
|
276
|
+
- [GitHub Discussions](https://github.com/stellar/stellar-protocol/discussions)
|
|
277
|
+
|
|
278
|
+
### Key People to Follow
|
|
279
|
+
|
|
280
|
+
Builders and contributors actively shaping the Stellar/Soroban ecosystem:
|
|
281
|
+
|
|
282
|
+
| Name | GitHub | X/Twitter | Focus |
|
|
283
|
+
|------|--------|-----------|-------|
|
|
284
|
+
| Tyler van der Hoeven | [kalepail](https://github.com/kalepail) | [@kalepail](https://x.com/kalepail) | SDF DevRel, Smart Account Kit, Passkey Kit, Launchtube |
|
|
285
|
+
| Leigh McCulloch | [leighmcculloch](https://github.com/leighmcculloch) | [@___leigh___](https://x.com/___leigh___) | SDF core engineer, Stellar CLI, Soroban SDK |
|
|
286
|
+
| James Bachini | [jamesbachini](https://github.com/jamesbachini) | [@james_bachini](https://x.com/james_bachini) | SDF Dev in Residence, Soroban Playground, tutorials |
|
|
287
|
+
| Elliot Voris | [ElliotFriend](https://github.com/ElliotFriend) | [@ElliotFriend](https://x.com/ElliotFriend) | SDF DevRel, community education |
|
|
288
|
+
| Carsten Jacobsen | [carstenjacobsen](https://github.com/carstenjacobsen) | — | SDF, weekly dev meetings, Soroban examples |
|
|
289
|
+
| Esteban Iglesias | [esteblock](https://github.com/esteblock) | [@esteblock_dev](https://x.com/esteblock_dev) | PaltaLabs, Soroswap, DeFindex |
|
|
290
|
+
| Markus Paulson-Luna | [markuspluna](https://github.com/markuspluna) | [@script3official](https://x.com/script3official) | Script3, Blend Protocol |
|
|
291
|
+
| Alexander Mootz | [mootz12](https://github.com/mootz12) | — | Script3, Blend contracts |
|
|
292
|
+
| Tommaso | [heytdep](https://github.com/heytdep) | [@heytdep](https://x.com/heytdep) | Xycloo Labs, Mercury indexer, ZephyrVM |
|
|
293
|
+
| OrbitLens | [orbitlens](https://github.com/orbitlens) | [@orbitlens](https://x.com/orbitlens) | Reflector oracle, StellarExpert, Albedo |
|
|
294
|
+
| Frederic Rezeau | [FredericRezeau](https://github.com/FredericRezeau) | [@FredericRezeau](https://x.com/FredericRezeau) | Litemint, soroban-kit, gaming |
|
|
295
|
+
| Jun Luo (Overcat) | [overcat](https://github.com/overcat) | [@overcat_me](https://x.com/overcat_me) | Lightsail Network, Quasar RPC, Java/Python SDKs, Ledger app |
|
|
296
|
+
| Jay Geng | [jayz22](https://github.com/jayz22) | — | SDF, Soroban SDK, confidential tokens |
|
|
297
|
+
| Chad Ostrowski | [chadoh](https://github.com/chadoh) | [@chadoh](https://x.com/chadoh) | Aha Labs CEO, Scaffold Stellar, Soroban CLI |
|
|
298
|
+
| Willem Wyndham | [willemneal](https://github.com/willemneal) | [@willemneal](https://x.com/willemneal) | Aha Labs co-founder, Scaffold Stellar, JS contract client |
|
|
299
|
+
|
|
300
|
+
### Builder Teams & Companies
|
|
301
|
+
See [ecosystem.md](ecosystem.md) for a table of teams shipping production code on Stellar/Soroban, with GitHub orgs, websites, and Twitter handles.
|
|
302
|
+
|
|
303
|
+
### Foundation
|
|
304
|
+
- [Stellar Development Foundation](https://stellar.org/foundation)
|
|
305
|
+
- [Foundation Roadmap](https://stellar.org/foundation/roadmap)
|
|
306
|
+
- [Ecosystem Blog](https://stellar.org/blog/ecosystem)
|