What is a Smart Contract?

To Share and +4 nLEARNs

Smart contracts are simple programs that live in a blockchain. As any modern application, smart contracts store data and expose methods to interact with it.
They are written in human readable languages, then compiled and deployed to the blockchain. Once deployed, any user (including other contracts) can interact
with them.

Do not worry if you don’t know how smart-contract blockchains work. As a developer, it is sufficient to understand that NEAR smart-contracts:

  1. Have limited computational resources.
  2. Interact with other contracts in an asynchronous way.
  3. Deal with real money, for which security must be a top concern.

Programming Languages

Smart Contracts in the NEAR blockchain are encoded using WebAssembly. In NEAR, you can use 3 high-level languages that compile to Wasm:

  1. Javascript
  2. Rust
  3. AssemblyScript

While it is not necessary to be an expert in either language, during these docs we will assume you have a basic knowledge of at least one of them.

Other Languages

Theoretically, you can use any language that compiles to Wasm for developing NEAR smart contract. However, in order to have a user-friendly experience we would need
to provide a library that wraps around low-level runtime APIs, while also offering other high-level functionalities.

We envision that in the future, more languages will be supported and the support will be done through the effort from the wider community, not just NEAR alone.

Generate comment with AI 2 nL
Scroll to Top
Report a bug👀