Publication
Partagez vos connaissances.

Getting Started with Sui: Your First Smart Contract
When you start building on Sui, the first thing you’ll notice is how different it feels from EVM-based chains like Ethereum. Instead of a global state, Sui works with objects — and these objects can represent tokens, NFTs, accounts, or even entire applications. Your smart contracts are written in Move, a language designed for safety and asset management.
Steps:
-
Install Sui CLI and check version: curl -s https://get.sui.io | sh sui --version
-
Create a new Move package: sui move new hello_sui
-
Example contract: module hello_sui::hello { use sui::tx_context;
public entry fun say_hello(name: vector<u8>, ctx: &mut tx_context::TxContext) { tx_context::log_utf8(ctx, name); }
}
-
Build and deploy: sui move build sui client publish --gas-budget 10000
-
Call function: sui client call --function say_hello --module hello --package <PACKAGE_ID> --args "Hello Sui!"
Pro Tip: Start small, test your publishing pipeline, then build more complex apps.
- Sui
- NFT Ecosystem
- Move
Sui is a Layer 1 protocol blockchain designed as the first internet-scale programmable blockchain platform.
Gagne ta part de 1000 Sui
Gagne des points de réputation et obtiens des récompenses pour avoir aidé la communauté Sui à se développer.

- Pourquoi BCS exige-t-il un ordre de champs exact pour la désérialisation alors que les structures Move ont des champs nommés ?65
- « Erreurs de vérification de sources multiples » dans les publications du module Sui Move - Résolution automatique des erreurs55
- Échec de la transaction Sui : objets réservés pour une autre transaction49
- Comment maximiser la détention de profits SUI : Sui Staking contre Liquid Staking313
- Erreur Sui Move - Impossible de traiter la transaction Aucune pièce de gaz valide n'a été trouvée pour la transaction315