fbpx
October 22, 2021

Avalanche explained in 2 mins

Avalanche is a new Blockchain that became very popular in 2021. 

It claims to be a better Ethereum, with more…

Read Story
October 20, 2021

Web3.js explained in 2 mins

If you want to interact with a smart contract on Ethereum,



 the API of Ethereum is complicated.

 To interact with…

Read Story
October 19, 2021

Decentralized Autonomous Organizations (DAOs) explained in 2 mins

ICO, DeFi, NFT, there is always a new bubble in crypto.

But there is one bubble we haven’t seen yet.

And when…

Read Story
October 18, 2021

Flashbots explained simply

On Ethereum, miners have an unfair advantage called MEV

. Since 2020, miners made more than 700M dollars, using techniques like…

Read Story
October 14, 2021

Solana explained in 2 mins

Solana has been described as the next Ethereum killer.

 In 2021, the price of Solana skyrocketed. 

Even Celebrities are jumping…

Read Story
October 13, 2021

Solidity explained in 2 mins

Solidity is a language for creating Blockchain smart contracts.

You can use it to create smart contracts, on more than 200…

Read Story
October 12, 2021

The 3 most important smart contracts in DeFi

It’s so exhausting to keep up with all these new DeFi projects. 

But very few DeFi projects are really original.…

Read Story
June 28, 2021

How To Perform Custom Ethereum Flash Loans Using Solidity (ERC 3156 Standard)

What will I learn? Connecting and using an Ethereum testnet What is a flash loan (ERC 3156) Flash loan interfaces Flash loan wrappers Using a flash loan borrower contract Requirements Any chrome-based browser that allows Chrome extensions Metamask browser extension Internet connection (for using testnets) Difficulty Intermediary Introduction The DeFi…

Read Story
April 6, 2020

How to manipulate strings in Solidity?

Manipulating strings in Solidity is notoriously difficult. This is surprising for most developers who are used to manipulating easily in other programming languages like Javascript or Python. https://youtu.be/gNlwpr3vGYM In this article I give a couple of useful code snippets to do some simple string manipulations in Solidity. Warning: Keep in…

Read Story
April 3, 2020

How to generate a random number in smart contract?

Generating a random number in a smart contract is very useful, especially for games. Can we do this in Solidity? Yes! https://youtu.be/4zvvZf-byok Here is the code: pragma solidity ^0.6.0; contract MyContract { function _randModulus(uint mod) internal returns(uint) { return uint(keccak256(abi.encodePacked( now, block.difficulty, msg.sender) )) % mod; nonce++; return rand; }…

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