Install
openclaw skills install suiAnswer 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.
openclaw skills install suiExpert 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
cd {baseDir}
chmod +x setup.sh && ./setup.sh
This clones:
# Search Sui docs
rg -i "keyword" {baseDir}/references/sui-docs/ --type md -C 2
# Search for specific concepts
rg -i "object|ownership|transfer" {baseDir}/references/ --type md
Sui is a Layer 1 blockchain designed for high throughput and low latency. Key innovations:
┌─────────────────────────────────────────┐
│ 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 mutation| 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.
Identify the question type:
Search if needed:
rg -i "question keywords" {baseDir}/references/
Provide clear answer with: