View data.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Hello World program in Python | |
import requests | |
import datetime | |
def run_query(query): # A simple function to use requests.post to make the API call. | |
request = requests.post('https://graphql.bitquery.io/', | |
json={'query': query}) | |
if request.status_code == 200: |
View 1Paykw4s2WX4SaVjDrQkwSiJr16AiANhiM.csv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 3.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"symbol": "BTC", | |
"direction": "outbound", | |
"path": [ | |
{ | |
"depth": 1, | |
"block": 654328, | |
"tx_time": "2020-10-26 05:55:30", | |
"amount": 2, |
View 0x6fdc428d10baec5e4a114363d261c3f56b4aadb9.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"symbol": "ETH", | |
"token_id": 0, | |
"token_type": "", | |
"token": "0x0000000000000000000000000000000000000000", | |
"direction": "inbound", | |
"path": [ | |
{ | |
"depth": 1, | |
"block": 11128247, |
View monthly_trade_volume_dex.ql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
ethereum(network: ethereum) { | |
dexTrades(options: {asc: "date.date"}, | |
buyOrSellCurrency: {is: "0xdac17f958d2ee523a2206206994597c13d831ec7"}) { | |
date { | |
date(format: "%Y-%m") | |
} | |
amount | |
currency { | |
symbol |
View DEX_OHLC.ql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
ethereum(network: ethereum) { | |
dexTrades(options: {limit: 10, asc: "timeInterval.minute"}, | |
protocol: {is: "Uniswap v2"}, | |
date: {is: "2020-10-10"} | |
buyCurrency: {is: "0xdac17f958d2ee523a2206206994597c13d831ec7"}, | |
sellCurrency: {is: "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"}) { | |
timeInterval { | |
minute(count: 5) | |
} |
View latest_trades_for_currency.ql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
ethereum(network: ethereum) { | |
dexTrades(options: {limit: 10, desc: ["block.height", "tradeIndex"]}, | |
protocol: {is: "Uniswap v2"}, | |
buyCurrency: {is: "0xdac17f958d2ee523a2206206994597c13d831ec7"}, | |
sellCurrency: {is: "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"}) { | |
block { | |
height | |
timestamp { | |
iso8601 |
View latest_trades.ql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
ethereum(network: ethereum) { | |
dexTrades(options: {limit: 10, desc: "trades"}, protocol: | |
{is: "Uniswap v2"}) { | |
protocol | |
buyCurrency { | |
symbol | |
address | |
} | |
buyAmount |
View top_DEX_Protocols.ql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
ethereum(network: ethereum) { | |
dexTrades(options: {limit: 100, desc: "trades"}) { | |
protocol | |
started: minimum(of: date) | |
trades: count | |
} | |
} | |
} |
View graphql_example.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'net/http' | |
require 'uri' | |
require 'json' | |
uri = URI.parse("https://graphql.bitquery.io/") | |
header = {'Content-Type': 'application/json'; 'X-API-KEY': 'YOUR API KEY'} | |
query = "{ bitcoin { blocks { count } } }" | |
# Create the HTTP objects | |
http = Net::HTTP.new(uri.host, uri.port) |
View graphql_example.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'net/http' | |
require 'uri' | |
require 'json' | |
uri = URI.parse('https://graphql.bitquery.io/') | |
header = {'Content-Type': 'application/json'} | |
query = ' { bitcoin { blocks { count } } }' | |
puts query | |
# Create the HTTP objects | |
http = Net::HTTP.new(uri.host, uri.port) |
NewerOlder