Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - What Are Cryptographic Functions
In this video, we will be discussing cryptographic functions in Solidity. Cryptographic functions play a critical role in securing smart contracts and ensuring that data transmitted over the blockchain is kept private and tamper-proof....
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Solution - Write a Function Overload
In this video, we will discuss the solution to the exercise on writing a function overload from the previous video. This clip is from the chapter "Learn Functions in Solidity" of the series "The Complete Solidity Course - Zero to...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Exercise - Write a Function Overload
This is an exercise video on writing a function overload. This clip is from the chapter "Learn Functions in Solidity" of the series "The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts".This focuses on the...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Function Overloading in Solidity
In this video, we will cover the concept of function overloading in Solidity. Function overloading allows you to define multiple functions with the same name but different parameter types, which can help you write more modular and...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - The Fallback Function in Solidity III
This video will help you with deploying and debugging your Solidity contracts using Remix IDE. By the end of the video, you will have a clear understanding of the fallback function and be able to implement it in your own Solidity...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - The Fallback Function in Solidity II
In this video, you will create a new contract that will send ether to the fallback contract, which will trigger fallback functions. This clip is from the chapter "Learn Functions in Solidity" of the series "The Complete Solidity Course -...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - The Fallback Function in Solidity I
The fallback function in Solidity is a function that gets called when a contract receives a transaction without any function specified in the transaction data. It is a special function that has no name and no arguments. It is used to...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Exercise - Destructuring and Multiple Returns from Functions in Solidity
This is an exercise video on destructuring and multiple returns from functions in Solidity. This clip is from the chapter "Learn Functions in Solidity" of the series "The Complete Solidity Course - Zero to Advanced for Blockchain and...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Destructuring and Multiple Returns from Functions in Solidity
In this video, you will learn how to use destructuring and multiple returns from functions in Solidity. Destructuring is the process of breaking down a data structure into smaller parts. In Solidity, destructuring is used to extract data...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Returning Multiple Data Types with Functions in Solidity
In this video, you will learn how to return multiple data types with functions in Solidity. We will understand why returning multiple values can be useful and then dive into the syntax and implementation of such functions in Solidity....
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Solution - View and Pure Functions
In this video, we will discuss the solution to the exercise on the View and Pure functions from the previous video. This clip is from the chapter "Learn Functions in Solidity" of the series "The Complete Solidity Course - Zero to...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - What Does Pure Mean in Solidity
In this video, you will learn about the pure keyword in Solidity. Pure functions are a type of function in Solidity that guarantees that they will not read from or modify the state of the contract. These functions are useful for...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - The View Keyword in Solidity
In this video, you will learn about the view keyword in Solidity. The view keyword is used to indicate that a function does not modify the state of the contract. It is similar to the constant keyword, which was used in earlier versions...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Solution - Write a Function Modifier
In this video, we will discuss the solution to the exercise on writing a function modifier from the previous video. This clip is from the chapter "Learn Functions in Solidity" of the series "The Complete Solidity Course - Zero to...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Exercise - Write a Function Modifier
This is an exercise video on writing a function modifier. This clip is from the chapter "Learn Functions in Solidity" of the series "The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts".This focuses on the...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - How to Write a Function Modifier in Solidity
In this video, you will study how to write a function modifier in Solidity from scratch. This clip is from the chapter "Learn Functions in Solidity" of the series "The Complete Solidity Course - Zero to Advanced for Blockchain and Smart...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - What Are Function Modifiers in Solidity
In this video, you will learn about function modifiers in Solidity. Function modifiers are special functions that can be used to modify the behavior of functions in Solidity. This clip is from the chapter "Learn Functions in Solidity" of...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Overview of Functions in This Solidity Course
This video provides an overview of functions in this Solidity course. This clip is from the chapter "Learn Functions in Solidity" of the series "The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts".This...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Special Variables
In this video, you will learn about special variables in Solidity, which are pre-defined variables that hold important information about the contract and the blockchain. This clip is from the chapter "Learn Solidity Basics IV...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Global Variables in Solidity II
In this video, you will learn about some of the most commonly used global variables in Solidity, which can help you write more efficient and secure smart contracts. By the end of this video, you will have a solid understanding of global...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Solution - Assert Time and Dates Suffix in Solidity
In this video, we will discuss the solution to the exercise on asserting time and dates suffix in Solidity from the previous video. This clip is from the chapter "Learn Solidity Basics IV (Conversions and Special Variables)" of the...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Exercise - Assert Time and Dates Suffix in Solidity
This is an exercise video on asserting time and dates suffix in Solidity. This clip is from the chapter "Learn Solidity Basics IV (Conversions and Special Variables)" of the series "The Complete Solidity Course - Zero to Advanced for...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Mapping in Solidity
In this video, we will cover one of the most important data structures in Solidity: mappings. Mappings are a way to associate values to unique keys and are used in many smart contracts for storing and retrieving data efficiently. By the...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Exercise - Structs in Solidity
This is an exercise video on structs in Solidity. This clip is from the chapter "Structures and Libraries in Solidity" of the series "The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts".In this section, we...