fbpx
December 31, 2018

Ether wallet – Part III

This is the last part of the tutorial on how to build an Ether wallet smart contract. You will learn: how to do an ether transfer in Solidity the different unit of Ether (wei, gwei...)

Read Story
December 30, 2018

Ether wallet – Part II

In the previous episode we started an Ether wallet smart contract, and we can now send Ether to another address. However, everybody can call the send() function and steal all the Ether! Not great... In this video you will learn how to implement access control with the revert() built-in Solidity…

Read Story
December 29, 2018

Ether wallet – Part I

In this video, we will start to code a wallet for Ether, using a Solidity smart contract. You will learn how to send money to another address with the transfer() method of an address variable. with the transfer() method of an address variable.

Read Story
December 28, 2018

Crud – Part IV

If a user does not exist, no error is produced. We should change that. In this video you will learn how to use the revert() Solidity construct to produce an error.

Read Story
December 27, 2018

Crud – Part III

In the last part of this tutorial we finished all the functionalities of our smart contract. Unfortunately, we have a lot of code duplication in the update and delete function. We use the same for-loop to find a specific entry of our users array. In this video, we will extract…

Read Story
December 26, 2018

Crud – Part II

We are going to continue our CRUD smart contract and finish the main features. You will learn: "Update" and "Destroy" in CRUD Delete an entry of a Solidity array

Read Story
December 25, 2018

Crud – Part I

We will start a CRUD smart contract in Solidity. Crud stands for Create, Read, Update and Delete, and represent a very standard set of data operation that most application needs to do. Once you know these 4 operations, you are well-equipped to develop a large range of smart contracts. In…

Read Story
December 24, 2018

Advanced storage

In this video, we will build on the previous "Simple storage" smart contract, and store list of data instead of just a single piece of data. You will learn how to: Represent list of data with Solidity arrays Access a specify entry of array Get an array length

Read Story
December 23, 2018

Simple storage – Part II

In this video, we are going to finish our simple storage smart contract, which can set and get the value of a variable. You will learn: Difference between transaction and calls How to specific calls in Solidity with view / pure keyword Getter functions automatically created by Solidity How the…

Read Story
December 22, 2018

Simple storage – Part I

In this video we are going to create a smart contract able to store a variable. Very easy to follow! You will learn: how to persist data with state variables in Solidity how to update the value of of a state variable

Read Story

Never miss a minute

Get great content to your inbox every week. No spam.
[contact-form-7 id="6" title="Footer CTA Subscribe Form"]
Arrow-up