0xHaM-dworld Cup II - [chain] USDC transfers over time bars copy
Updated 2023-09-25
99
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
›
⌄
-- forked from marqu / world Cup II - [chain] USDC transfers over time bars @ https://flipsidecrypto.xyz/marqu/q/5lJBGt5DnRw7/world-cup-ii-chain]-usdc-transfers-over-time-bars
with
txs_ethereum as (
select
block_timestamp,
tx_hash,
from_address as user_address,
amount,
'Ethereum' as blockchain
from ethereum.core.ez_token_transfers
where block_timestamp ::date > current_date() - interval '{{months}} months'
and contract_address = '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48'
and amount > 0
),
txs_solana as (
select
block_timestamp,
tx_id as tx_hash,
tx_from as user_address,
amount as amount,
'Solana' as blockchain
from solana.core.fact_transfers
where block_timestamp ::date > current_date() - interval '{{months}} months'
and mint = 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
and amount > 0
),
Run a query to Download Data