N_BRIDGES | N_TOKENS | N_RECEIVERS | N_SENDERS | BRIDGED_VOL_USD | |
---|---|---|---|---|---|
1 | 5918575 | 255 | 2392604 | 901662 | 4266391161.1271 |
0xHaM-dIn total
Updated 2025-06-08Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
SELECT
count(DISTINCT TX_HASH) as n_bridges,
count(DISTINCT SYMBOL) as n_tokens,
count(DISTINCT RECEIVER) as n_RECEIVERs,
count(DISTINCT SENDER) as n_SENDERs,
sum(AMOUNT_IN_USD) as bridged_vol_usd
FROM aptos.defi.ez_bridge_activity
-- WHERE BLOCK_TIMESTAMP::date >= '2024-01-01'
-- AND BLOCK_TIMESTAMP::date < date_trunc('week', current_date())
Last run: 5 days ago
1
46B
4s