Skip to main content

Getting started

In this tutorial we'll get a testnet account, use NEAR CLI RS to add a key to our computer's file system, and set up the basic skeleton of a Rust smart contract.

Setting up Rust​

You may have found the online Rust Book, which is a great resource for getting started with Rust. However, there are key items that are different when it comes to blockchain development. Namely, that smart contracts are technically libraries and not binaries, but for now just know that we won't be using some commands commonly found in the Rust Book.

caution

We won't be using cargo run during smart contract development.

Instead, we'll be iterating on our smart contract by building it and running tests.

Install Rust using rustup​

Please see the directions from the Rustup site. For OS X or Unix, you may use:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

(Taken from the Rust installation guide)

Add Wasm toolchain​

Smart contracts compile to WebAssembly (Wasm) so we'll add the toolchain for Rust.

rustup target add wasm32-unknown-unknown

(More info on targets and this toolchain here.)

Getting a testnet account​

Visit NEAR Wallet for testnet and register for a free account. For the purposes of this tutorial, you may skip the option to add two-factor authentication if you wish.

What just happened?

When you created your NEAR testnet account, a private key was created and placed into your browser's local storage. You may inspect this using developer tools and see it.

Creating a new key on your computer​

We'll want to use a command-line interface (CLI) tool to deploy a contract, but at the moment the private key only exists in the browser. Next we'll add a new key to the testnet account and have this stored locally on our computer as a JSON file. (Yes, you can have multiple keys on your NEAR account, which is quite powerful!)

Let's install NEAR CLI RS using cargo. You can also download the pre-compiled version of near-cli-rs for your OS from GitHub's Releases page.

cargo install near-cli-rs

You may now run:

near

to see various commands, which are covered in detail here.

We'll start by "logging in" with this command:

near account import-account using-web-wallet network-config testnet

This will bring you to NEAR Wallet again where you can confirm the creation of a full-access key. We'll get to full-access and function-call access keys later, just know that for powerful actions like "deploy" we'll need a full-access key. Follow the instructions from the login command to create a key on your hard drive. This will be located in your operating system's home directory in a folder called .near-credentials.

How was a key added?

When you typed near login, NEAR CLI generated a key pair: a private and public key. It kept the private key tucked away in a JSON file and sent the public key as a URL parameter to NEAR Wallet. The URL is long and contains other info instructing NEAR Wallet to "add a full access key" to the account. Our browser's local storage had a key (created when the account was made) that is able to do several things, including adding another key. It took the public key from the URL parameter, used it as an argument, and voilà: the testnet account has an additional key!

You can see the keys associated with your account by running the following command, replacing friend.testnet with your account name:

near account list-keys friend.testnet network-config testnet now

Start writing Rust!​

There's a basic repository that's helpful to clone or download located here.

The first thing we'll do is modify the manifest file at Cargo.toml:

[package]
- name = "rust-template"
+ name = "my-crossword"
version = "0.1.0"
- authors = ["Near Inc <hello@near.org>"]
+ authors = ["NEAR Friend <friend@example.com>"]
edition = "2018"

By changing the name here, we'll be changing the compiled Wasm file's name after running the build script. (build.sh for OS X and Linux, build.bat for Windows.) After running the build script, we can expect to find our compiled Wasm smart contract in res/my_crossword.wasm.

Now let's look at our main file, in src/lib.rs:

As you can see, this is a stub that's ready to be filled in. Let's pause and point out a few items:

  • Note the near macro is above the struct and the impl
  • Here the main struct is called Contract, while in other examples it might be Counter or something else. This is purely stylistic, but you may learn more from the link in the previous bullet.
  • You may notice the word "Borsh" and wonder what that means. This is a binary serializer. Eventually, we'll want to save data as ones and zeroes to validators' hard drives, and do it efficiently. We use Borsh for this, as is explained on this website.

Next, let's modify this contract little by little…

Was this page helpful?