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 Video1:25
Curated Video

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

Higher Ed
This is an exercise video on writing a withdrawal function in Solidity. This clip is from the chapter "Solidity Patterns I - Cybersecurity" of the series "The Complete Solidity Course - Zero to Advanced for Blockchain and Smart...
Instructional Video8:34
Curated Video

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

Higher Ed
In this video, you will learn about the withdrawal pattern in Solidity. We will understand the need for the withdrawal pattern in smart contract development, how it can prevent potential vulnerabilities, and how to implement it in a...
Instructional Video4:52
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Transfer Versus Send Method in Solidity

Higher Ed
This video discusses the differences between the “transfer†and “send†methods in Solidity, which are used to transfer Ether between accounts. The video covers the potential risks of using the “send†method, which can result in...
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 Video2:14
Curated Video

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

Higher Ed
This is a pop quiz video on looping and transactions in Solidity. This clip is from the chapter "Solidity Patterns I - Cybersecurity" of the series "The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts".In...
Instructional Video4:56
Curated Video

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

Higher Ed
This video helps you with leveling up in Solidity by learning new concepts. This clip is from the chapter "Solidity Patterns I - Cybersecurity" of the series "The Complete Solidity Course - Zero to Advanced for Blockchain and Smart...
Instructional Video3:27
Curated Video

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

Higher Ed
This is an exercise video on a cryptographic Oracle contract. 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...
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 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...
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 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 Video2:09
Curated Video

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

Higher Ed
This is an exercise video on the View and Pure functions. 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 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 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:12
Curated Video

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

Higher Ed
In this video, we will explore the concept of nested mappings in Solidity. By the end of this video, you will have a clear understanding of how nested mappings work in Solidity and how to use them in your own smart contracts. This clip...