Instructional Video4:55
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - What Are Cryptographic Functions

Higher Ed
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....
Instructional Video7:35
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Solution - Write a Function Overload

Higher Ed
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...
Instructional Video1:42
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Exercise - Write a Function Overload

Higher Ed
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...
Instructional Video4:16
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Function Overloading in Solidity

Higher Ed
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...
Instructional Video7:24
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - The Fallback Function in Solidity III

Higher Ed
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...
Instructional Video6:32
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - The Fallback Function in Solidity II

Higher Ed
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 -...
Instructional Video11:10
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - The Fallback Function in Solidity I

Higher Ed
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...
Instructional Video2:56
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Exercise - Destructuring and Multiple Returns from Functions in Solidity

Higher Ed
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...
Instructional Video6:46
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Destructuring and Multiple Returns from Functions in Solidity

Higher Ed
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...
Instructional Video5:39
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Returning Multiple Data Types with Functions in Solidity

Higher Ed
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....
Instructional Video4:16
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Solution - View and Pure Functions

Higher Ed
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...
Instructional Video1:41
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - What Does Pure Mean in Solidity

Higher Ed
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...
Instructional Video8:12
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - The View Keyword in Solidity

Higher Ed
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...
Instructional Video8:56
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Solution - Write a Function Modifier

Higher Ed
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...
Instructional Video3:53
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Exercise - Write a Function Modifier

Higher Ed
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...
Instructional Video10:18
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - How to Write a Function Modifier in Solidity

Higher Ed
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...
Instructional Video7:24
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - What Are Function Modifiers in Solidity

Higher Ed
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...
Instructional Video2:25
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Overview of Functions in This Solidity Course

Higher Ed
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...
Instructional Video6:58
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Special Variables

Higher Ed
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...
Instructional Video6:35
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Global Variables in Solidity II

Higher Ed
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...
Instructional Video4:57
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Solution - Assert Time and Dates Suffix in Solidity

Higher Ed
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...
Instructional Video1:06
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Exercise - Assert Time and Dates Suffix in Solidity

Higher Ed
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...
Instructional Video11:06
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Mapping in Solidity

Higher Ed
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...
Instructional Video1:50
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Exercise - Structs in Solidity

Higher Ed
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...