-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
37 lines (31 loc) · 1.58 KB
/
Copy pathdata.js
File metadata and controls
37 lines (31 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
------------------------------------------------------
Go to https://graphql.bitquery.io and type in
------------------------------------------------------
query ($network: EthereumNetwork!,
$token: String!,
$from: ISO8601DateTime,
$till: ISO8601DateTime){
ethereum(network: $network){
transfers(currency: {is: $token}
amount: {gt: 0}
date: {since: $from till: $till}
){
currency{
symbol
}
median: amount(calculate: median)
average: amount(calculate: average)
amount
count
days: count(uniq: dates)
sender_count: count(uniq: senders)
receiver_count: count(uniq: receivers)
min_date:minimum(of: date)
max_date:maximum(of: date)
}
}
}
------------------------------------------------------
network
------------------------------------------------------
{"limit":10,"offset":0,"network":"bsc","token":"0x84b2537ef5a872a7c67fb03c6cefc51dd4be3c68"}