hktrcrCopy of My First Query
Updated 2021-12-24
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
-- QUESTION: How much have you spent on fees?
-- Use this query to find out how much someone has paid in fees on the Ethereum network.
-- For demonstration purposes, we've selected a wallet that *may* belong to Snoop Dogg,
-- who is, among other things, a legendary NFT connoisseur.
-- The first column tells you how much Snoop has spent in terms of ETH, the second
-- tells you the same thing in terms of USD.
-- Copy paste your own wallet address in lines 18 & 19 to find the answer for your wallet!
SELECT
date_trunc('day', block_timestamp) as date,
sum(tx_fee) as total_tx_fees_paid_eth,
sum(fee_usd) as total_tx_fees_paid_usd
FROM ethereum.transactions
WHERE
from_address = lower('0xce90a7949bb78892f159f428d0dc23a8e3584d75') OR
to_address = lower('0xce90a7949bb78892f159f428d0dc23a8e3584d75')
group by 1