How to Sell Coupons on ETH? A Sample Solidity dApp with React and Truffle (1/4)

How to Sell Coupons on ETH? Creating your own sample dApp in four parts: Blockchain has bagged decent accolades recently for its transparency of the transactions made throughout the supply chain. By taking inspiration from that, we decided to make an imaginary Web3 dapp for the finxter academy. πŸ›‘ Note: This is just a training … Read more

Solidity Omitted Function Parameter Names

Expressions and Control Structures in Solidity Smart Contracts In this article, we’ll talk about omitted function parameter names, i.e. what they are, when and why we should use them, and how they make our programming life more interesting. It’s part of our long-standing tradition to make this (and other) articles a faithful companion, or a … Read more

Solidity Remix IDE Quickstart

Solidity is one of the most popular languages for writing smart contracts on the Ethereum network. You can code Solidity online using the Remix IDE. This article will show you how! πŸ‘‡  Quick Intro to Remix Remix is a free web-based integrated development environment (IDE) for developing Ethereum smart contracts. Remix allows developers to use … Read more

Solidity Function Calls – Positional vs Named Arguments

In this article, we’ll entertain ourselves by learning about an interesting topic: positional and named function calls in Solidity. It’s part of our long-standing tradition to make this (and other) articles a faithful companion and supplement to the official Solidity documentation. Function Parameters and Arguments So far, we’ve learned about internal and external function calls, … Read more

Solidity Function Calls – Internal and External

In this article, we’ll take a closer look at function calls in general, specifically internal function calls in Solidity. It’s part of our long-standing tradition to make this (and other) articles a faithful companion and a supplement of the official Solidity documentation. You can watch my explainer video on the topic here—I’ll talk about function … Read more

Solidity: Bytes/String Members | Error Handling | Contract Functions

Continuing on the previous article concerning address member types and type information, we’ll learn about It’s part of our long-standing tradition to make this (and other) articles a faithful companion, or a supplement to the official Solidity documentation. Members of bytes and string Two practical member functions are available for concatenating a variable number of … Read more

Solidity – Members of Address Types and Type Information

Continuing on the previous article concerning units and globally available variables, we’ll learn about members of address types and type information. It’s part of our long-standing tradition to make this (and other) articles a faithful companion, or a supplement to the official Solidity documentation. ▢️ Play: Feel free to watch our article explainer video while … Read more

Solidity Conversions of Elementary Types

In this article, we’ll entertain ourselves with conversions between elementary types in Solidity. We’ll mention implicit and explicit conversions, as well as conversions between literals. It’s part of our long-standing tradition to make this (and other) articles a faithful companion, or a supplement to the official Solidity documentation, for this article’s topic. Implicit Conversions The … Read more

Solidity Operators and ‘Delete’ Keyword

Throughout this article, we’ll take a dive into the topics of operators, specifically the ternary operator, compound and increment/decrement operators, and the delete keyword. We’ll conclude the article with a table overviewing the operators in Solidity. It’s part of our long-standing tradition to make this (and other) articles a faithful companion or a supplement to … Read more

Solidity Iterable Mapping Type (Howto + Video)

In this article, we’ll continue our story on the mapping data structure, but this time, we’ll go through the data structure upgrade and reach a new functionality: the iterative mapping data structure. This way, by upgrading the readily available data structure, we’ll get a broader perspective and better understanding of how it works and how … Read more

Solidity Mapping Type Made Easy [+Video]

In this article, you’ll dive into detail on the Solidity mapping type and learn about mapping type specifics. It’s part of our long-standing tradition to make this (and other) articles a faithful companion, or a supplement to the official Solidity documentation, starting with docs for this article’s topic. Mapping Type We have seen mapping type … Read more

Solidity Function Type Examples – A Simple Illustrated Guide

In this article, we’ll continue our story on function types, but this time, we’ll go through several illustrative examples and learn how they work and breathe in practice. This way, by complementing what we already know about function types, we’ll get a broader perspective and better understanding. It’s part of our long-standing tradition to make … Read more