Skip to main content

A Step-by-Step Guide to Mastering NEAR

Welcome! In this guide we will help you navigate NEAR tech stack, so you can build Web3 applications from start to finish in no-time.

We'll start from a simple auction contract and slowly build on top of it to create a full Web3 application to carry out on-chain auctions.

By the time you finish this tutorial, you will have learned several key concepts:


Prerequisites

Before starting, make sure to set up your development environment!

Working on Windows?

See our blog post getting started on NEAR using Windows for a step-by-step guide on how to setup WSL and your environment

# Install Node.js using nvm (more option in: https://nodejs.org/en/download)
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
nvm install latest

# Install the NEAR CLI to deploy and interact with the contract
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/near/near-cli-rs/releases/latest/download/near-cli-rs-installer.sh | sh

We will use NEAR CLI to interact with the blockchain through the terminal, and you can choose between JavaScript and Rust to write the contract.


Overview

This series will touch on different level of the NEAR tech stack. Each section will be independent of the previous one, so feel free to jump into the section that interests you the most.

1. Smart Contract

  1. The Auction Contract: We cover a simple auction smart contract
  2. Testing the Contract: Learn how to test your contract in a realistic environment
  3. Deploying the Contract: Deploy your contract to the NEAR blockchain
  4. Updating and Locking a Contract (soon): Discover what it means to lock a contract
  5. Giving an NFT to the Winner (soon) : Give the highest bidder an NFT to signal their win
  6. Integrating Fungible Tokens (soon) : Allow people to use fungible tokens to bid (e.g. stable coins)

2. Frontend

  1. Creating the frontend (soon): Lets learn how to connect a frontend with your smart contract
  2. Easily query on-chain data (soon): Use open APIs to keep track of the users and their bidding price

3. Factory

  1. Creating a factory (soon): Allow users to easily deploy and initialize their own auction contracts

Next steps

Ready to start? Let's jump to the The Auction Contract and begin your learning journey!


Versioning for this article
  • near-cli: 0.12.0
  • rustc: 1.78.0
  • cargo: 1.80.1
  • cargo-near: 0.6.2
  • rustc: 1.78.0
  • node: 21.6.1
Was this page helpful?