Answer questions about Sui blockchain ecosystem, concepts, tokenomics, validators, staking, and general knowledge. Use when users ask "what is Sui", "how does Sui work", "Sui vs other chains", or any Sui-related questions that aren't specifically about Move programming.
Expert knowledge about Sui blockchain ecosystem. Use this skill to answer questions about Sui concepts, architecture, tokenomics, and ecosystem.
Activate when users ask about:
**For Move programming questions → use `sui-move` skill instead**
```bash
cd {baseDir}
chmod +x setup.sh && ./setup.sh
```
This clones:
```bash
rg -i "keyword" {baseDir}/references/sui-docs/ --type md -C 2
rg -i "object|ownership|transfer" {baseDir}/references/ --type md
```
Sui is a Layer 1 blockchain designed for high throughput and low latency. Key innovations:
1. **Object-Centric Model**: Unlike account-based chains, Sui treats everything as objects with unique IDs
2. **Parallel Execution**: Independent transactions execute in parallel without global ordering
3. **Move Language**: Safe, resource-oriented smart contract language
4. **Mysticeti Consensus**: Fast finality (~390ms) for shared objects
```
┌─────────────────────────────────────────┐
│ Object Types │
├─────────────────────────────────────────┤
│ Owned Objects → Single owner address │
│ Shared Objects → Multiple can access │
│ Immutable Objects→ Frozen, read-only │
│ Wrapped Objects → Nested in another │
└─────────────────────────────────────────┘
```
| Type | Consensus | Speed | Use Case |
|------|-----------|-------|----------|
| Owned Object | No (fast path) | ~200ms | Transfers, simple ops |
| Shared Object | Yes (Mysticeti) | ~390ms | DEX, auctions, games |
| Feature | Sui | Ethereum | Solana |
|---------|-----|----------|--------|
| Model | Object-centric | Account-based | Account-based |
| Language | Move | Solidity | Rust |
| TPS | 100k+ | ~15 | ~65k |
| Finality | <1s | ~12min | ~400ms |
| Parallel Exec | Yes (objects) | Limited | Yes |
No. Sui uses Move, not EVM. However, bridges exist to transfer assets from EVM chains.
1. Open Sui Wallet
2. Go to Staking tab
3. Choose a validator
4. Enter amount and confirm
1. **Identify the question type**:
- General knowledge → Answer from this skill
- Move programming → Refer to sui-move skill
- Specific API/code → Search references
2. **Search if needed**:
```bash
rg -i "question keywords" {baseDir}/references/
```
3. **Provide clear answer** with:
- Direct answer first
- Supporting details
- Links to official docs if relevant
Leave a review
No reviews yet. Be the first to review this skill!
# Download SKILL.md from killerskills.ai/api/skills/sui-knowledge/raw