Ethereum Spent

    Definition

    Track the amount of ETH leaving the wallets where ICO funds were collected.

    Note: Transactions are not followed to exchanges.

    Example

    Below is the ETH spent over time of Golem plotted against the Golem price and ETH price. Enabling the ETH is useful to give you an approximation for the value in USD that this ETH movement generated. Most often ICOs move ethereum out of their ICO wallets to sell them on exchanges to fund the project.

    golem-eth-spent

    Access

    Free Access


    Measuring Unit

    Ethereum amount


    Data Type

    Timeseries Data


    Frequency

    Five-minute Intervals


    Latency

    On-Chain Latency


    Available Assets

    Available for these assets


    SanAPI

    Timeseries data

    Available as a field of the project graphql type, fetch the amount of ETH spent for every interval in the time range.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    {
      projectBySlug(slug: "santiment") {
        ethSpentOverTime(
          from: "2019-01-01T00:00:00Z"
          to: "2020-01-07T00:00:00Z"
          interval: "30d"
        ) {
          datetime
          ethSpent
        }
      }
    }

    Run in Explorer

    Aggregated data per project

    In order to fetch how many ETH every project spent in a the last N days, you can execute the following GraphQL query (the days can contain any number of days):

    1
    2
    3
    4
    5
    6
    {
      allProjects {
        slug
        ethSpent(days: 30)
      }
    }

    Run in Explorer