Course Overview We will:

  1. Set up Sui Wallet and dev environment (if not already set)
  2. Create our own token smart contract in Move on Sui
  3. Deploy the smart contract on the Sui blockchain

Prerequisites:

Sui Installation on MacOS using Terminal:

  1. Install brew using the following command:
/bin/bash -c "$(curl -fsSL <https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh>)"
  1. Install cURL using the following command:
brew install curl
  1. Install CMake using the following code:
brew install cmake
  1. Install Git:
brew install git
  1. Install Cargo and Rust
curl --proto '=https' --tlsv1.2 -sSf <https://sh.rustup.rs> | sh
  1. install Sui. Run the following command to install the Sui binaries from devnet
cargo install --locked --git <https://github.com/MystenLabs/sui.git> --branch devnet sui

depending on where you want to test, you can choose either devnet or testnet

Sui takes a long time to install, so just be patient and talk to other devs about life 😃

  1. Check your Sui installation version.