Keyrock[4] Wallet analysis - tot wallets
Updated 2024-02-23
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
›
⌄
with sender_tb as (
SELECT
sender as address,
destination_chain
FROM
ethereum.defi.ez_bridge_activity
WHERE
block_timestamp > '{{starting_date}}'
AND Destination_chain in (
'near',
'solana',
'sui',
'osmosis',
'aptos',
'fantom',
'telos',
'sei',
'injective'
)
),
origin_tb as (
SELECT
origin_from_address as address,
destination_chain
FROM
ethereum.defi.ez_bridge_activity
WHERE
block_timestamp > '{{starting_date}}'
AND Destination_chain in (
'near',
'solana',
'sui',
'osmosis',
'aptos',
'fantom',
'telos',
QueryRunArchived: QueryRun has been archived