TYPE | SYMBOL | TRANSACTIONS | USERS | VOLUME_USD | AVERAGE_AMOUNT_USD | |
---|---|---|---|---|---|---|
1 | Bridge from Ink | USDC.e | 12747 | 1 | 7854348.41 | 616.172307994 |
2 | Bridge from Ink | USD₮0 | 3235 | 1590 | 29296998.33 | 9056.25914374 |
3 | Bridge to Ink | USDC.e | 17793 | 15008 | 9500779 | 417.030067597 |
4 | Bridge to Ink | USD₮0 | 2122 | 976 | 9144649.67 | 4309.448477851 |
5 | Bridge to Ink | frxUSD | 2 | 2 | 204.79 | 102.395 |
Afonso_DiazBy symbol and type
Updated 2025-04-06
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
main as (
select
tx_hash,
block_timestamp,
to_address as user,
symbol,
amount,
amount_usd,
'Bridge to Ink' as type
from
ink.core.ez_token_transfers
where
origin_to_address = '0xfebcf17b11376c724ab5a5229803c6e838b6eae5'
and from_address = '0x0000000000000000000000000000000000000000'
union all
select
tx_hash,
block_timestamp,
from_address as user,
symbol,
amount,
amount_usd,
'Bridge from Ink' as type
from
ink.core.ez_token_transfers
where
origin_to_address = '0x1cb6de532588fca4a21b7209de7c456af8434a65'
and from_address = origin_from_address
and to_address = '0x0000000000000000000000000000000000000000'
union all
Last run: 27 days ago
5
299B
1s