Lately, there has been a lot of discussion regarding Ethereum’s total supply. It seems as though most Ethereum block explorers provide a different amount even though they all read the same block number. This is in part due to how each explorer records the circulating supply. Some take into consideration lost/stolen/burned Ether while others do not. For example Marc-André Dumas created a script to calculate total supply.
Marc-André Dumas @marcandu
My ethsupply script was counting some uncle rewards twice, which led to the discrepancy. Many thanks to @junderwood4649 for identifying the bug and everyone else who reviewd the code. As you will see below, the delta with Etherscan is now only 3 ETH. github.com/madumas/ethsup… 
August 8th 2020
29 Retweets206 Likes
Not only has Marc-André provided a script to do the calculation but so has the Nethermind and Geth teams. Until a few days ago these scripts weren’t open source and since most people don’t run a full Ethereum node (the state of the blockchain), it is not surprising this has never really came up. Udi Wertheimer provides pretty good insight as to the differences between how proponents of Ethereum and Bitcoin think about the respective technology/money.
Udi Wertheimer @udiWertheimer
I salute @bitstein and @pierre_rochard for their investigative work uncovering the ETH #supplygate. But it’s time to #articulate the steel man argument... God only knows that no one else can pull it off! Grab your cancellation torches and read the THREAD /1
August 9th 2020
120 Retweets519 Likes Market Update (Monday 8:30 AM EST)
Percent Change (Rounded) Based on Last Monday Open (8:30 AM EST)
Bitcoin- $11,883 (+5%)
Ether- $393 (+1%)
Gold- $2,033 (+4%)
DJI Average- 27,488 (+3%)
NYSE Composite Index- 12,797 (+2%)
NASDAQ Composite Index- 11,033 (+2%)
S&P500 Index- 3,356 (+3%)
New Developments
-
Baselining North America Coca-Cola Bottling Supply Chain, Provide Services
-
ArCoin to be first digital asset created through SEC registered fund for MCD, MakerDAO
-
Grayscale Bringing Bitcoin To The Masses with National Ad Campaigns, CryptoPotato
-
Goldman Sachs exploring the opportunity of creating a digital fiat coin, CNBC
-
Grayscale’s Ethereum Trust Product (ETHE) is now filed with Registration Statement on Form 10 with the SEC, Grayscale Investments
Industry Insights
-
Square reported $875 million in Bitcoin purchases over Q2 of 2020, Messari
-
Congress to IRS: Proof of Stake block rewards should not be taxed as income, CoinCenter
-
Uniswap (decentralized exchange) total website visits increased 15x in July, Messari
-
DeFi webinar featuring Ryan Sean Adams, Anthony Sassano, Andrew Keys, and William Mougayar, Kraken Webinar
For Developers
-
Protecting ETH2 Validator Keys, Attestant
-
Learn how to write Solidity to create Ethereum smart contracts, freeCodeCamp
-
How the Opyn contract was hacked for almost $1 million, Scott Bigelow
-
Clean Contracts - a guide on smart contract patterns & practices, Wesley van Heije
Blockchain Activity
Create a mintable ERC20 token contract:
*Tools used during activity include Metamask browser extension for wallet, remix.ethereum.org for IDE, and Ganache for local blockchain instance.
# set pragma
pragma solidity ^0.5.0;
# import OpenZeppelin libraries
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v2.5.0/contracts/token/ERC20/ERC20.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v2.5.0/contracts/token/ERC20/ERC20Detailed.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v2.5.0/contracts/token/ERC20/ERC20Mintable.sol";
# create Contract
contract MyToken is ERC20, ERC20Detailed, ERC20Mintable {
constructor (string memory name, string memory symbol)
ERC20Detailed (name, symbol, 18)
public
{
//constructor can stay empty
}
}Earn Opportunity
Gas Token presents a unique opportunity to arbitrage gas prices on Ethereum. You can either buy the token from uniswap.exchange in hopes gas prices will continue to go up or you can mint the token through the use of a smart contract which takes up storage space on-chain during times of low gas prices and burns the storage (in return for a refund) during times of high gas prices. More information can be found here. Gas prices can be tracked here.