A curated list of code and content from the Sui community.
Sui is an innovative, decentralized Layer 1 blockchain that redefines asset ownership.
Sui (swē) is the water element in Japanese philosophy. The power of the sui element lies in its fluidity—its ability to easily adapt to and transform any environment. Similarly, the Sui platform seeks to provide a flexible network that you can leverage to shape the web3 landscape.
The Sui platform is built on Sui Move, which is derived from the core Move programming language.
- Overview
- Books
- Tutorials
- Community
- Oracle
- RPC
- Products
- DeFi
- Code
- Tools
- IDEs
- Package Managers
- Explorer
- Wallets
- SDKs
- Papers
- Videos
- Slides
- Podcasts
- Blog Posts
- Security
- Website
- Discord
- Discord | Mysten Labs
- Twitter | SuiFoundation
- Twitter | Chinese ä¸ć–‡
- Twitter | Mysten Labs
- Telegram | English
- Telegram | Chinese ä¸ć–‡
- Telegram | Chinese ä¸ć–‡ĺĽ€ĺŹ‘者社区
- Sui Move by Example - A book on the Sui Move variant maintained by @MystenLabs.
- Move Book - Move book maintained by the Move core team (ä¸ć–‡).
- Move Book - Move book maintained by @damirka (ä¸ć–‡).
- Move Patterns - A book on Move software design patterns maintained by @villesundell.
- Programming with objects - Maintained by the Sui team.
- Implementing, testing, and verifying a fungible token - Maintained by the Move core team.
- Move Language - Interactive Move language course, free for everyone, maintained by imcoding.online (ä¸ć–‡).
- Sui Explorer (official)
- SuiVision
- SuiScan
- Sui Wallet - A chrome (v88+) extension wallet for Sui (Chrome Webstore).
- Suiet Wallet - A open-source wallet for Sui. (Chrome Webstore, Website)
- Ethos Wallet - Open-source chrome extension wallet for Sui (Chrome Webstore, Website).
- Surf - Open-source chrome extension wallet for Sui (Chrome Webstore, Website).
- Okx Wallet (Chrome Webstore, Website).
- ComingChat - A decentralized social finance/web3 portal. Supporting public chain wallets, such as Sui wallets.
- Sui Wallet - Sui Wallet Adapter.
- Suiet Wallet - Suiet Wallet Adapter.
- Suiet Wallet Kit - A package support all Sui wallets with customizable UI.
- Ethos Connect - UI with built-in wallet adapter and Email option for supporting all wallets and wallet-less users on Sui.
- Rust SDK (official)
- TS/JS SDK (official)
- Sui Typescript SDK (community)
- Golang SDK 1 by block vision (community)
- Golang SDK 2 by coming chat (community)
- Python SDK (community)
- Java SDK (community)
- Kotlin SDK (community)
- C# SDK (community)
- Sui Dart SDK (community)
- Pyth offer developers permissionless access to price feeds for equities, commodities, foreign exchange pairs, and digital assets
- SupraOracles offers decentralized oracle services for applications on Sui. Developers can now seamlessly fetch, validate, and integrate off-chain data into their smart contracts,
- Mysten Oracles The former allows lower assurance values to be posted and read by contracts at a cheaper gas cost point than high-assurance oracles. Low assurance oracles are best used for applications with low risk and non-financial consequences such as in games.
- https://rpc.mainnet.sui.io
- https://fullnode.mainnet.sui.io
- https://wallet-rpc.mainnet.sui.io
- https://explorer-rpc.mainnet.sui.io
- https://sui-rpc-mainnet.testnet-pride.com
- https://sui-mainnet.nodeinfra.com
- https://mainnet-rpc.sui.chainbase.online
- https://sui-mainnet-ca-1.cosmostation.io/
- https://sui-mainnet-ca-2.cosmostation.io/
- https://sui-mainnet-eu-1.cosmostation.io/
- https://sui-mainnet-eu-2.cosmostation.io/
- https://sui-mainnet-eu-3.cosmostation.io/
- https://sui-mainnet-eu-4.cosmostation.io/
- https://sui-mainnet-us-1.cosmostation.io/
- https://sui-mainnet-us-2.cosmostation.io/
- https://mainnet.sui.rpcpool.com
- https://rpc-mainnet.suiscan.xyz
- https://sui.publicnode.com
- https://sui-mainnet-rpc.allthatnode.com/
- https://sui-mainnet-rpc-germany.allthatnode.com/
- https://sui-mainnet-rpc-korea.allthatnode.com/
- https://sui1mainnet-rpc.chainode.tech/
- https://sui-rpc-mainnet.brightlystake.com/
- https://rpc.testnet.sui.io
- https://fullnode.testnet.sui.io
- https://wallet-rpc.testnet.sui.io
- https://explorer-rpc.testnet.sui.io
- https://sui-testnet.nodeinfra.com
- https://testnet-rpc.sui.chainbase.online
Products support sui
- deep-book
- cetus uni-v3
- turbos uni-v3
- Omnibtc uvi-v2
- AfterMath
- flowx uvi-v2
- kriya uni-V2
- suiswap uni-V2
- abex
- bluemove uni-v2
- bayswap uni-v2
- interest uni-v2
Code written in Move.
- Fungible token examples - Multiple example token implementations from Sui.
- XBTC - BTC mirror asset on Sui.
- NFT examples - Multiple NFT example implementations from Sui.
- NFT Protocol - NFT protocol and collection framework. From OriginByte.
- Suia - The first POAP application on Sui.
- Polymedia Profile - A system that lets users associate a profile (name, picture, etc) to their Sui address. Maintained by @juzybits.
- DeFi examples - Multiple DeFi example implementations from Sui.
- SuiRedPacket - A red packet social app that combines private chat and encrypted wallet on Sui.
- SuiAMMswap - Sui AMM Swap implemented by the OmniBTC team.
- DolaProtocol - A Decentralized Omnichain Liquidity Aggregation Protocol with the single coin pool of each public chain as the core, Wormhole, Layerzero and other cross-chain messaging protocols as the bridge, and Sui public chain as the settlement center.
- ObjectMarket - A unique object trading marketplace in the Sui network.
- CoinSwap - A toy implementation of a Uniswap-like liquidity pool containing two tokens.
- Offer - Generic implementation of atomic swaps for any pair of assets.
- Dmens - Decentralized Moments which is a Blockchain Twitter Protocol built on the Sui network.
TBA
- OmniBTC Bridge - A bridge between Bitcoin and Move language public chains (like Sui) based on ultra-light node.
- Account - A generic account for Diem-powered chains. From Diem.
A Move framework is the set of Move modules included in the genesis state of the chain. These modules typically implement key concepts like accounts, currencies. The ability to separate blockchain-specific framework logic from the generic functionality of the Move language is a key part of Move's platform-agnostic design.
- Move standard library - Utilities intended (but not required) to be used in every platform running Move. From the Move repo.
- Move nursery - Experimental modules that may eventually be promoted into the standard library. From the Move repo.
- Decimal - Efficient implementation of a decimal value. From 0L.
- Math - Math utility functions. From Starcoin.
- Compare - Polymorphic comparison (i.e., compare any two Move values of the same type). From the nursery.
- Vault - Library for capabilities. From the nursery.
- ACL - Library for list-based access control. From the nursery.
- TaoHe - A collection of nestable Move resources.
- Movemate - Smart contract building blocks for Sui (Math utilities, governance contracts, escrow, and more). Maintained by the Pentagon team.
- Move cron parser - Library is built for a purpose of parsing cron expression. Maintained by Snowflake Network team.
- Move Playground JS Library - Wrapping Move Playground by Pontem as a JavaScript library for browser. You can use it to build your own Move Playground.
- go-sui-indexer - An off-fullnode service to serve data from Sui Node.
- Sui Move Analyzer - A Visual Studio Code plugin that enhances the development experience of Move and Sui Move (source code).
- Move Vim - Maintained by @tzakian.
- Movey - A crates.io-style repository of Move packages.
- Move: A Language With Programmable Resources - This was the original Move white paper released in 2018. Many aspects of this are now out of date (e.g., the syntax and description of the bytecode instructions), but the first two sections are worth a read for explaining the difficulties of programming with assets and how Move tackles them.
- Robust Safety for Move
- The Move Borrow Checker
- Resources: A Safe Language Abstraction for Money
- Fast and Reliable Formal Verification of Smart Contracts with the Move Prover
- The Move Prover
- Verification of Programs Written in Libra's Move Language
- Exact and Linear-Time Gas-Cost Analysis
- The Move Programming Language
- Move on Sui
- Move: A Safe Language for Programming with Money - Talk from @sblackshear at the Fields Institute Blockchain research seminar series.
- Formal Verification of Move Programs for the Libra Blockchain - Talk from @DavidLDill at the Fields Institute Blockchain research seminar series.
- Move for the Masses - Talk at the Converge '22.
Contributions welcome! Read the contribution guidelines first.