Agenda

  1. Setting up the environment
  2. Setting up Fluence tools
  3. Run local Fluence node
  4. Working with Services using AIR

Requirements

1. Setting up the environment

Install rust: cargo, rustup, wasm32

We'd need the nightly toolchain, and a wasm32-wasi target. To install it, execute the following:

curl --proto '=https' --tlsv1.2 -sSf <https://sh.rustup.rs> |\\
sh -s -- --default-toolchain nightly --target wasm32-wasi

After installation, run the following so cargo is available right away

source $HOME/.cargo/env
cargo --version

cargo 1.52.0-nightly (32da9eaa5 2021-03-13)