目次
Suiとは?
Suiは、Meta(Facebook)出身のエンジニアが設立したMysten Labsによって開発されたLayer 1ブロックチェーンです。2023年5月にローンチされたSuiは、革新的なオブジェクト中心のデータモデルを導入し、Moveプログラミング言語を採用することで、これまでにない速度と優れた開発体験を実現しています。
主要なイノベーション
Suiの画期的な点は、そのオブジェクト中心モデルにあります。Ethereumのようなアカウントベースの状態ではなく、Suiではすべてがオブジェクトです。所有オブジェクトはコンセンサスなしで並列処理できるため、理論上297,000+ TPSのスループットを実現できます。
すべてのトランザクションをグローバルコンセンサスで処理する従来のブロックチェーンとは異なり、Suiは単純なトランザクション(トークン送金など)をコンセンサスを待たずに即時実行できます。共有オブジェクトを含むトランザクションのみが完全なコンセンサスを必要とします。
オブジェクト中心
すべてがオブジェクトです。所有オブジェクトはコンセンサスを省略し、即時ファイナリティを実現します。
Move言語
リソース指向プログラミングにより、スマートコントラクトでよくあるバグを防げます。
zkLogin
Google、Apple、Facebookでログインできます。シードフレーズは不要です。
Moveプログラミング言語
Suiは、もともとMetaがDiemブロックチェーン向けに開発したMoveプログラミング言語を採用しています。Moveはリソース指向の言語で、デジタル資産を第一級の存在として扱い、コピーや暗黙的な破棄はできません。
Move Language Features
リソース指向プログラミング
Digital assets in Move are "resources" that cannot be copied, accidentally destroyed, または double-spent. The type system enforces these guarantees at compile time, preventing entire classes of bugs.
形式検証
Move supports formal verification through the Move Prover, allowing developers to mathematically prove their スマートコントラクトs behave correctly. This is critical for DeFi applications handling millions in value.
リエントランシー攻撃なし
Unlike Solidity (Ethereum), Move's design makes reentrancy attacks impossible by construction. The borrow checker ensures safe resource handling, similar to Rust's safety guarantees.
Sui Move vs Standard Move
Sui uses its own variant of Move (Sui Move) that differs from the version used by Aptos. Key differences include:
- Object-centric global storage (vs account-based in standard Move)
- Object IDs as first-class citizens for direct addressing
- Programmable transaction blocks for composable operations
- Module initializers run once at publish time for setup
Move vs Solidity
Solidity(Ethereum)ではリエントランシー攻撃のような脆弱性を開発者が誤って作り込む可能性がありますが、Moveの所有権モデルでは、その種のバグは言語レベルで不可能です。つまり、ハッキングのリスクが減り、より安全なDeFiプロトコルを構築できます。
オブジェクト中心のデータモデル
Suiで最も革新的な機能は、オブジェクト中心のデータモデルです。Ethereumのようなグローバルなステートツリーではなく、Suiはすべてのデータを独立したオブジェクトとして整理し、並列処理できるようにしています。
Sui Object-Centric Model
Everything on Sui is an object with unique ID, type, and owner
SUI Token
0x2::sui::SUI
NFT Asset
0x7::nft::CollectibleNFT
Fast Path: Owned objects skip consensus entirely. Transfers execute in ~390ms with just sender confirmation.
所有オブジェクト
Objects owned by a single address (tokens, NFTs). Transactions involving only owned objects skip consensus entirely, achieving near-instant finality (~390ms).
共有オブジェクト
Objects accessible by multiple users (DEX pools, governance). These require Narwhal/Bullshark consensus for ordering, but are still fast (~2-3 seconds).
不変オブジェクト
Objects that can never be changed once created (published packages, frozen data). They can be referenced but never modified.
ラップドオブジェクト
Objects contained within other objects. They become part of their parent and are only accessible through the parent object's functions.
No Global State Bottleneck
Because Sui doesn't have a global state that every transaction must read from and write to, independent transactions can be processed in parallel without conflicting. This is fundamentally different from Ethereum, where even unrelated transactions must wait for their turn because they share the same world state.
並列トランザクション実行
Suiは、トランザクションを並列処理することで圧倒的なスループットを実現します。所有オブジェクトに関わる単純なトランザクションはコンセンサスを完全に回避し、共有オブジェクトのトランザクションではNarwhal & Bullsharkコンセンサスプロトコルが使用されます。
TPS Comparison (Transactions Per Second)
Theoretical peak throughput across major blockchains
Sui achieves its high TPS by processing independent transactions in parallel without requiring global consensus, only using consensus for shared object transactions.
ファストパス(シンプルトランザクション)
When a transaction only involves owned objects (like sending SUI tokens), it takes the "fast path" - the transaction is validated by a Byzantine-consistent broadcast と committed なしで needing full consensus. This results in ~390ms finality.
コンセンサスパス(共有オブジェクト)
When transactions touch shared objects (like a DEX liquidity pool), they go through Narwhal (mempool) と Bullshark (consensus) for ordering. This ensures correctness when multiple users interact で the same object simultaneously.
Programmable Transaction Blocks (PTBs)
Sui's PTBs allow up to 1,024 operations to be bundled into a single transaction. For example, you could mint an NFT, list it on a marketplace, and set a royalty - all in one atomic transaction. This composability is unique to Sui and dramatically reduces gas costs for complex operations.
zkLoginとアカウント抽象化
SuiはzkLoginを先駆けて導入し、既存のGoogle、Facebook、Apple、Twitchの認証情報でブロックチェーンアカウントを作成できるようにしました。シードフレーズもウォレットのダウンロードも不要で、OAuthでサインインするだけですぐにWeb3を使い始められます。
zkLoginの仕組み
User signs in で Google/Apple
OAuth 2.0 authentication
JWT token is received from the provider
Standard OpenID Connect flow
A zero-knowledge proof is generated
Proves ownership without revealing identity
Transaction is submitted to Sui network
User signs transactions without seed phrases
シードフレーズ不要
Users never see または manage 12/24 word シードフレーズs. Their blockchain identity is derived from their OAuth credentials, making onboarding as easy as "Sign in で Google".
プライバシーの保護
Zero-knowledge proofs ensure that the blockchain never learns which Google/Apple account is linked to a Sui address. Complete privacy is maintained while providing seamless authentication.
スポンサード・トランザクション
Apps can sponsor ガス代 for their users, meaning new users can start interacting で the blockchain immediately なしで first buying SUI tokens. This removes a major friction point in Web3 onboarding.
普及への影響
zkLogin is a game-changer for mainstream blockchain adoption. By eliminating seed phrases and wallet management, Sui apps can feel indistinguishable from regular web applications. Combined with sponsored transactions, developers can build apps where users never even know they're using a blockchain - the "invisible blockchain" experience that the industry has been striving for.
Suiエコシステム
Suiエコシステムはメインネット公開以来急速に成長しており、DeFiプロトコル、ゲームプラットフォーム、NFTマーケットプレイス全体でTVLは$800Mを超えています。
Cetus
DEX (CLMM)
Concentrated liquidity DEX
Navi Protocol
Lending
#1 lending on Sui
Scallop
Money Market
Institutional-grade lending
Turbos Finance
DEX
Concentrated liquidity
Aftermath
DeFi Suite
DEX + Staking + Yield
Bucket Protocol
Stablecoin
Sui-native stablecoin
DeFiプロトコル
- Cetus - Leading concentrated liquidity DEX
- Navi Protocol - #1 lending with $200M+ TVL
- Scallop - Institutional-grade money market
- Turbos Finance - Concentrated liquidity + perps
ゲームとNFT
- Sui8192 - Fully on-chain puzzle game
- Panzerdogs - PvP tank shooter with NFT tanks
- Clutchy - Premier NFT gaming platform
- SuiFrens - Official Sui ecosystem NFT mascots
SUIトークノミクス
SUIの最大供給量は100億トークンで固定されています。このトークンは、Suiネットワーク上でガス代、ステーキング、ガバナンスに使用されます。
ガス代
SUI is used to pay for computation and storage on the network. Sui's gas mechanism features stable, predictable pricing through a reference gas price set by validators each epoch.
ステーキング&セキュリティ
Delegated Proof of Stake secures the network. SUI holders delegate tokens to validators, earning ~4.5% APY while contributing to network security.
ストレージファンド
A portion of gas fees goes to Sui's storage fund, which subsidizes the cost of storing data on-chain over time. This ensures long-term sustainability and prevents state bloat.
ガバナンス
SUI holders participate in on-chain governance decisions, voting on protocol parameters, validator set management, と network upgrades.
SUI Token Distribution
SUIのステーキング
SUI保有者は、バリデーターにトークンをステーキングすることで、ネットワークを保護しながら報酬を獲得できます。現在のステーキングAPYはおよそ4-5%で、ロックアップ期間はありません。
Validator Network (100+ Validators)
Mysten Labs
Stake: 3.2%
Coinbase Cloud
Stake: 2.8%
OKX Earn
Stake: 2.1%
Figment
Stake: 1.9%
Chorus One
Stake: 1.5%
Sui validators earn staking rewards plus a share of gas fees. The gas fee subsidy mechanism redistributes storage fund earnings to stakers.
SUI Staking Calculator
≈ $1,500 USD
($67.50)
$1,567.5
* No lockup period - Sui staking is flexible. Rewards distributed every epoch (~24 hours). Gas fee subsidies available for stakers.
ネイティブなバリデーターステーキング
Sui Walletから直接バリデーターにSUIを委任できます。報酬は各エポック(約24時間)ごとに分配されます。最低ステーク量は不要です。
リキッドステーキング(Aftermath, Haedal)
ステーキングしたSUIを表すafSUIまたはhaSUIトークンを受け取れます。ステーキング報酬を得ながら、これらをDeFiで活用できます。
SUIの買い方
SUIは主要な暗号資産取引所のほぼすべてで購入できます。始め方は以下の通りです。
取引所を選ぶ
Binance、OKX、BybitはすべてSUIに対応しています。BinanceではコードTRADEOFF20を使うと手数料が20%割引になります。
本人確認を完了する
登録後にKYC認証を完了してください。ほとんどの取引所では数分で確認が完了します。
入金して購入
法定通貨または暗号資産を入金してからSUIを購入します。より有利な価格で購入したい場合は指値注文を使いましょう。
ウォレットへ送金
ステーキング、DeFi、NFTに利用するため、Suiウォレット(Sui Wallet、Suiet、Ethos)へ出金します。
SUIを取引手数料20%オフで購入
BinanceでコードTRADEOFF20を使って登録すると、すべての取引手数料が永久に20%割引になります。
Binanceで20% OFFを受け取るコードを使う: TRADEOFF20
Sui vs Solana vs Aptos
Suiは他の高性能ブロックチェーンと比べてどうなのでしょうか。次世代L1を代表する3つのチェーンを詳しく比較します。
| Metric | Sui | S Solana | A Aptos |
|---|---|---|---|
TPS (Theoretical) | 297,000+ | 65,000+ | 160,000 |
Finality | ~390ms | ~400ms | <1s |
Language | Move (Sui) | Rust/C | Move (Aptos) |
Consensus | Narwhal/Bullshark | PoH + Tower BFT | AptosBFT |
Avg Fee | ~$0.001 | $0.00025 | $0.001 |
Data Model | Object-centric | Account-based | Resource-based |
Ecosystem Maturity | Growing (2023) | Mature (2020) | Growing (2022) |
Sui Strengths
- Highest theoretical TPS
- zkLogin for Web2 onboarding
- Object model enables true parallelism
- Move language safety guarantees
Solana Strengths
- Most mature ecosystem & TVL
- Lowest fees ($0.00025)
- Largest developer community
- Firedancer upgrade for 1M+ TPS
Aptos Strengths
- Block-STM parallel execution
- Move language (account-based)
- On-chain upgrade mechanism
- Strong enterprise partnerships
Suiの主な優位性
Suiのオブジェクト中心モデルにより、すべてのバリデーターがすべてのトランザクションを処理する必要なく、真の並列実行が可能になります。さらにzkLoginを組み合わせることで、Suiはあらゆるブロックチェーンの中でもっともWeb2に近いオンボーディング体験を提供します。
重要ポイント
Sui achieves 297,000+ TPS で ~390ms finality for simple transactions
Built by former Meta engineers using the Move programming language
Object-centric model enables true parallel execution なしで global state
zkLogin eliminates シードフレーズs - sign in で Google/Apple/Facebook
Stake SUI for ~4.5% APY で no lockup period と ガス代 subsidies
Fast-growing ecosystem で Cetus, Navi, Scallop, と innovative gaming projects