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 for Golem, plotted against the Golem price and ETH price. Enabling ETH is useful to give you an approximation of the value in USD that this ETH movement generated. Most often, ICOs move Ethereum out of their ICO wallets to sell 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. Fetches the amount of ETH spent for every interval in the time range.

{
projectBySlug(slug: "santiment") {
ethSpentOverTime(
from: "2019-01-01T00:00:00Z"
to: "2020-01-07T00:00:00Z"
interval: "30d"
) {
datetime
ethSpent
}
}
}

Aggregated data per project

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

{
allProjects {
slug
ethSpent(days: 30)
}
}