Giter Site home page Giter Site logo

etherdata-series's Introduction

etherdata-series

General

Height:

SELECT number
FROM `bigquery-public-data.ethereum_blockchain.blocks`
WHERE timestamp = (
  SELECT MAX(b.timestamp)
  FROM `bigquery-public-data.ethereum_blockchain.blocks` AS b
)

1

Etherdata - analytics platform for Ethereum


2

http://etherdata.net

tells you the truth about Ethereum


3

Approximately 62% of blocks were mined by 5 mining pools

(Etherscan, DwarfPool, Nanopool, F2Pool, SparkPool)

#7141386


4

In average block contains 53.735513003286336 transactions

#7141386

SELECT AVG(transaction_count)
FROM `bigquery-public-data.ethereum_blockchain.blocks`

5

There are 2275648 contracts deployed in Ethereum

#7146256

SELECT COUNT(*)
FROM `bigquery-public-data.ethereum_blockchain.contracts`

6

33% of deployed contracts have at least one transaction

#7141386


7

19.17809784% of contracts are being used for more than a week, 1.286622536% of contracts are being used for more than a year

#7146256


8

Contract obsolescence

#7151205


9

In average contract contains 5.199765300477151 functions #7160984

SELECT AVG(ARRAY_LENGTH(function_sighashes))
FROM `bigquery-public-data.ethereum_blockchain.contracts`

10

There are 1790.3942006269608 contracts deployed daily

-OR-

In average 1790.3942006269608 contracts deployed daily

#7165919

SELECT AVG(c)
FROM (
  SELECT TIMESTAMP_TRUNC(block_timestamp, DAY) AS d, COUNT(*) AS c
  FROM `bigquery-public-data.ethereum_blockchain.contracts`
  GROUP BY 1
)

11

Average growth rate of contracts' amount is 33.103825136612016%

#7170777

SELECT AVG(c_growth_percent)
FROM (
  SELECT d, c, prev_c, ROUND(100 * (c - prev_c)/prev_c) c_growth_percent
  FROM (
    SELECT d, c, LAG(c, 1) OVER(ORDER BY d) prev_c
    FROM (
      SELECT TIMESTAMP_TRUNC(block_timestamp, WEEK) AS d, COUNT(*) AS c
      FROM `bigquery-public-data.ethereum_blockchain.contracts`
      GROUP BY 1
      ORDER BY 1
    )
  )
)

12

Average growth rate of transactions' amount is 4.672131147540986%

#7175715

SELECT AVG(c_growth_percent)
FROM (
  SELECT d, c, prev_c, ROUND(100 * (c - prev_c)/prev_c) c_growth_percent
  FROM (
    SELECT d, c, LAG(c, 1) OVER(ORDER BY d) prev_c
    FROM (
      SELECT TIMESTAMP_TRUNC(block_timestamp, WEEK) AS d, COUNT(*) AS c
      FROM `bigquery-public-data.ethereum_blockchain.transactions` 
      GROUP BY 1
      ORDER BY 1
    )
  )
)

13

Average growth rate of token transfers' amount is 89.24561403508777%

#7180615

SELECT AVG(c_growth_percent)
FROM (
  SELECT d, c, prev_c, ROUND(100 * (c - prev_c)/prev_c) c_growth_percent
  FROM (
    SELECT d, c, LAG(c, 1) OVER(ORDER BY d) prev_c
    FROM (
      SELECT TIMESTAMP_TRUNC(block_timestamp, WEEK) AS d, COUNT(*) AS c
      FROM `bigquery-public-data.ethereum_blockchain.token_transfers`
      GROUP BY 1
      ORDER BY 1
    )
  )
)

14

Contract deployments chart shows amount of deployed contracts weekly. It displays anomalies using Iglewicz and Hoaglin's method.


etherdata-series's People

Contributors

aquiladev avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.