basic syntax– tag –
-
Tutorials and guides
Day 17. Solidity Basic Syntax – Contract Implementation –
We will implement a contract utilizing the knowledge accumulated up to Day 16. As an example, we will create a contract with basic crowdfunding functionality. First, let's understand the development process for developing a contract and then introduce the actual code. -
Tutorials and guides
Day 16. Solidity Basic Syntax – Style Guide –
The Style Guide in Solidity programming refers to guidelines that dictate the order and manner of coding, focusing on aspects such as how to write and organize code. Adhering to a style guide in coding is crucial for several reasons, including improving readability, facilitating maintenance, unifying code across teams, and preventing errors. Consistently following a coding style guide is essential for the long-term success of a project. -
Tutorials and guides
Day 15. Solidity Basic Syntax – Events –
In Solidity, events are a mechanism for notifying the external world. Using events, external entities (such as frontend applications) can receive information from triggered events and perform various actions. -
Tutorials and guides
Day 13. Basic Syntax of Solidity – Inheritance/Instantiation –
In Solidity, there are two main methods to utilize the functionalities of other contracts. In this tutorial, we will explain these two methods: inheritance and instantiation.
1