#ethereum
Read more stories on Hashnode
Articles with this tag
Solidity, a popular programming language for Ethereum smart contracts, is an object-oriented language similar to Java and C++. This blog looks at the...
Structs are useful and flexible data types in Solidity. They help developers organize and handle complex data easily. This blog looks at the struct...
Strings are a basic reference data type in Solidity and are often used to store and manage text. In this blog, we'll explain how to declare,...
In this post, we'll explore the concept of fixed byte size arrays in Solidity. These arrays let us work with a set number of bytes, making them very...
Arrays are a key part of Solidity programming, allowing developers to store and work with collections of similar elements. Solidity supports two types...
In Solidity, reference data types form an essential part of the programming language, especially when working with complex data structures like...