DATE | TYPE | TRANSACTIONS | USERS | VOLUME_USD | AVERAGE_AMOUNT_AMOUNT | CUMULATIVE_TRANSACTIONS | CUMULATIVE_VOLUME_USD | |
---|---|---|---|---|---|---|---|---|
1 | 2025-01-20 00:00:00.000 | Bridge from Ink | 86 | 1 | 11129.81 | 129.416395349 | 86 | 11129.81 |
2 | 2025-01-20 00:00:00.000 | Bridge to Ink | 96 | 62 | 16402.69 | 160.810686275 | 96 | 16402.69 |
3 | 2025-01-21 00:00:00.000 | Bridge from Ink | 159 | 1 | 26100.11 | 164.15163522 | 245 | 37229.92 |
4 | 2025-01-21 00:00:00.000 | Bridge to Ink | 180 | 72 | 32155.21 | 177.653093923 | 276 | 48557.9 |
5 | 2025-01-22 00:00:00.000 | Bridge from Ink | 66 | 1 | 16539.11 | 250.592575758 | 311 | 53769.03 |
6 | 2025-01-22 00:00:00.000 | Bridge to Ink | 80 | 66 | 81863.8 | 998.33902439 | 356 | 130421.7 |
7 | 2025-01-23 00:00:00.000 | Bridge from Ink | 77 | 2 | 122348.59 | 1588.942727273 | 388 | 176117.62 |
8 | 2025-01-23 00:00:00.000 | Bridge to Ink | 183 | 90 | 101607.69 | 549.230756757 | 539 | 232029.39 |
9 | 2025-01-24 00:00:00.000 | Bridge from Ink | 66 | 1 | 33961.9 | 514.574242424 | 454 | 210079.52 |
10 | 2025-01-24 00:00:00.000 | Bridge to Ink | 104 | 55 | 145711.36 | 1387.727238095 | 643 | 377740.75 |
11 | 2025-01-25 00:00:00.000 | Bridge from Ink | 388 | 1 | 38629.44 | 99.560412371 | 842 | 248708.96 |
12 | 2025-01-25 00:00:00.000 | Bridge to Ink | 1130 | 2210 | 125890.27 | 55.409449824 | 1773 | 503631.02 |
13 | 2025-01-26 00:00:00.000 | Bridge from Ink | 482 | 1 | 62758.62 | 130.204605809 | 1324 | 311467.58 |
14 | 2025-01-26 00:00:00.000 | Bridge to Ink | 1083 | 1933 | 152604.73 | 75.248880671 | 2856 | 656235.75 |
15 | 2025-01-27 00:00:00.000 | Bridge from Ink | 401 | 1 | 133502.93 | 332.925012469 | 1725 | 444970.51 |
16 | 2025-01-27 00:00:00.000 | Bridge to Ink | 657 | 1045 | 104140.97 | 89.699371232 | 3513 | 760376.72 |
17 | 2025-01-28 00:00:00.000 | Bridge from Ink | 279 | 2 | 289996.4 | 1039.413620072 | 2004 | 734966.91 |
18 | 2025-01-28 00:00:00.000 | Bridge to Ink | 511 | 751 | 239321.35 | 291.145194647 | 4024 | 999698.07 |
19 | 2025-01-29 00:00:00.000 | Bridge from Ink | 146 | 2 | 65173.07 | 446.390890411 | 2150 | 800139.98 |
20 | 2025-01-29 00:00:00.000 | Bridge to Ink | 436 | 501 | 147385.72 | 244.826777409 | 4460 | 1147083.79 |
Afonso_DiazOvertime
Updated 4 hours ago
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: about 4 hours ago
...
154
14KB
1s