lesson-2_Basic Coding
🏃 Deploy a smart contract with whitelist function
First attempt
Are you ready? Let's get started!
First, let's create a folder called contracts
in the explorer in the left side.
Then, create a new smart contract file called Whitelist.sol
under folder contracts
In Whitelist.sol
, let's start with a simple block of code.
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.20;
contract Whitelist {
constructor() {
}
}
Let's talk about the code line by line.
// SPDX-License-Identifier: UNLICENSED
This line is referred to SPDX license identifier
, which addresses the copyright issues of the code that follows. Generally speaking, UNLICENSED
and MIT
are the most common suffixes, indicating that the following code is permitted for anyone to use. In other words, you all can freely copy and paste it. You can find more information here.
pragma solidity ^0.8.20;
This specifies the version of the Solidity compiler that we want the contract to use. It means that only a Solidity compiler with a version between 0.8.20
and 0.9.0
can be used to compile the code.
contract Whitelist {
constructor() {
}
}
This is the main body of the Solidity code. A .sol
file can contain multiple contracts, but the name of the primary contract must be the same as the file name, which is Whitelist
in this case. Here we only include one contract. The constructor is a function that will run when the contract is deployed. Additionally, the first set of curly braces {}
will contain state variables, functions, etc., and these generally make up about 85~95% of the code.
How to run the code
Click on the Compile panel on the right, and you'll see that ChainIDE has automatically selected the Compiler verison for us. Selecting Optimization will optimize the compiled bytecode, and it can save more Gas when deploying. We won't need to tick that for now so just click on Compile Whitelist.sol
.
You can see that the ABI and BYTE CODE have been generated below. Generally speaking, the ABI defines the communication protocol between the smart contract and other applications, enabling them to call and interact with each other. In fact, this is very helpful for how the smart contract interacts with the frontend. BYTE CODE is a binary encoding, and the underlying principle for deploying contracts on EVM-based chains(such as ETH, Polygon, BNB Chain, Conflux, and other chains that use EVM as a foundation)is achieved through uploading BYTE CODE.
Switch to the Deploy & Interaction panel, connect to JS VM(JS VM is an EVM implemented in JavaScript, very convenient for browser-side testing), and click Deploy
In the INTERACT
section below, you can see the smart contract we've just deployed. Since there are no functions and state variables yet, it's completely empty. Next, we'll start adding those elements to make the smart contract more substantial.
🙋♂️ Asking Questions
If you have any uncertainties or issues with the work done so far, please ask in the #polygon
channel on Discord.
To streamline the assistance process, kindly include the following 4 points in your error report ✨:
1. Section and lesson number related to the question
2. What you were trying to do
3. Copy & paste the error message
4. Screenshot of the error screen