Develop a smart contract
In Prepare your first contract, you learned the basic steps for building and deploying a smart contract on a Substrate-based blockchain using a default first project. For this tutorial, you'll develop a new smart contract that increments a counter value each time you execute a function call.
Before you begin
Before you begin, verify the following:
- You have good internet connection and access to a shell terminal on your local computer.
- You are generally familiar with software development and using command-line interfaces.
- You are generally familiar with blockchains and smart contract platforms.
- You have installed Rust and set up your development environment as described in Install.
- You have completed Prepare your first contract and have the Substrate contracts node installed locally.
Tutorial objectives
By completing this tutorial, you will accomplish the following objectives:
- Learn how to use a smart contract template.
- Store simple values using a smart contract.
- Increment and retrieve stored values using a smart contract.
- Add public and private functions to a smart contract.
Smart contracts and ink!
In Prepare your first contract, you installed the cargo-contract package for command-line access to the ink! programming language.
The ink! language is an embedded domain specific language.
This language enables you to write WebAssembly-based smart contracts using the Rust programming language.
The language uses standard Rust patterns with specialized #[ink(...)] attribute macros. These attribute macros describe what different parts of your smart contract represent so they can be transformed into Substrate-compatible WebAssembly bytecode.
Create a new smart contract project
Smart contracts that run on Substrate start as projects.
You create projects using cargo contract commands.
For this tutorial, you'll create a new project for the incrementer smart contract.
Creating a new project adds a new project directory and default starter files—also called template files—to the project directory.
You will modify these starter template files to build the smart contract logic for the incrementer project.
To create a new project for your smart contract:
- Open a terminal shell on your local computer, if you don’t already have one open.
-
Create a new project named
incrementerby running the following command:cargo contract new incrementer -
Change to the new project directory by running the following command:
cd incrementer/ -
Open the
lib.rsfile in a text editor.By default, the template
lib.rsfile contains the source code for theflippersmart contract with instances of theflippercontract name renamedincrementer. - Replace the default template source code with new incrementer source code.
- Save the changes to the
lib.rsfile, then close the file. - Open the
Cargo.tomlfile in a text editor and review the dependencies for the contract. -
In the
[dependencies]section, modify thescaleandscale-infosettings, if necessary.scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] } scale-info = { version = "2", default-features = false, features = ["derive"], optional = true } - Save changes to the
Cargo.tomlfile, then close the file. -
Verify that the program compiles and passes the trivial test by running the following command:
cargo +nightly testYou can ignore any warnings because this template code is simply a skeleton. The command should display output similar to the following to indicate successful test completion:
running 1 test test incrementer::tests::default_works ... ok test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s -
Verify that you can build the WebAssembly for the contract by running the following command:
cargo +nightly contract buildIf the program compiles successfully, you are ready to start programming.
Store simple values
Now that you have some starter source code for the incrementer smart contract, you can introduce some new functionality.
For example, this smart contract requires storage of simple values.
The following code illustrates how to store simple values for this contract using the #[ink(storage)] attribute macro:
#[ink(storage)]
pub struct MyContract {
// Store a bool
my_bool: bool,
// Store a number
my_number: u32,
}Supported types
Substrate smart contracts support most Rust common data types, including Booleans, unsigned and signed integers, strings, tuples, and arrays. These data types are encoded and decoded using the Parity scale codec for efficient transmission over the network.
In addition to common Rust type that can be encoded and decoded using the scale codec, the ink! language supports Substrate-specific types—like AccountId, Balance, and Hash—as if they were primitive types.
The following code illustrates how to store an AccountId and Balance for this contract:
// We are importing the default ink! types
use ink_lang as ink;
#[ink::contract]
mod MyContract {
// Our struct will use those default ink! types
#[ink(storage)]
pub struct MyContract {
// Store some AccountId
my_account: AccountId,
// Store some Balance
my_balance: Balance,
}
/* --snip-- */
}Constructors
Every ink! smart contract must have at least one constructor that runs when the contract is created. However, a smart contract can have multiple constructors, if needed. The following code illustrates using multiple constructors:
use ink_lang as ink;
#[ink::contract]
mod mycontract {
#[ink(storage)]
pub struct MyContract {
number: u32,
}
impl MyContract {
/// Constructor that initializes the `u32` value to the given `init_value`.
#[ink(constructor)]
pub fn new(init_value: u32) -> Self {
Self {
number: init_value,
}
}
/// Constructor that initializes the `u32` value to the `u32` default.
///
/// Constructors can delegate to other constructors.
#[ink(constructor)]
pub fn default() -> Self {
Self {
number: Default::default(),
}
}
/* --snip-- */
}
}Update your smart contract
Now that you have learned about storing simple values, declaring data types, and using constructors, you can update your smart contract source code to implement the following:
- Create a storage value called
valuewith a data type ofi32. - Create a new
Incrementerconstructor and set itsvaluetoinit_value. - Create a second constructor function named
defaultthat has no input, and creates a newIncrementerwith itsvalueset to0.
To update the smart contract:
- Open the
lib.rsfile in a text editor. -
Replace the
Storage Declarationcomment by declaring the storage item namedvaluewith the data type ofi32.#[ink(storage)] pub struct Incrementer { value: i32, } -
Modify the
Incrementerconstructor to set itsvaluetoinit_value.impl Incrementer { #[ink(constructor)] pub fn new(init_value: i32) -> Self { Self { value: init_value, } } } -
Add a second constructor function named
defaultthat creates a newIncrementerwith itsvalueset to0.#[ink(constructor)] pub fn default() -> Self { Self { value: 0, } } - Save your changes and close the file.
-
Use the
testsubcommand andnightlytoolchain to test your work by running the following command:cargo +nightly testThe command should display output similar to the following to indicate successful test completion:
running 1 test test incrementer::tests::default_works ... ok test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
Add a function to get a storage value
Now that you have created and initialized a storage value, you can interact with it using public and private functions.
For this tutorial, you add a public function to get a storage value.
Note that all public functions must use the #[ink(message)] attribute macro.
To add the public function to the smart contract:
- Open the
lib.rsfile in a text editor. -
Update the
getpublic function to return the data for thevaluestorage item that has thei32data type.#[ink(message)] pub fn get(&self) -> i32 { self.value }Because this function only reads from the contract storage, it uses the
&selfparameter to access the contract functions and storage items. This function does not allow changes to the state of thevaluestorage item.If the last expression in a function does not have a semicolon (;), Rust treats it as the return value.
-
Replace the
Test Your Contractcomment in the privatedefault_worksfunction with code to test thegetfunction.fn default_works() { let contract = Incrementer::default(); assert_eq!(contract.get(), 0); } - Save your changes and close the file.
-
Use the
testsubcommand andnightlytoolchain to test your work by running the following command:cargo +nightly test
Add a function to modify the storage value
At this point, the smart contract does not allow users modify the storage.
To enable users to modify storage items, you must explicitly mark value as a mutable variable.
To add a function for incrementing the stored value:
- Open the
lib.rsfile in a text editor. -
Add a new
incpublic function to increment thevaluestored using thebyparameter that has data type ofi32.#[ink(message)] pub fn inc(&mut self, by: i32) { self.value += by; } -
Add a new test to the source code to verify this function.
#[ink::test] fn it_works() { let mut contract = Incrementer::new(42); assert_eq!(contract.get(), 42); contract.inc(5); assert_eq!(contract.get(), 47); contract.inc(-50); assert_eq!(contract.get(), -3); } - Save your changes and close the file.
-
Use the
testsubcommand andnightlytoolchain to test your work by running the following command:cargo +nightly testThe command should display output similar to the following to indicate successful test completion:
running 2 tests test incrementer::tests::it_works ... ok test incrementer::tests::default_works ... ok test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
Build the WebAssembly for the contract
After you test the incrementer contract, you are ready to compile this project to WebAssembly.
After you compile the smart contract to WebAssembly, you can use the Contracts UI to deploy and test the smart contract on your local contracts node.
To build the WebAssembly for this smart contract:
- Open a terminal shell on your computer, if needed.
- Verify that you are in the
incrementerproject folder. -
Compile the
incrementersmart contract by running the following command:cargo +nightly contract buildThe command displays output similar to the following:
Your contract artifacts are ready. You can find them in: /Users/dev-docs/incrementer/target/ink - incrementer.contract (code + metadata) - incrementer.wasm (the contract's code) - metadata.json (the contract's metadata)
Deploy and test the smart contract
If you have the substrate-contracts-node node installed locally, you can start a local blockchain node for your smart contract, then use the Contracts UI to deploy and test the smart contract.
To deploy on the local node:
- Open a terminal shell on your computer, if needed.
-
Start the contracts node in local development mode by running the following command:
substrate-contracts-node --dev - Open the Contracts UI and verify that it is connected to the local node.
- Click Add New Contract.
- Click Upload New Contract Code.
- Select the
incrementer.contractfile, then click Next. - Click Upload and Instantiate.
- Explore and interact with the smart contract using the Contracts UI.
Next steps
In this tutorial, you learned some basic techniques for creating smart contracts using the ink! programming language and attribute macros. For example, this tutorial illustrated:
- How to add storage items, specify data types, and implement constructors in a new smart contract project.
- How to add functions to a smart contract.
- How to add a test to a smart contract.
- How to upload and instantiate the contract using the Contracts UI.
You can find an example of the final code for this tutorial in the assets for the smart-contracts You can learn more about smart contract development in the following topics:
