├── details ├── example.md ├── explorer_oklink.md ├── sdk_sui_kit_scallop.md ├── iac_sui_terraform_modules.md ├── sdk_sui_rust.md ├── explorer_ptb_builder.md ├── explorer_polymedia.md ├── go_sui.md ├── explorer_local_sui_explorer.md ├── sdk_sui_go.md ├── sdk_sui_dart.md ├── sdk_pysui.md ├── explorer_suimon.md ├── oracle_supra.md ├── engine_dubhe.md ├── sdk_ksui.md ├── ide_chainide.md ├── ide_movestudio.md ├── indexer_sentio.md ├── sdk_sui_unity_opendive.md ├── ide_vscode_mysten_move_analyzer.md ├── explorer_suiscan.md ├── indexer_zettablock.md ├── sdk_suikit.md ├── ide_vscode_movebit_sui_move_analyzer.md ├── ide_welldone_code.md ├── explorer_suivision.md ├── sdk_sui_typescript.md ├── oracle_switchboard.md ├── ide_bitslab.md ├── oracle_pyth.md └── indexer_space_and_time.md ├── .github └── workflows │ └── ci.yml ├── new_tool_submission_template.md ├── media ├── logo.svg ├── prover_logo.svg └── surflux_logo.svg ├── CONTRIBUTING.md ├── LICENSE.txt └── README.md /details/example.md: -------------------------------------------------------------------------------- 1 | # Tooling Name (Please Replace) 2 | 3 | ## Tooling Category 4 | 5 | - [ ] AI 6 | - [ ] dApp Development 7 | - [ ] Explorer 8 | - [x] IDE 9 | - [ ] Indexer 10 | - [ ] Oracle 11 | - [ ] SDK 12 | - [ ] Walrus 13 | 14 | ## Description 15 | 16 | ## Features 17 | 18 | ## Latest Version Number of Sui Tested On 19 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | on: 3 | pull_request: 4 | jobs: 5 | Lint: 6 | runs-on: ubuntu-latest 7 | steps: 8 | - uses: actions/checkout@v4 9 | with: 10 | fetch-depth: 0 11 | 12 | - name: Typo Check 13 | uses: crate-ci/typos@master 14 | 15 | - name: Awesome Linter 16 | run: npx awesome-lint 17 | -------------------------------------------------------------------------------- /new_tool_submission_template.md: -------------------------------------------------------------------------------- 1 | # Tooling Name (Please Replace) 2 | 3 | ## Tooling Category 4 | 5 | - [ ] AI 6 | - [ ] dApp Development 7 | - [ ] Explorer 8 | - [ ] IDE 9 | - [ ] Indexer 10 | - [ ] Oracle 11 | - [ ] SDK 12 | - [ ] Walrus 13 | - [ ] Infrastructure as Code 14 | 15 | ## Homepage or Repo or Download Link 16 | 17 | ## Description 18 | 19 | ## Features 20 | 21 | ## Documentation or Tutorial 22 | 23 | ## Latest Version Number of Sui Tested On 24 | -------------------------------------------------------------------------------- /details/explorer_oklink.md: -------------------------------------------------------------------------------- 1 | # OKLink 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [x] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [ ] SDK 11 | 12 | ## Description 13 | 14 | Provide fundamental explorer and data APIs on Sui. 15 | 16 | ## Features 17 | - Fundamental network data (transactions, epoch,...) 18 | - [Fundamental blockchain data APIs](https://www.oklink.com/docs/en/#fundamental-blockchain-data) 19 | - Supported networks: 20 | - Mainnet 21 | -------------------------------------------------------------------------------- /details/sdk_sui_kit_scallop.md: -------------------------------------------------------------------------------- 1 | # Sui Kit (by [Scallop](github.com/scallop-io/sui-kit)) 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [x] SDK 11 | 12 | ## Description 13 | 14 | TypeScript Client Kit SDK for Sui blockchain 15 | 16 | ## Features 17 | 18 | - Transfer SUI, Custom Coin, and objects. 19 | - Move call functionality. 20 | - Programmable transaction support. 21 | - Query on-chain data. 22 | - HD wallet with multi-account management. 23 | -------------------------------------------------------------------------------- /details/iac_sui_terraform_modules.md: -------------------------------------------------------------------------------- 1 | # Sui Terraform Modules 2 | 3 | ## Tooling Category 4 | 5 | - [ ] AI 6 | - [ ] dApp Development 7 | - [ ] Explorer 8 | - [ ] IDE 9 | - [ ] Indexer 10 | - [ ] Oracle 11 | - [ ] SDK 12 | - [ ] Walrus 13 | - [x] Infrastructure as Code 14 | 15 | ## Description 16 | 17 | All-in-one solution for deploying, monitoring, and managing SUI infrastructure with ease. 18 | 19 | ## Features 20 | - Supported entities for monitoring: 21 | - Sui 22 | - Validator 23 | - Walrus 24 | - Storage Node 25 | -------------------------------------------------------------------------------- /details/sdk_sui_rust.md: -------------------------------------------------------------------------------- 1 | # Sui Rust SDK (by Mysten Labs) 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [x] SDK 11 | 12 | ## Description 13 | 14 | Sui Rust SDK contains APIs to interact with Sui blockchain. 15 | 16 | ## Features 17 | 18 | - [Supported operations](https://arc.net/l/quote/gmkrkhqg) 19 | - ⚠️ GraphQL is not supported yet 20 | - [Sui BCS types are supported](https://github.com/MystenLabs/sui/blob/main/crates/sui-types/src/base_types.rs) 21 | -------------------------------------------------------------------------------- /details/explorer_ptb_builder.md: -------------------------------------------------------------------------------- 1 | # PTB Builder Explorer 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [x] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [ ] SDK 11 | 12 | ## Description 13 | 14 | A fork of the Polymedia Explorer. 15 | 16 | ## Features 17 | - Fundamental network data (transactions, epoch,...) 18 | - Function execution 19 | - Analytics: 20 | - Validators 21 | - Supported networks: 22 | - Mainnet 23 | - Testnet 24 | - Devnet 25 | - Local 26 | - Custom nodes 27 | 28 | 29 | -------------------------------------------------------------------------------- /details/explorer_polymedia.md: -------------------------------------------------------------------------------- 1 | # Polymedia Explorer 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [x] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [ ] SDK 11 | 12 | ## Description 13 | 14 | A fork of the original Sui Explorer, which was discontinued by Mysten Labs. 15 | 16 | ## Features 17 | - Fundamental network data (transactions, epoch,...) 18 | - Function execution 19 | - Analytics: 20 | - Validators 21 | - Supported networks: 22 | - Mainnet 23 | - Testnet 24 | - Devnet 25 | - Local 26 | - Custom nodes 27 | 28 | 29 | -------------------------------------------------------------------------------- /details/go_sui.md: -------------------------------------------------------------------------------- 1 | # Sui Go SDK (by Pattonkan) 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [x] SDK 11 | 12 | ## Description 13 | 14 | The go-sui tool from Pattonkan facilitates basic Sui interactions. Additionally, this SDK features cleaner type definitions, supports devInspect transactions, and includes PTB by default. 15 | 16 | ## Features 17 | 18 | - [Features](https://github.com/pattonkan/sui-go/tree/main/examples) 19 | - [GraphQL](https://github.com/pattonkan/sui-go/pull/118) is supported. 20 | -------------------------------------------------------------------------------- /details/explorer_local_sui_explorer.md: -------------------------------------------------------------------------------- 1 | # Local Sui Explorer (by kkomelin) 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [x] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [ ] SDK 11 | 12 | ## Description 13 | 14 | Sui Explorer for your localnet. 15 | 16 | Sui Explorer Local is integrated into [Sui dApp Starter](https://github.com/suiware/sui-dapp-starter?tab=readme-ov-file) and [Suibase](https://github.com/chainmovers/suibase). 17 | 18 | ## Features 19 | - Object and transaction data view 20 | - Supported networks: 21 | - Local (default) 22 | - Custom nodes 23 | -------------------------------------------------------------------------------- /details/sdk_sui_go.md: -------------------------------------------------------------------------------- 1 | # Sui Go SDK (by SuiVision) 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [x] SDK 11 | 12 | ## Description 13 | 14 | The Sui-Go-SDK provided by BlockVision aims to offer access to all Sui RPC methods with Golang and also offers some additional features that make the integration easier. Sui-Go-SDK is designed for Sui in Go programming language. 15 | 16 | ## Features 17 | 18 | - [Features](https://github.com/block-vision/sui-go-sdk?tab=readme-ov-file#examples) 19 | - ⚠️ GraphQL is not supported yet. 20 | -------------------------------------------------------------------------------- /details/sdk_sui_dart.md: -------------------------------------------------------------------------------- 1 | # Sui Dart SDK (MofaLabs) 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [x] SDK 11 | 12 | ## Description 13 | 14 | Dart Client SDK for Sui blockchain 15 | 16 | ## Features 17 | 18 | - [Features](https://github.com/mofalabs/sui?tab=readme-ov-file#usage) 19 | - ⚠️ GraphQL is not supported yet. 20 | - [Sui BCS types are supported](https://github.com/mofalabs/sui/tree/main/lib/bcs) 21 | - [zkLogin SDK](https://github.com/mofalabs/zklogin) 22 | - ⚠️ [Deepbook SDK](https://github.com/mofalabs/deepbook) (not actively maintained) -------------------------------------------------------------------------------- /details/sdk_pysui.md: -------------------------------------------------------------------------------- 1 | # Pysui (by [FrankC01](https://github.com/FrankC01)) 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [x] SDK 11 | 12 | ## Description 13 | 14 | Python Client SDK for Sui blockchain 15 | 16 | ## Features 17 | 18 | - [Supported features](https://pysui.readthedocs.io/en/latest/index.html) 19 | - GraphQL (beta) is supported. 20 | - [Sui BCS types are supported](https://github.com/FrankC01/pysui/blob/main/pysui/sui/sui_types/bcs.py) 21 | - [Pysui Gadgets](https://github.com/FrankC01/pysui_gadgets) - Sui utilities built on top of Pysui -------------------------------------------------------------------------------- /details/explorer_suimon.md: -------------------------------------------------------------------------------- 1 | # Suimon CLI 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [x] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [ ] SDK 11 | 12 | ## Description 13 | 14 | Powerful command line tool designed to provide detailed dashboards for monitoring SUI network 15 | 16 | ## Features 17 | - Supported entities for monitoring: 18 | - Full Nodes 19 | - Validators 20 | - System State and Protocol 21 | - Release History 22 | - Active Validators 23 | - Validator Parameters 24 | - Validator Reports 25 | - Supported networks: 26 | - Devnet 27 | - Testnet 28 | - Mainnet -------------------------------------------------------------------------------- /details/oracle_supra.md: -------------------------------------------------------------------------------- 1 | # Supra Oracles 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [x] Oracle 10 | - [ ] SDK 11 | 12 | ## Features 13 | - [Pull-based price feed](https://docs.supra.com/docs/data-feeds/pull-model) ([Sui is supported](https://docs.supra.com/docs/data-feeds/pull-model/networks)) 14 | - [Push-based price feed](https://docs.supra.com/docs/data-feeds/decentralized) ([Sui is supported](https://docs.supra.com/docs/data-feeds/decentralized/networks)) 15 | - [Live Data Feed](https://supra.com/data) 16 | - [Supported pairs](https://docs.supra.com/docs/data-feeds/data-feeds-index) -------------------------------------------------------------------------------- /details/engine_dubhe.md: -------------------------------------------------------------------------------- 1 | # Dubhe (by Obelisk Labs) 2 | 3 | ## Tooling Category 4 | 5 | - [x] dApp Development 6 | - [ ] Explorer 7 | - [ ] IDE 8 | - [x] Indexer 9 | - [ ] Oracle 10 | - [x] SDK 11 | 12 | ## Description 13 | 14 | Engine for Everyone to Build Intent-Centric Worlds ⚙️ An Open-Source toolchain for Move Applications. 15 | 16 | ## Features 17 | 18 | - ⚡️ Built with [Move](https://move-language.github.io/move/) 19 | - 🏛️ Harvard Structural Architecture 20 | - 📦 Structured [Schema-based](https://dubhe.obelisk.build/dubhe/sui/schemas) Storage 21 | - 🌐 Multi-Move Ecosystem Support 22 | - 🛠️ Development Tools: 23 | - Sandbox Networking & Indexing 24 | - Type-safe SDKs 25 | - Hot Updates 26 | - Logic Upgrades & Data Migration 27 | - Automatic indexer 28 | -------------------------------------------------------------------------------- /details/sdk_ksui.md: -------------------------------------------------------------------------------- 1 | # Ksui 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [x] SDK 11 | 12 | ## Description 13 | 14 | Kotlin Multiplatform (KMP) SDK for integrating with the Sui blockchain. It is designed to be a type-safe, client-configurable, and multiplatform SDK that can be used across different platforms such as Android, iOS, JS, and JVM. It is built on top of the KMM toolchain and is designed to be extensible and easy to use. 15 | 16 | ## Features 17 | 18 | - [Features](https://github.com/mcxross/ksui?tab=readme-ov-file#features) 19 | - GraphQL is supported 20 | - [Sui BCS types are supported](https://github.com/mcxross/ksui/tree/master/lib/src/commonMain/kotlin/xyz/mcxross/ksui/serializer) 21 | -------------------------------------------------------------------------------- /details/ide_chainide.md: -------------------------------------------------------------------------------- 1 | # ChainIDE 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [x] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [ ] SDK 11 | 12 | ## Description 13 | 14 | ChainIDE is cloud-based IDE for creating decentralized applications to deploy on blockchains. It supports Sui smart contract development. 15 | 16 | ## Features 17 | - Move 18 | - Move 2024 is supported 19 | - Compilation 20 | - Unit Testing 21 | - Deployment 22 | - Project Management 23 | - Multiple workspaces 24 | - Persistent session 25 | - Integrated terminal 26 | - Utilities 27 | - Lightweight object explorer 28 | - Lightweight package explorer 29 | - Package function call 30 | - Example templates 31 | 32 | ## Latest Version Number of Sui Tested On 33 | 34 | -------------------------------------------------------------------------------- /details/ide_movestudio.md: -------------------------------------------------------------------------------- 1 | # MoveStudio 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [x] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [ ] SDK 11 | 12 | ## Description 13 | 14 | Online IDE for Sui smart contract development 15 | 16 | ## Features 17 | - Move 18 | - Move 2024 is supported 19 | - Compilation 20 | - Unit Testing 21 | - Deployment 22 | - Only support one default `sui` binary version 23 | - Project Management 24 | - Multiple workspaces 25 | - Persistent session 26 | - Import from local file system 27 | - Utilities 28 | - Lightweight object explorer 29 | - Lightweight package explorer 30 | - Package function call 31 | - Example templates 32 | 33 | ## Latest Version Number of Sui Tested On 34 | 35 | - `sui 1.25.0-b10ea7331e1c` -------------------------------------------------------------------------------- /details/indexer_sentio.md: -------------------------------------------------------------------------------- 1 | # Sentio 2 | 3 | ## Tooling Category 4 | 5 | - [ ] **AI** 6 | - [ ] **dApp Development** 7 | - [ ] **Explorer** 8 | - [ ] **IDE** 9 | - [x] **Indexer** 10 | - [ ] **Oracle** 11 | - [ ] **SDK** 12 | 13 | ## Description 14 | 15 | Transform raw indexed data (transactions, events,...) into meaningful usable data by writing custom processor logic. 16 | 17 | ## Features 18 | - Write SQL Query and export as API. 19 | - Only SQL API is supported 20 | - [Sentio Dash](https://dash.sentio.xyz) is similar to Dune 21 | - [Data Catalog](https://dash.sentio.xyz/sql) 22 | - Sentio Processor transform prebuilt indexed data into Metrics and Event Logs that can be used to create Sentio Dash (dashboard) 23 | - ⚠️ Sui specific documentation is missing. 24 | 25 | ## Latest Version Number of Sui Tested On 26 | 27 | -------------------------------------------------------------------------------- /details/sdk_sui_unity_opendive.md: -------------------------------------------------------------------------------- 1 | # Sui Unity SDK (OpenDive) 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [x] SDK 11 | 12 | ## Description 13 | 14 | The OpenDive Sui Unity SDK is the first fully-featured Unity SDK with offline transaction building. 15 | 16 | This means that games built with our SDK can directly craft custom Move calls without relying Sui's "unsafe" RPC calls under the [Transaction Builder API](https://docs.sui.io/sui-api-ref#transaction-builder-api) -- which in turn reduces the number of RPC / Network requests. 17 | 18 | ## Features 19 | 20 | - [Features](https://github.com/OpenDive/Sui-Unity-SDK?tab=readme-ov-file#features) 21 | - ⚠️ `Bech32` encoded private key is not supported. 22 | - ⚠️ GraphQL is not supported. 23 | - Sui BCS types are supported -------------------------------------------------------------------------------- /details/ide_vscode_mysten_move_analyzer.md: -------------------------------------------------------------------------------- 1 | # VSCode Move (Mysten Labs) 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [x] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [ ] SDK 11 | 12 | ## Description 13 | 14 | - VSCode Extension for Move on Sui smart contract development powered by LSP Move Analyzer language server developed by Mysten Labs. 15 | 16 | ## Features 17 | 18 | - Autocomplete 19 | - On-hover support 20 | - Real-time diagnostics 21 | - Go to definition 22 | - Inlay hints 23 | - Go/Find references 24 | - Move 25 | - Move 2024 is supported 26 | - Move 2024 syntax highlight ([VSCode Move Syntax](https://marketplace.visualstudio.com/items?itemName=damirka.move-syntax)) 27 | - Utilities 28 | - Integration with `sui` binary (Sui CLI) 29 | 30 | ## Latest Version Number of Sui Tested On 31 | 32 | Testnet v1.32.0 -------------------------------------------------------------------------------- /details/explorer_suiscan.md: -------------------------------------------------------------------------------- 1 | # Tooling Name (Please Replace) 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [x] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [ ] SDK 11 | 12 | ## Description 13 | 14 | Explorer and analytics platform for Sui. 15 | 16 | ## Features 17 | - [Data APIs](https://docs.blockberry.one/reference/sui-quickstart) 18 | - Fundamental blockchain data (transactions, epoch,...) 19 | - Analytics: 20 | - DeFi 21 | - Coins 22 | - NFTs 23 | - Validators 24 | - On chain usage 25 | - Performance stats 26 | - Automatic portfolio tracking 27 | - Verify and publish contract code 28 | - Function execution 29 | - News hub 30 | - Apps Directory 31 | - Supported networks: 32 | - Mainnet 33 | - Testnet 34 | - Devnet 35 | - Custom nodes 36 | - Administration: 37 | - [Submit Hub](https://suiscan.xyz/submit-hub) -------------------------------------------------------------------------------- /details/indexer_zettablock.md: -------------------------------------------------------------------------------- 1 | # ZettaBlock 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [ ] IDE 8 | - [x] Indexer 9 | - [ ] Oracle 10 | - [ ] SDK 11 | 12 | ## Homepage or Repo or Download Link 13 | 14 | 15 | 16 | ## Description 17 | 18 | Redefining the way Web3 developers interact and build on top of blockchain data. Generate custom GraphQL or REST APIs from SQL queries and incorporate your private off-chain data. 19 | 20 | ## Features 21 | - [DataHub & DevStudio](https://docs.zettablock.com/docs/datahub-and-devstudio) 22 | - Pre-built GraphQL APIs 23 | - Custom API with SQL queries 24 | - Custom API can be easily deployed through single click. GraphQL API is supported 25 | - API can be realtime if it is built from realtime refresh table 26 | - [Data Catalog](https://app.zettablock.com/v2/explore/tables) 27 | 28 | ## Latest Version Number of Sui Tested On 29 | 30 | -------------------------------------------------------------------------------- /details/sdk_suikit.md: -------------------------------------------------------------------------------- 1 | # SuiKit (by OpenDive) 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [x] SDK 11 | 12 | ## Description 13 | 14 | SuiKit is a Swift SDK natively designed to make developing for the Sui Blockchain easy. 15 | 16 | ## Features 17 | 18 | - [Features](https://github.com/OpenDive/SuiKit/tree/main?tab=readme-ov-file#features) 19 | - ⚠️ `Bech32` encoded private key is not supported. 20 | - ⚠️ GraphQL is partially supported. 21 | - [Sui BCS types are supported](https://github.com/OpenDive/SuiKit/tree/main/Sources/SuiKit/Types) 22 | - ⚠️ [Kiosk is supported](https://github.com/OpenDive/SuiKit/tree/main/Sources/SuiKit/Types/Structs/Kiosk) (might not be actively maintained) 23 | - ⚠️ [SuiNS is supported](https://github.com/OpenDive/SuiKit/tree/main/Sources/SuiKit/Types/Structs/SuiNS) (might not be actively maintained) 24 | -------------------------------------------------------------------------------- /details/ide_vscode_movebit_sui_move_analyzer.md: -------------------------------------------------------------------------------- 1 | # VSCode Sui Move Analyzer (MoveBit) 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [x] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [ ] SDK 11 | 12 | ## Description 13 | 14 | - VSCode Extension for Move on Sui smart contract development powered by LSP Sui Move Analyzer language server developed by Movebit. 15 | 16 | ## Features 17 | 18 | - Autocomplete 19 | - On-hover support 20 | - Real-time diagnostics 21 | - Go to definition 22 | - Go/Find references 23 | - Move 24 | - ⚠️ Latest Move 2024 is not supported (`2024.alpha` supported while latest is `2024.beta`) 25 | - Move 2024 syntax highlight ([VSCode Move-Msl-Syx](https://marketplace.visualstudio.com/items?itemName=MoveBit.move-msl-syx)) 26 | - Utilities 27 | - Integration with `sui` binary (Sui CLI) 28 | 29 | ## Latest Version Number of Sui Tested On 30 | 31 | ⚠️ Testnet v1.32.0 -------------------------------------------------------------------------------- /details/ide_welldone_code.md: -------------------------------------------------------------------------------- 1 | # WELLDONE Code 2 | 3 | > [!WARNING] 4 | > The tool is currently not working. 5 | 6 | ## Tooling Category 7 | 8 | - [ ] dApp Development 9 | - [ ] Explorer 10 | - [x] IDE 11 | - [ ] Indexer 12 | - [ ] Oracle 13 | - [ ] SDK 14 | 15 | ## Description 16 | 17 | WELLDONE Code is a Remix IDE Plugin. Using WELLDONE Code, developers can easily develop and test smart contracts in Remix IDE for non-EVM networks such as NEAR and Cosmos, in addition to EVM-compatible networks. Sui is also supported. 18 | 19 | ## Features 20 | 21 | - Move 22 | - ❌ Move 2024 not supported 23 | - Compilation 24 | - Unit Testing 25 | - Deployment 26 | - Project Management 27 | - Multiple workspaces 28 | - Persistent session 29 | - Utilities 30 | - Lightweight object explorer 31 | - Lightweight package explorer 32 | - Package function call 33 | - Example templates 34 | 35 | ## Latest Version Number of Sui Tested On 36 | 37 | ⚠️ N/A -------------------------------------------------------------------------------- /details/explorer_suivision.md: -------------------------------------------------------------------------------- 1 | # SuiVision 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [x] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [ ] SDK 11 | 12 | ## Description 13 | 14 | Data analytics covering transactions, wallets, staking, and validators 15 | 16 | ## Features 17 | - Fundamental blockchain data (transactions, epoch,...) 18 | - Analytics: 19 | - DeFi 20 | - Coins 21 | - NFTs 22 | - Validators 23 | - On chain usage 24 | - Performance stats 25 | - Automatic portfolio tracking 26 | - Verify and publish contract code 27 | - Function execution 28 | - SuiNS is supported 29 | - Supported networks: 30 | - Mainnet 31 | - Testnet 32 | - Devnet 33 | - Administration: 34 | - [Verified Coin Submit](https://forms.gle/wCCHPisRgvxr3uv89) 35 | - [Verified Package Submit](https://forms.gle/Hhpdh2KsWLUHDvkx5) 36 | - [Verified NFT Collection Submit](https://forms.gle/Hhpdh2KsWLUHDvkx5) 37 | -------------------------------------------------------------------------------- /details/sdk_sui_typescript.md: -------------------------------------------------------------------------------- 1 | # Sui Typescript SDK (by Mysten Labs) 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [x] SDK 11 | 12 | ## Description 13 | 14 | The Sui TypeScript SDK is a modular library of tools for interacting with the Sui blockchain. Use it to send queries to RPC nodes, build and sign transactions, and interact with a Sui or local network. 15 | 16 | ## Features 17 | 18 | - [Module packages](https://sdk.mystenlabs.com/typescript#module-packages) 19 | - [GraphQL (RPC 2.0)](https://sdk.mystenlabs.com/typescript/graphql) is supported. 20 | - [Sui BCS types are supported](https://github.com/MystenLabs/sui/blob/main/sdk/typescript/src/bcs) 21 | - [Kiosk SDK](https://sdk.mystenlabs.com/kiosk) 22 | - [zkSend (Stashed) SDK](https://sdk.mystenlabs.com/zksend) 23 | - [DeepBookV3 SDK](https://docs.sui.io/standards/deepbookv3-sdk) 24 | - [SuiNS SDK](https://docs.suins.io/developer/sdk) -------------------------------------------------------------------------------- /details/oracle_switchboard.md: -------------------------------------------------------------------------------- 1 | # Switchboard 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [x] Oracle 10 | - [ ] SDK 11 | 12 | ## Homepage or Repo or Download Link 13 | 14 | 15 | ## Description 16 | 17 | Data feed customization and management 18 | 19 | ## Features 20 | - [On-demand data feed](https://docs.switchboard.xyz/docs) (Sui is not supported) 21 | - [Push-based data feed](https://docs.switchboard.xyz/docs/switchboard/switchboard-v2-push) (Sui is supported): 22 | - [Sui SDK](https://github.com/switchboard-xyz/sui-sdk) 23 | - [Sui examples](https://github.com/switchboard-xyz/sui-sdk/tree/main/programs/mainnet/feed-parser/sources) 24 | - [Sui supported feeds](https://app.switchboard.xyz/sui/mainnet) 25 | - Build custom feed through [portal](https://app.switchboard.xyz/build) 26 | - Generic data feed protocol allowing devs to build their own feed with customizable oracle jobs. Similar to ChainLink -------------------------------------------------------------------------------- /details/ide_bitslab.md: -------------------------------------------------------------------------------- 1 | # BitsLab IDE 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [x] IDE 8 | - [ ] Indexer 9 | - [ ] Oracle 10 | - [ ] SDK 11 | 12 | ## Description 13 | 14 | BitsLab IDE is an out-of-the-box, configuration-free online development environment that supports end-to-end development of Move smart contracts. It is powerful, easy to use, user friendly, includes built-in tutorials, and supports plugin extensions. 15 | 16 | ## Features 17 | - Move 18 | - Move 2024 is supported 19 | - Compilation 20 | - Unit Testing 21 | - Deployment 22 | - Multiple `sui` binary versions to choose from 23 | - Project Management 24 | - Multiple workspaces 25 | - Persistent session 26 | - Share project snapshot link 27 | - Import from local file system 28 | - Utilities 29 | - Lightweight object explorer 30 | - Lightweight package explorer 31 | - Package function call 32 | - Example templates 33 | 34 | ## Latest Version Number of Sui Tested On 35 | 36 | - Devnet v1.31.0 37 | - Testnet v1.32.0 38 | - Mainnet v1.31.0 -------------------------------------------------------------------------------- /details/oracle_pyth.md: -------------------------------------------------------------------------------- 1 | # Pyth Network 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [ ] IDE 8 | - [ ] Indexer 9 | - [x] Oracle 10 | - [ ] SDK 11 | 12 | ## Description 13 | 14 | Pyth Network is an oracle protocol that connects the owners of market data to applications on multiple blockchains. 15 | 16 | ## Features 17 | - [Pull-based oracles](https://docs.pyth.network/price-feeds/pull-updates#pull-oracles) 18 | - Except Solana, price data is transmitted from Pythnet to Sui through Wormhole behind the scene 19 | - [Sui JS SDK](https://github.com/pyth-network/pyth-crosschain/tree/main/target_chains/sui/sdk/js) 20 | - Hermes is a service facilitating fetching updated price info and its signature for on-chain verification 21 | - [Hermes API](https://hermes.pyth.network/docs/) 22 | - [Hermes JS SDK](https://github.com/pyth-network/pyth-crosschain/tree/main/price_service/client/js) 23 | - Price Feeds: 24 | - [Supported pairs on Sui](https://docs.pyth.network/price-feeds/sponsored-feeds#sui) 25 | - [Benchmarks - Historical Price](https://docs.pyth.network/benchmarks) 26 | -------------------------------------------------------------------------------- /details/indexer_space_and_time.md: -------------------------------------------------------------------------------- 1 | # Space And Time (SxT) 2 | 3 | ## Tooling Category 4 | 5 | - [ ] dApp Development 6 | - [ ] Explorer 7 | - [ ] IDE 8 | - [x] Indexer 9 | - [ ] Oracle 10 | - [ ] SDK 11 | 12 | ## Description 13 | 14 | Space and Time (SxT) is the verifiable compute layer that scales zero-knowledge proofs on a decentralized data warehouse to deliver trustless data processing to smart contracts, LLMs, and enterprises. Space and Time joins indexed blockchain data from major chains with offchain datasets. Proof of SQL, the novel ZK-proof developed by Space and Time, ensures tamperproof computations at scale and proves that query results haven’t been manipulated. Space and Time is trusted by the most prominent financial institutions, enterprises, and Web3 apps. 15 | 16 | ## Features 17 | - [Developer Use Cases](https://docs.spaceandtime.io/docs/welcome-to-space-and-time#developers-use-space-and-time-to) 18 | - [Sui Supported Dataset](https://app.spaceandtime.ai/data-sets?selectedChain=sui) 19 | - [SQL API](https://docs.spaceandtime.io/reference/sql-overview) to query data using SQL 20 | - [GraphQL API](https://docs.spaceandtime.io/reference/graphql-overview) to query data with GraphQL 21 | - AI assistance to help with refining SQL 22 | - ZK-powered and tamperproof data 23 | - ⚠️ No Sui specific documentation is provided -------------------------------------------------------------------------------- /media/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | The goal of this repo is to include primarily projects that are stable and useful to many developers. 4 | 5 | ## Submission Guidelines 6 | 7 | - For submitting new tools: 8 | - It is preferable to prepare and complete the tool's documentation first at its primary location as we prefer to direct users to the relevant links from within the index page (`README.md`). 9 | - Add your tool's relevant information to the index page (`README.md`). Use a similar format to other tools. 10 | - If you would like to include and link to an image, you can add it under the [`media` folder](./media/), and include it in the same pull request. 11 | - Create a pull request with the changes against the `main` branch. 12 | - For editing existing tracked tools: 13 | - Create a pull request directly with the changes needed against the `main` branch. 14 | 15 | _💡Note_: The `details` folder consists of selected tool's information that have been collected to summarize useful features and resources for the audience. However, this is only included for tools that have a lack of available documentation. Therefore, it is preferable for new and existing project owners to complete their documentation and any relevant materials at the project's primary location so that users can be directed to this information from the index page. However, please feel free to make a PR to update incorrect or outdated information in the `details` folder as it still provides valuable insights in the meantime. 16 | 17 | ## Removing projects 18 | 19 | Projects are not removed unless they are outright broken, pronounced deprecated by its author or made redundant by another project. 20 | -------------------------------------------------------------------------------- /media/prover_logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /media/surflux_logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome Sui [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) 2 | 3 | Sui logo 4 | 5 | > A curated list of _awesome_ developer tools and infrastructure projects within the Sui ecosystem. 6 | 7 | Sui is the first blockchain built for internet scale, enabling fast, scalable, and low-latency transactions. It's programmable and composable, powered by the Move language, making it easy to build and integrate dApps. Sui prioritizes developer experience and frictionless user interactions, designed to support next-gen decentralized applications with minimal complexity. 8 | 9 | > ⚠️ This warning icon means that the tool may not be functioning correctly at the moment. Please check these tools carefully. 10 | 11 | [**Submit your own developer tool here**](CONTRIBUTING.md) 12 | 13 | ## Contents 14 | 15 | - [Move IDEs](#move-ides) 16 | - [Web IDEs](#web-ides) 17 | - [Desktop IDEs](#desktop-ides) 18 | - [IDE Utilities](#ide-utilities) 19 | - [Client SDKs \& Libraries](#client-sdks--libraries) 20 | - [Client SDKs](#client-sdks) 21 | - [DeFi SDKs](#defi-sdks) 22 | - [Client Libraries](#client-libraries) 23 | - [dApp Development](#dapp-development) 24 | - [dApp Toolkits](#dapp-toolkits) 25 | - [Smart Contract Toolkits](#smart-contract-toolkits) 26 | - [Indexers \& Data Services](#indexers--data-services) 27 | - [Explorers](#explorers) 28 | - [Oracles](#oracles) 29 | - [Security](#security) 30 | - [AI](#ai) 31 | - [Infrastructure as Code](#infrastructure-as-code) 32 | - [Faucets](#faucets) 33 | 34 | ## Move IDEs 35 | 36 | ### Web IDEs 37 | 38 | - BitsLab IDE - Online Move code editor that requires no configuration and supports Move code syntax highlighting. Beginner friendly and supports interacting with Sui. 39 | - [Homepage](https://www.bitslab.xyz/bitslabide) - [IDE](https://ide.bitslab.xyz/) - [Tutorial](https://www.youtube.com/watch?v=-9-WkqQwtu8) - [Further Information](details/ide_bitslab.md) 40 | - MoveStudio - Online IDE for Sui smart contract development. 41 | - [Homepage](https://www.movestudio.dev/) - [GitHub](https://github.com/dantheman8300/move-studio) - [IDE](https://www.movestudio.dev/build) - [Further Information](details/ide_movestudio.md) 42 | - ChainIDE - Move Cloud-Powered Development Platform. 43 | - [Homepage](https://chainide.com) - [Documentation](https://chainide.gitbook.io/chainide-english-1/ethereum-ide-1/9.-sui-ide) - [IDE](https://chainide.com/s/sui) - [Further Information](details/ide_chainide.md) 44 | - ⚠️ WELLDONE Code - Remix IDE plugin supports non-EVM smart contract development including Sui. 45 | - [Homepage](https://docs.welldonestudio.io/code) - [Documentation & Tutorial](https://docs.welldonestudio.io/code/deploy-and-run/sui) - [Further Information](details/ide_welldone_code.md) 46 | 47 | 48 | ### Desktop IDEs 49 | 50 | - VSCode Move by Mysten Labs - VSCode Extension supports Move on Sui development with LSP features through Move Analyzer developed by Mysten Labs. 51 | - [GitHub](https://github.com/MystenLabs/sui/tree/main/external-crates/move/crates/move-analyzer) - [Documentation & Tutorial](https://marketplace.visualstudio.com/items?itemName=mysten.move) - [Further Information](details/ide_vscode_mysten_move_analyzer.md) 52 | - VSCode Sui Move Analyzer by MoveBit - Alternative VSCode extension developed by MoveBit. 53 | - [Homepage](https://movebit.xyz/analyzer) - [GitHub](https://github.com/movebit/sui-move-analyzer) - [Documentation & Tutorial](https://marketplace.visualstudio.com/items?itemName=MoveBit.sui-move-analyzer) - [Further Information](details/ide_vscode_movebit_sui_move_analyzer.md) 54 | - IntelliJ Sui Move Language Plugin - IntelliJ-based plugin for Move on Sui development. 55 | - [Homepage](https://plugins.jetbrains.com/plugin/23301-sui-move-language) - [GitHub](https://github.com/movefuns/intellij-move) 56 | - [Emacs move-mode](https://github.com/amnn/move-mode) - The move-mode package is an Emacs major-mode for editing smart contracts written in the Move programming language. 57 | - [Move.vim](https://github.com/yanganto/move.vim) - Syntax highlighting that supports the Move 2024 edition. 58 | 59 | ### IDE Utilities 60 | 61 | - [Prettier Move Plugin](https://github.com/MystenLabs/sui/tree/main/external-crates/move/crates/move-analyzer/prettier-plugin) - A Move language plugin for the Prettier code formatter. 62 | - [Sui Extension](https://github.com/zktx-io/sui-extension) - The Sui extension provides seamless support for compiling, deploying, and testing Sui smart contracts directly within VS Code. 63 | - [Homepage](https://marketplace.visualstudio.com/items?itemName=zktxio.sui-extension) - [Documentation](https://docs.zktx.io/vsce/sui/) 64 | - ⚠️ Sui Simulator - VSCode Extension to streamline Sui development workflow with intuitive UI. 65 | - [Homepage](https://marketplace.visualstudio.com/items?itemName=weminal-labs.sui-simulator-vscode) - [GitHub](https://github.com/Weminal-labs/sui-simulator-vscode) - [Demo](https://www.youtube.com/watch?v=BHRxeF_visM&pp=ygUMd2VtaW5hbCBsYWIg) 66 | - [Tree Sitter Move](https://github.com/tzakian/tree-sitter-move) - Tree Sitter for Move. 67 | 68 | ## Client SDKs & Libraries 69 | 70 | ### Client SDKs 71 | 72 | - Sui TypeScript SDK (Mysten Labs) - TypeScript modular library of tools for interacting with the Sui blockchain. 73 | - [GitHub](https://github.com/MystenLabs/sui/tree/main/sdk/typescript) - [Documentation](https://sdk.mystenlabs.com/typescript) - [Further Information](details/sdk_sui_typescript.md) 74 | - Sui Kit(Scallop) - Toolkit for interacting with the Sui network in TypeScript. 75 | - [GitHub](https://github.com/scallop-io/sui-kit) - [Further Information](details/sdk_sui_kit_scallop.md) 76 | - Sui Rust SDK (Mysten Labs) - Rust SDK to interact with Sui blockchain. 77 | - [GitHub](https://github.com/MystenLabs/sui/tree/main/crates/sui-sdk) - [Documentation](https://mystenlabs.github.io/sui/sui_sdk/index.html) - [Further Information](details/sdk_sui_rust.md) 78 | - Pysui - Python SDK to interact with Sui blockchain. 79 | - [GitHub](https://github.com/FrankC01/pysui?tab=readme-ov-file) - [Documentation](https://pysui.readthedocs.io/en/latest/index.html) - [Pypi](https://pypi.org/project/pysui/) - [Discord](https://discord.gg/uCGYfY4Ph4) - [Further Information](details/sdk_pysui.md) 80 | - Sui Go SDK (SuiVision) - Golang SDK to interact with Sui blockchain. 81 | - [GitHub](https://github.com/block-vision/sui-go-sdk) - [API Documentation](https://pkg.go.dev/github.com/block-vision/sui-go-sdk) - [Examples](https://github.com/block-vision/sui-go-sdk?tab=readme-ov-file#examples) - [Further Information](details/sdk_sui_go.md) 82 | - Sui Go SDK (Pattonkan) - Golang SDK to interact with Sui blockchain. Support PTB and devInspect. 83 | - [Github](https://github.com/pattonkan/sui-go) - [API Documentation](https://pkg.go.dev/github.com/pattonkan/sui-go) - [Examples](https://github.com/pattonkan/sui-go/tree/main/examples) - [Further Information](details/go-sui.md) 84 | - Sui Dart SDK - Dart SDK to interact with Sui blockchain. 85 | - [GitHub](https://github.com/mofalabs/sui) - [API documentation](https://pub.dev/documentation/sui/latest/) - [Further Information](details/sdk_sui_dart.md) 86 | - Sui Kotlin SDK - Kotlin Multiplatform (KMP) SDK for integrating with the Sui blockchain. 87 | - [GitHub](https://github.com/mcxross/ksui) - [Documentation](https://suicookbook.com) - [Further Information](details/sdk_ksui.md) 88 | - SuiKit (OpenDive) - Swift SDK natively designed to make developing for the Sui blockchain easy. 89 | - [GitHub](https://github.com/opendive/suikit?tab=readme-ov-file) - [Further Information](details/sdk_suikit.md) 90 | - Sui Unity SDK (OpenDive) - The OpenDive Sui Unity SDK is the first fully-featured Unity SDK with offline transaction building. 91 | - [GitHub](https://github.com/OpenDive/Sui-Unity-SDK) - [Further Information](details/sdk_sui_unity_opendive.md) 92 | - Dubhe Client (Dubhe Engine) - Supports various platforms including browsers, Node.js, and game engine. It provides a simple interface to interact with your Sui Move contracts. 93 | - [GitHub](https://github.com/0xobelisk/dubhe/tree/main/packages/sui-client) - [Documentation](https://dubhe.obelisk.build/dubhe/sui/client) 94 | 95 | ### DeFi SDKs 96 | - [NAVI Protocol SDK](https://github.com/naviprotocol/navi-sdk) - The NAVI TypeScript SDK Client provides tools for interacting with the Sui blockchain networks, designed for handling transactions, accounts, and smart contracts efficiently. 97 | - [Bucket Protocol SDK](https://github.com/Bucket-Protocol/bucket-protocol-sdk) - The TypeScript SDK for interacting with Bucket Protocol. 98 | - [Suilend SDK](https://github.com/solendprotocol/suilend-public/tree/production/sdk) - The TypeScript SDK for interacting with the Suilend program published on npm as [`@suilend/sdk`](https://www.npmjs.com/package/@suilend/sdk). 99 | - [Scallop SDK](https://github.com/scallop-io/sui-scallop-sdk) - The TypeScript SDK for interacting with the Scallop lending protocol on the Sui network. 100 | - [Cetus CLMM SDK](https://github.com/CetusProtocol/cetus-clmm-sui-sdk) - The official Cetus SDK specifically designed for seamless integration with Cetus-CLMM on Sui. 101 | - [Aftermath SDK](https://github.com/AftermathFinance/aftermath-ts-sdk) - The TypeScript SDK for interacting with Aftermath Protocol. 102 | - [FlowX SDK](https://github.com/FlowX-Finance/sdk) - The official FlowX TypeScript SDK that allows developers to interact with FlowX protocols using the TypeScript programming language. 103 | - [7k Aggregator SDK](https://github.com/7k-ag/7k-sdk-ts) - The TypeScript SDK for interacting with 7k Aggregator protocol. 104 | - [Hop Aggregator SDK](https://docs.hop.ag/hop-sdk) - The TypeScript SDK for interacting with Hop Aggregator. 105 | 106 | ### Client Libraries 107 | 108 | - [BCS TypeScript (Mysten Labs)](https://sdk.mystenlabs.com/bcs) - BCS with TypeScript. 109 | - [BCS Rust](https://github.com/zefchain/bcs) - BCS with Rust. 110 | - [BCS Dart](https://github.com/mofalabs/bcs) - BCS with Dart. 111 | - BCS Kotlin - BCS with Kotlin. 112 | - [GitHub](https://github.com/mcxross/kotlinx-serialization-bcs) - [Documentation](https://suicookbook.com/bcs.html) 113 | - [BCS Swift](https://github.com/OpenDive/SuiKit/tree/main/Sources/SuiKit/Utils/BCS) - BCS with Swift. 114 | - [BCS Unity](https://github.com/OpenDive/Sui-Unity-SDK/tree/main/Assets/Sui-Unity-SDK/Code/OpenDive.BCS) - BCS with Unity C#. 115 | - [Sui Client Gen (Kuna Labs)](https://github.com/kunalabs-io/sui-client-gen/tree/master) - A tool for generating TS SDKs for Sui Move smart contracts. Supports code generation both for source code and on-chain packages with no IDLs or ABIs required. 116 | - [TypeMove (Sentio)](https://github.com/sentioxyz/typemove/blob/main/packages/sui/Readme.md) - Generate TypeScript bindings for Sui contracts. 117 | - Sui Wallet Standard (Mysten Labs) - A suite of standard utilities for implementing wallets and libraries based on the [Wallet Standard](https://github.com/wallet-standard/wallet-standard/). 118 | - [GitHub](https://github.com/MystenLabs/sui/tree/main/sdk/wallet-standard) - [Documentation](https://docs.sui.io/standards/wallet-standard) 119 | - [CoinMeta (Polymedia)](https://github.com/juzybits/polymedia-coinmeta) - Library for fetching coin metadata for Sui coins. 120 | - [Dubhe Client BCS Decoding (Dubhe Engine)](https://github.com/0xobelisk/dubhe-docs/blob/main/pages/dubhe/sui/client.mdx#bcs-data-decoding) - Library for supports automatic parsing of BCS types based on contract metadata information and automatic conversion formatting. 121 | 122 | ## dApp Development 123 | 124 | ### dApp Toolkits 125 | 126 | - [@mysten/create-dapp](https://sdk.mystenlabs.com/dapp-kit/create-dapp) - CLI tool that helps you create Sui dApp projects. 127 | - Sui dApp Kit (Mysten Labs) - Set of React components, hooks, and utilities to help you build a dApp for the Sui ecosystem. 128 | - [GitHub](https://github.com/MystenLabs/sui/tree/main/sdk/dapp-kit) - [Documentation](https://sdk.mystenlabs.com/dapp-kit) 129 | - Sui dApp Starter - Full-stack boilerplate which lets you scaffold a solid foundation for your Sui project and focus on the business logic of your dapp from day one. 130 | - [GitHub](https://github.com/suiware/sui-dapp-starter?tab=readme-ov-file) - [Documentation](https://sui-dapp-starter.dev/docs/) - [Demo app](https://demo.sui-dapp-starter.dev/) 131 | - Suiet Wallet Kit - React toolkit for aApps to interact with all wallet types in Sui easily. 132 | - [GitHub](https://github.com/suiet/wallet-kit) - [Documentation](https://kit.suiet.app/docs/QuickStart) 133 | - SmartKit - React library that allows your dapp to connect to the Sui network in a simple way. 134 | - [Homepage](https://smartkit.vercel.app/) - [GitHub](https://github.com/heapup-tech/smartkit) 135 | - [Sui Suitcase](https://github.com/juzybits/polymedia-suitcase) - Sui utilities for TypeScript, Node, and React. 136 | - [Sui MultiSig Toolkit (Mysten Labs)](https://multisig-toolkit.vercel.app/offline-signer) - Toolkit for transaction signing. 137 | - [Sui dApp Scaffold (Bucket Protocol)](https://github.com/Bucket-Protocol/sui-dapp-scaffold-v1) - A frontend scaffold for a decentralized application (dApp) on the Sui blockchain. 138 | - [Wormhole Kit (zktx.io)](https://github.com/zktx-io/wormhole-kit-monorepo) - React library that enables instant integration of Wormhole into your dapp. 139 | - SuiBase - Suibase makes it easy to create "workdirs", each defining a distinct development environment targeting a network. 140 | - [GitHub](https://github.com/chainmovers/suibase) - [Documentation](https://suibase.io/) 141 | - [create-dubhe (Dubhe Engine)](https://github.com/0xobelisk/dubhe/tree/main/packages/create-dubhe) - Create a new Dubhe project on Sui. 142 | - [Documentation](https://dubhe.obelisk.build/dubhe/sui/quick-start) 143 | - [Sui Tools](https://sui-tools.vercel.app/ptb-generator) - Scaffolding TypeScript PTBs for any on-chain function you might want to invoke. 144 | - [Enoki (Mysten Labs)](https://docs.enoki.mystenlabs.com/) - Make zkLogin and Sponsored Transactions more accessible. 145 | - [Sui Gas Pool (Mysten Labs)](https://github.com/MystenLabs/sui-gas-pool) - Service that powers sponsored transactions on Sui at scale. 146 | - [useSuiZkLogin](https://github.com/pixelbrawlgames/use-sui-zklogin) - React hook and functions for seamless zkLogin integration on Sui. 147 | - @suiware/kit - Opinionated React components and hooks for Sui dApps. 148 | - [Homepage](https://kit.suiware.io/) - [Documentation](https://github.com/suiware/kit/tree/main/packages/kit#readme) - [GitHub](https://github.com/suiware/kit) 149 | - React ZK Login Kit - Ready-to-use Component with Hook (sign-in + sign-transaction) 150 | - [GitHub](https://github.com/denyskozak/react-sui-zk-login-kit) - [YouTube Guide](https://www.youtube.com/watch?v=2qnjmKg3ugY) 151 | 152 | #### zkLogin 153 | 154 | - [zkLogin Demo (Polymedia)](https://github.com/juzybits/polymedia-zklogin-demo) 155 | - [Sui zkLogin Demo by @jovicheng](https://github.com/jovicheng/sui-zklogin-demo) 156 | - [Sui zkWallet Demo by @ronanyeah](https://github.com/ronanyeah/sui-zk-wallet) 157 | - [zkLogin Demo using use-sui-zklogin by @pixelbrawlgames](https://pixelbrawlgames.github.io/use-sui-zklogin/) 158 | - [zkLogin Demo using react-zk-login-kit by @denyskozak](https://demo.react-sui-zk-login.com) 159 | 160 | #### Misc 161 | 162 | - [`sui-sniffer`](https://www.app.kriya.finance/sui-sniffer/) - Checking security of Sui tokens. 163 | - RPC Tools (Polymedia) - A webapp that lets users find the fastest RPC for their location. 164 | - [GitHub](https://github.com/juzybits/polymedia-rpcs) - [Documentation](https://rpcs.polymedia.app/) 165 | - [Polymedia Commando (Polymedia)](https://github.com/juzybits/polymedia-commando) - Sui command line tools to help with Sui airdrops (send coins to many addresses), gather data from different sources (Sui RPCs, Indexer.xyz, Suiscan), and more. 166 | - [YubiSui (MystenLabs)](https://github.com/MystenLabs/yubigen) - Create a Sui Wallet inside a yubikey and sign Sui transactions with it. 167 | - [`sui-dapp-kit-theme-creator`](https://sui-dapp-kit-theme-creator.app/) - Build custom Sui dApp Kit themes. 168 | - [Minting Server (Mysten Labs)](https://github.com/MystenLabs/minting-server) - A scalable system architecture that can process multiple Sui transactions in parallel using a producer-consumer worker scheme. 169 | - [SuiInfra](https://suinfra.io/) - Provide users and developers with up-to-date recommendations on the ideal RPCs to use for their needs. 170 | - [Sui RPC Proxy](https://github.com/SuiSec/sui-rpc-proxy) - Monitor and analyze the network requests made by the Sui wallet application and Sui dApps. 171 | - [PTB Studio](https://ptb.studio) - Visual Programmable Transaction Block Builder. 172 | - [Documentation](https://suicookbook.com/ptb-studio.html) 173 | - [Indexer generator](https://www.npmjs.com/package/sui-events-indexer) - Code generating tool that will generate an indexer given a smart contract for all the events present. After that the user should remove unwanted events and fix the database schema and handlers (that write to the DB) according to their needs. The tool is written in typescript and uses prisma as an ORM. 174 | 175 | ### Smart Contract Toolkits 176 | 177 | - [Sui CLI](https://docs.sui.io/references/cli) - CLI tool to interact with the Sui network, its features, and the Move programming language. 178 | - [Sentio Debugger](https://docs.sentio.xyz/docs/debugger) - Shows the trace of the transaction [Explorer App](https://app.sentio.xyz/explorer) (mainnet only). 179 | - [`std::debug`](https://docs.sui.io/guides/developer/first-app/debug#related-links) - Print arbitrary values to the console to help with debugging process. 180 | - [Sui Tears 💧 (Interest Protocol)](https://docs.interestprotocol.com/overview/sui-tears) - Open source production ready Sui Move library to increase the productivity of new and experienced developers alike. 181 | - [Sui Codec](https://github.com/sui-potatoes/app/tree/main/packages/codec) - Ultimate encoding solution for Sui. 182 | - [SkipList (Cetus)](https://github.com/CetusProtocol/move-stl) - A skip link list implement by Move language in Sui. 183 | - [IntegerMate (Cetus)](https://github.com/CetusProtocol/integer-mate) - A Library of move module provides signed integer and some integer math functions. 184 | - [Cetus CLMM](https://github.com/CetusProtocol/cetus-contracts/tree/main/packages/cetus_clmm) - The Cetus CLMM DEX open-source code. 185 | - [SuiDouble Metadata](https://github.com/suidouble/suidouble_metadata) - A Sui Move library and a set of tools to store, retrieve, and manage any type of primitive data as chunks in a `vector`. Store any data in the `vector` without dependencies and without any `Struct` defined. 186 | - [Move on Sui examples (Mysten Labs)](https://github.com/MystenLabs/sui/tree/main/examples/move) - Examples of Move on Sui applications. 187 | - [SuiGPT Decompiler](https://suigpt.tools/decompile) - Uses generative AI to convert Move bytecode back to source code. 188 | - [Revela](https://revela.verichains.io/) - Decompile Sui smart contracts to recover Move source code. 189 | - Package Source Code Verification - Verify your package source code on Suiscan, powered by WELLDONE Studio and Blockberry. 190 | - [Documentation](https://docs.blockberry.one/docs/contract-verification) - [Form Submission](https://suiscan.xyz/mainnet/package-verification) 191 | - [Dubhe CLI (Dubhe Engine)](https://github.com/0xobelisk/dubhe/tree/main/packages/sui-cli) - For building, and managing Dapps built on Dubhe Engine in Sui. 192 | - [Documentation](https://dubhe.obelisk.build/dubhe/sui/cli) 193 | - [Sui Token CLI RPC](https://github.com/otter-sec/sui-token-gen-rpc) - A Rust-based RPC service for generating and verifying Sui token smart contracts effortlessly. 194 | - [Sui Token CLI Tool](https://github.com/otter-sec/sui-token-gen) - A Rust-based Command-Line Interface (CLI) tool designed to simplify the process of generating and verifying Sui token smart contracts 195 | 196 | ## Indexers & Data Services 197 | 198 | - ZettaBlock - Generate custom GraphQL or REST APIs from SQL queries and incorporate your private off-chain data. 199 | - [Homepage](https://zettablock.com/) - [Docs](https://docs.zettablock.com) - [Pricing](https://zettablock.com/pricing) - [Further Information](details/indexer_zettablock.md) 200 | - Sentio - Transform raw indexed data (transactions, events, etc.) into meaningful queryable data by writing custom processor logic. 201 | - [Homepage](https://www.sentio.xyz/indexer/) - [Documentation](https://docs.sentio.xyz/docs/data-collection) - [Examples](https://github.com/sentioxyz/sentio-processors/tree/main/projects) - [Further Information](details/indexer_sentio.md) 202 | - BlockVision - Provide Sui indexed data for developers through pre-built APIs, such as, Token, NFT, and DeFi, etc. 203 | - [Homepage](https://blockvision.org/) - [Documentation](https://docs.blockvision.org/reference/welcome-to-blockvision) 204 | - BlockBerry (Suiscan) - The Blockberry Sui API provides endpoints that reveal data about significant entities on the Sui Network. It indexes useful object metadata, including NFTs, domains, collections, coins, etc. Some data is drawn from third-party providers, particularly market data (coin prices, market cap, etc.). 205 | - [Homepage](https://blockberry.one/) - [Documentation](https://docs.blockberry.one/reference/sui-quickstart) 206 | - Space And Time (SxT) - Verifiable compute layer for AI x blockchain. Decentralized data warehouse with sub-second ZK proof. 207 | - [Homepage](https://www.spaceandtime.io/) - [Documentation](https://docs.spaceandtime.io/) - [Further Documentation](details/indexer_space_and_time.md) 208 | - Birdeye Data Services - Access Crypto Market Data APIs on Sui. 209 | - [Homepage](https://bds.birdeye.so/) - [Blog](https://blog.sui.io/birdeye-data-services-crypto-api-websocket/) - [API Documentation](https://docs.birdeye.so/reference/intro/authentication) 210 | - Indexer.xyz (behind TradePort) - The ultimate toolkit for accessing NFT data and integrating trading functionality into your app on Sui. 211 | - [Homepage](https://www.indexer.xyz/) - [API Explorer](https://www.indexer.xyz/api-explorer) - [API Docs](https://tradeport.xyz/docs) 212 | - Dubhe Indexer (Dubhe Engine) - Automatic integration with Dubhe Engine, automatic indexing of all events based on Dubhe Engine to build Dapp on Sui, based on dubhe configuration files. 213 | - [Homepage](https://github.com/0xobelisk/dubhe/tree/main/packages/sui-indexer) - [API Documentation](https://dubhe.obelisk.build/dubhe/sui/indexer) 214 | - Surflux logo Surflux - Developer infrastructure for Sui. Build production-ready apps with powerful APIs, indexing, and real-time data streams. 215 | - [Homepage](https://surflux.dev/) - [Documentation](https://docs.surflux.dev/) - [Blog](https://surflux.dev/blog) 216 | 217 | ## Explorers 218 | 219 | - SuiVision - Data analytics covering transactions, wallets, staking, and validators. 220 | - [Homepage](https://suivision.xyz/) - [Documentation](https://docs.blockvision.org/reference/integrate-suivision-into-your-dapp) - [Further Information](details/explorer_suivision.md) 221 | - Suiscan - Explorer and analytics platform for Sui. 222 | - [Homepage](https://suiscan.xyz/mainnet/home) - [Documentation](https://docs.blockberry.one/reference/welcome-to-blockberry-api) - [Further Information](details/explorer_suiscan.md) 223 | - OKLink - Provide fundamental explorer and data APIs on Sui. 224 | - [Homepage](https://www.oklink.com/sui) - [Further Information](details/explorer_oklink.md) 225 | - Polymedia Explorer - A fork of the original Sui Explorer. 226 | - [Homepage](https://explorer.polymedia.app) - [GitHub](https://github.com/juzybits/polymedia-explorer) - [Further Information](details/explorer_polymedia.md) 227 | - PTB Explorer - A fork of the Polymedia Explorer. 228 | - [Homepage](https://explorer.walrus.site/) - [GitHub](https://github.com/zktx-io/polymedia-explorer-ptb-builder) 229 | - Local Sui Explorer - Sui Explorer for your localnet maintained by [suiware](https://github.com/suiware) 230 | - [GitHub](https://github.com/suiware/sui-explorer) - [Further Information](details/explorer_local_sui_explorer.md) 231 | - Suimon - Powerful command line tool designed to provide detailed dashboards for monitoring the Sui network. 232 | - [GitHub](https://github.com/bartosian/suimon) - [Further Information](details/explorer_suimon.md) 233 | 234 | ## Oracles 235 | 236 | - Pyth Network - Oracle protocol that connects the owners of market data to applications on multiple blockchains including Sui. 237 | - [Homepage](https://www.pyth.network/) - [Documentation](https://docs.pyth.network/home) - [Sui Tutorial](https://docs.pyth.network/price-feeds/use-real-time-data/sui) - [Further Information](details/oracle_pyth.md) 238 | - Supra Oracles - Oracle protocol to provide reliable data feed. 239 | - [Homepage](https://supra.com/) - [Sui Tutorial](https://docs.supra.com/docs/developer-tutorials/move) - [Further Information](details/oracle_supra.md) 240 | - Switchboard - Data feed customization and management. 241 | - [Documentation](https://docs.switchboard.xyz/docs) - [Further Information](details/oracle_switchboard.md) 242 | 243 | ## Security 244 | 245 | - Sui Prover logo [Sui Prover](https://info.asymptotic.tech/sui-prover) - Prover for doing Formal Verification of Move on Sui code. 246 | - [SuiSecBlockList](https://github.com/SuiSec/SuiSecBlockList) - Block malicious websites and packages, Identify and hide phishing objects. 247 | - [DryRunTransactionBlockResponsePlus](https://github.com/SuiSec/DryRunTransactionBlockResponsePlus) - Decorator of `DryRunTransactionBlockResponse`, highlight `SenderChange`. 248 | - [Guardians](https://github.com/suiet/guardians) - Phishing Website Protection. 249 | - [HoneyPotDetectionOnSui](https://github.com/SuiSec/HoneyPotDetectionOnSui) - Detect HoneyPot SCAM on Sui. 250 | 251 | ## AI 252 | 253 | - ⚠️ [RagPool](https://ragpool.digkas.nl/) - RAG based chat with docs. 254 | - [Cookbook](https://docsbot-demo-git-sui-cookbookdev.vercel.app/) - Gemini-based RAG built for docs. 255 | - [Atoma](https://atoma.network/) - Developer-focused infrastructure for private, verifiable, and fully customized AI experiences. 256 | - [Eliza](https://github.com/elizaOS/eliza) - Autonomous agents for everyone. 257 | 258 | ## Infrastructure as Code 259 | 260 | - Sui Terraform Modules - All-in-one solution for deploying, monitoring, and managing SUI infrastructure with ease. 261 | - [GitHub](https://github.com/bartosian/sui-terraform-modules) - [Further Information](details/iac_sui_terraform_modules.md) 262 | - [Dubhe Engine (Obelisk Labs)](https://github.com/0xobelisk/dubhe) - Engine for Everyone to Build Intent-Centric Worlds ⚙️ An Open-Source toolchain for Move Applications. 263 | - [Documentation](https://dubhe.obelisk.build/) - [Further Information](details/engine_dubhe.md) 264 | 265 | ## Faucets 266 | 267 | - [Sui Faucet](https://faucet.sui.io/) - Official web faucet for claiming testnet SUI, with wallet integration. 268 | - [n1stake](https://faucet.n1stake.com/) - Community web faucet for claiming testnet SUI, with wallet integration. 269 | - [Blockbolt](https://faucet.blockbolt.io/) - Community web faucet for claiming testnet SUI, with wallet integration. 270 | - SuiwareFaucetBot - Sui Faucet Bot for Telegram. 271 | - [GitHub](https://github.com/suiware/SuiwareFaucetBot) - [Telegram Bot](https://t.me/SuiwareFaucetBot) 272 | - [Suiware Faucet Chrome Extension](https://github.com/suiware/suiware-faucet-extension) - An experimental Chrome extension for receiving devnet and testnet SUI. 273 | --------------------------------------------------------------------------------