Instructional Video3:40
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Exercise - Access Library Using A for B Pattern

Higher Ed
This is an exercise video on accessing a library using the A for B pattern. This clip is from the chapter "Learn Advanced Solidity II" of the series "The Complete Solidity Course - Zero to Advanced for Blockchain and Smart...
Instructional Video3:00
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Injected Web3 Interface Exercise Prerequisite

Higher Ed
In this video, you will learn the prerequisites required for understanding and working with Injected Web3 interfaces in Solidity programming. It also covers topics such as Web3.js, Metamask, or other tools and technologies used in web3...
Instructional Video5:08
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Solution - Abstract Contract Calculator

Higher Ed
In this video, we will discuss the solution to the exercise on abstract contract calculator from the previous video. This clip is from the chapter "Learn Advanced Solidity I (Inheritance and Abstractions)" of the series "The Complete...
Instructional Video7:33
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - What are Abstract Contracts in Solidity

Higher Ed
In this video, you will learn about abstract contracts in Solidity, which are contracts that cannot be deployed and are used as base contracts to be inherited from. This clip is from the chapter "Learn Advanced Solidity I (Inheritance...
Instructional Video8:10
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Solution - Inheritance with Smart Contracts

Higher Ed
In this video, we will discuss the solution to the exercise on inheritance with smart contracts from the previous video. This clip is from the chapter "Learn Advanced Solidity I (Inheritance and Abstractions)" of the series "The Complete...
Instructional Video3:20
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Exercise - Inheritance with Smart Contracts

Higher Ed
This is an exercise video on inheritance with smart contracts. This clip is from the chapter "Learn Advanced Solidity I (Inheritance and Abstractions)" of the series "The Complete Solidity Course - Zero to Advanced for Blockchain and...
Instructional Video3:37
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - What Is Inheritance in Solidity

Higher Ed
This video explains the concept of inheritance in Solidity, a way to reuse and extend the functionality of smart contracts. This clip is from the chapter "Learn Advanced Solidity I (Inheritance and Abstractions)" of the series "The...
Instructional Video4:07
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Review - Public Private External and Internal in Solidity

Higher Ed
In this video, you will learn about the difference between the public, private, external, and internal visibility modifiers in Solidity, and when to use them in your smart contracts. This clip is from the chapter "Learn Advanced Solidity...
Instructional Video9:44
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Exercise - Contract Visibility Advanced

Higher Ed
This is an exercise video on contract visibility advanced. This clip is from the chapter "Learn Advanced Solidity I (Inheritance and Abstractions)" of the series "The Complete Solidity Course - Zero to Advanced for Blockchain and Smart...
Instructional Video7:45
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - What are Contracts Review in Solidity

Higher Ed
This video explores the concept of contract reviews in Solidity and how they can help improve the security and reliability of your smart contracts. This clip is from the chapter "Learn Advanced Solidity I (Inheritance and Abstractions)"...
Instructional Video3:18
Curated Video

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

Higher Ed
This video provides an introduction to advanced Solidity. This clip is from the chapter "Learn Advanced Solidity I (Inheritance and Abstractions)" of the series "The Complete Solidity Course - Zero to Advanced for Blockchain and Smart...
Instructional Video1:19
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Optional Bonus - Cost Restriction in Solidity

Higher Ed
This is an optional video that provides bonus examples on cost restriction in Solidity to leverage your learning. This clip is from the chapter "Solidity Patterns II - Restricted Access" of the series "The Complete Solidity Course - Zero...
Instructional Video2:46
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Only After Modifier in Solidity II

Higher Ed
In this video, we will continue our discussion on the “Only After†modifier in Solidity. By the end of the video, you will have a solid understanding of how to use the “Only After†modifier in a variety of situations to improve the...
Instructional Video5:39
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Only After Modifier in Solidity I

Higher Ed
The “Only After†modifier is a very useful Solidity modifier that allows a function to be executed only after a specific period of time has passed since the contract was created or since the last time the function was executed. This...
Instructional Video6:34
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - The Restricted Access Pattern

Higher Ed
The Restricted Access Pattern is a design pattern in Solidity that restricts access to certain functions or data within a smart contract to only authorized parties. This pattern is useful for controlling the flow of operations within a...
Instructional Video4:05
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - How to Hack a Smart Contract (Malicious Constructor Trick)

Higher Ed
In this video, you will learn how to exploit a vulnerable smart contract using the malicious constructor trick. The video will begin with an introduction to the concept of constructor in Solidity, followed by an explanation of the...
Instructional Video6:15
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - A Vulnerable Smart Contract

Higher Ed
In this video, we will discuss what a vulnerable smart contract is and how it can be exploited. This clip is from the chapter "Solidity Patterns I - Cybersecurity" of the series "The Complete Solidity Course - Zero to Advanced for...
Instructional Video2:42
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Should Contracts Be Allowed to Receive Funds? (Thought Experiment)

Higher Ed
In the world of blockchain and cryptocurrencies, smart contracts have the ability to receive and transfer funds. However, this raises the question of whether contracts should be allowed to receive funds or not. On one hand, allowing...
Instructional Video7:59
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Smart Contracts - Points of Failure

Higher Ed
In this video, we will discuss the different points of failure that can occur in a smart contract. We will go through some examples of how contracts can be exploited by attackers and discuss some best practices for avoiding common...
Instructional Video4:37
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Solution - Pop Quiz – Looping and Transactions in Solidity

Higher Ed
In this video, we will discuss the solution to the pop quiz on looping and transactions in Solidity from the previous video. This clip is from the chapter "Solidity Patterns I - Cybersecurity" of the series "The Complete Solidity Course...
Instructional Video4:10
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Smart Contract Oracles

Higher Ed
In this video, you will learn about Smart Contract Oracles, which are third-party services that provide external data to smart contracts. You will understand the importance of Oracles in smart contract development, the challenges of...
Instructional Video7:35
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Build a Random Generator Function

Higher Ed
In this video, you will learn how to build a random generator function in Solidity. The video will cover the basic principles of generating random numbers in a deterministic environment like the Ethereum blockchain. This clip is from 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 Video1:22
Curated Video

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

Higher Ed
This is an exercise video on writing a fallback function. 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...