January 18, 2026

Happy Anniversary Binance, we’re impressed with these 5 metrics

Happy Anniversary Binance, we’re impressed with these 5 metrics

Binance, one of the leading cryptocurrency exchanges, is celebrating its second year anniversary of their deployed ERC20 Ethereum contract. Operating a top tier application is not easy, today we’re looking at the past two years and the metrics that tell us about BNB token.

TLDR; We’re looking at the metrics of Binance utilizing Amberdata.io API to obtain specific a blockchain data and aggregations needed to understand the bigger picture. The following methods are outlined for you to replicate and assess your Ethereum application.

Analysis Summary

At time of writing (2019–07–05), current statistics are:

Supply           Market Cap         Price USD
16,579,517.055 4,530,079,663.12 $32.65

Getting this data is a simple query:

// BNB Ethereum Address
const address = ‘0xb8c77482e45f1f44de1745f52c74426c631bdd52’
const url = `
https://web3api.io/api/v1/addresses/$/information`axios.get(url, }).then(res => )

See docs here →

Binance is two years old, there are a couple points of interest with the historical data. On July 9th the first 99 holders got BNB token. On February 26th BNB holders went from 73,788 to 295,362 a very significant distribution, the highest change in the lifetime of the token. Since then, holdings have been steady as seen in the chart above.

For this summary, I used historical data with aggregation counts:

// BNB Ethereum Address
const address = ‘0xb8c77482e45f1f44de1745f52c74426c631bdd52’
const url = `
https://web3api.io/api/v1/tokens/$/supplies/historical`axios.get(url, }).then(res => ,
// …
// ]

See docs here →

// BNB Ethereum Address
const address = ‘0xb8c77482e45f1f44de1745f52c74426c631bdd52’
const url = `
https://web3api.io/api/v1/tokens/$/holders/latest`axios.get(url, }).then(res => )

See docs here →

The chart below shows the overview of all token holdings by percentage, filtering results to token holdings above 1MM tokens (outer circle) and $1MM dollars (inner circle):

The next chart shows holding percentages filtered to 100k tokens (outer circle) and $100k dollars (inner circle):

In these examples, we are using the same data set used in #2, this time filtering the low values and showing percentages for large token holdings. The math is quite simple, for each holder above the defined threshold:

(Token Holding Amount / Total Available Supply) * 100 = Percent Holdings

See docs here →

This data was achieved by using the initial holders addresses list generated by #3, then iterating each holder and mapping/tallying unique tokens. Note: this process took quite a while, as there are a large about of BNB holders. The following endpoint is used for viewing each holders token holdings:

// BNB Ethereum Address
const address = ‘0xb8c77482e45f1f44de1745f52c74426c631bdd52’
const url = `
https://web3api.io/api/v1/addresses/$/tokens$`axios.get(url, }).then(res => )

See docs here →

Getting started is easy, here’s a few quick steps:

NOTE: for questions #2, #3, you will need a professional or on-demand API Key.

We hope you enjoyed this post! Leave us comments or questions below or find us on social:

Previous Blogs:

Published at Fri, 05 Jul 2019 23:57:23 +0000

Previous Article

Australian Woman Travels to Ten Countries in 12 Weeks on Cryptocurrency Alone

Next Article

Indian Authorities Arrest 4 Individuals Accused of Crypto Ponzi Scheme

You might be interested in …