fbpx
June 24, 2019

List of Blockchain where Solidity can be used

Most people people know that Solidity can be used to develop Ethereum smart contracts. However, very few people also know that Solidity is also in a couple of other blockchain projects. In this article, I will tell you 3 other blockchain technologies where you can use Solidity to write smart…

Read Story
June 23, 2019

Alternatives to web3.js

Web3.js is the leading client library for Ethereum. Personally, I am fine with it, but I know that some developers don't like it because of the beta that never ends, and some random regressions happening between in recent releases. In anycase, it's always good to know some alternatives so that…

Read Story
June 22, 2019

Announcement: I will speak at TruffleCon about Events with Drizzle

I have 3 questions for you. Question 1: Do you know Drizzle, the framework for building Dapp frontend? That can help you massively, and if you don't use it yet, you should watch my video introduction to Drizzle. In a nutshell, Drizzle allow to sync the state of your smart…

Read Story
June 21, 2019

What to build on Ethereum? Dapp ideas

So, you are thinking of building a Dapp on Ethereum, but you are still not sure what to build? In this article, I will give a few tips to find some good Dapp ideas. On Ethereum, Dapps can be categorized in 3 categories: Decentralized finance Game Gambling I will give…

Read Story
June 20, 2019

The Ultimate collection of Solidity Interview Questions | 100 questions

In this article you will find 100 questions to prepare your Solidity job interview. Questions are grouped into easy, intermediate and difficult categories. Easy Intermediate Difficult By the way, if you want to make sure you understand and remember all the questions / answers listed in this article, you need…

Read Story
June 19, 2019

How I Got 2 jobs As A Blockchain Developer | Real story

There are a few other articles /videos that claim to explain how to get a job as a blockchain developer. However, none of these resources were created by people who actually got a job of blockchain developer. Getting a job is hard, and generic advice won't help you much. What…

Read Story
June 17, 2019

Which version of web3 should you use?

TLDR: web3-beta 1.0.0-beta.55 npm install web3@1.0.0-beta.35 If you have worked with web3 before, you might have noticed a few.... glitches to say the least. The most annoying thing is that some features tend to break randomly from one release to the other. How can we deal with this, and which…

Read Story
June 17, 2019

Graph of memory locations in Solidity: storage, calldata, etc…

In Solidity smart contracts, there are 4 memory locations: storage memory stack calldata They all have different lifetimes and it's not always easy to choose which one is right. In the below graph I drew their lifetimes against the execution of blocks, smart contract and functions. Storage is the only…

Read Story
June 16, 2019

Call vs transaction API in Ethereum

In Ethereum, there are 2 APIs to interact with a smart contract: Calls (eth_call) Transactions (eth_sendTransactions) In Solidity (the language for writing Ethereum smart contracts), there are 2 kind of functions: view functions, which don't modify state variables non-view functions, which DO modify state variables Which Ethereum API to use…

Read Story
June 14, 2019

Truffle framework cheatsheet

The documentation of the Truffle framework is pretty good, but it can be a bit overwhelming for a beginner. This cheatsheet is a condensed version giving you the bare minimum you need to develop Ethereum Dapps on Truffle CLI Init a Truffle project Init a Truffle project WITH code skeleton…

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