Sui
by @easonc13
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.
clawhub install suiπ About This Skill
name: sui-knowledge description: 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. version: 1.0.0 metadata: author: EasonClawdbot1 tags: sui, blockchain, web3, knowledge, ecosystem
Sui Knowledge Base
Expert knowledge about Sui blockchain ecosystem. Use this skill to answer questions about Sui concepts, architecture, tokenomics, and ecosystem.
When to Use This Skill
Activate when users ask about:
For Move programming questions β use sui-move skill instead
Setup References
cd {baseDir}
chmod +x setup.sh && ./setup.sh
This clones:
Quick Search
# Search Sui docs
rg -i "keyword" {baseDir}/references/sui-docs/ --type md -C 2Search for specific concepts
rg -i "object|ownership|transfer" {baseDir}/references/ --type md
Core Concepts
What is Sui?
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 Model
βββββββββββββββββββββββββββββββββββββββββββ
β Object Types β
βββββββββββββββββββββββββββββββββββββββββββ€
β Owned Objects β Single owner address β
β Shared Objects β Multiple can access β
β Immutable Objectsβ Frozen, read-only β
β Wrapped Objects β Nested in another β
βββββββββββββββββββββββββββββββββββββββββββ
ObjectID (32 bytes)version that increments on mutationTransaction Types
| Type | Consensus | Speed | Use Case | |------|-----------|-------|----------| | Owned Object | No (fast path) | ~200ms | Transfers, simple ops | | Shared Object | Yes (Mysticeti) | ~390ms | DEX, auctions, games |
SUI Token
Gas Model
Validators & Staking
Consensus: Mysticeti
Sui vs Other Chains
| 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 |
Ecosystem
Wallets
DEXs
NFT Marketplaces
Developer Tools
Common Questions
"Is Sui EVM compatible?"
No. Sui uses Move, not EVM. However, bridges exist to transfer assets from EVM chains."How fast is Sui?"
"How do I stake SUI?"
1. Open Sui Wallet 2. Go to Staking tab 3. Choose a validator 4. Enter amount and confirm"What's the difference between Sui Move and Aptos Move?"
Answering Workflow
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:
rg -i "question keywords" {baseDir}/references/
3. Provide clear answer with: - Direct answer first - Supporting details - Links to official docs if relevant