TOTAL_STAKE_ALL_CHAINS | TOTAL_STAKE_USD_ALL_CHAINS | TOTAL_TRANSACTIONS_ALL_CHAINS | AVG_STAKE_ALL_CHAINS | AVG_STAKE_USD_ALL_CHAINS | STAKERS | |
---|---|---|---|---|---|---|
1 | 131257455.208083 | 24740061.1187991 | 15883 | 8264.021608517 | 1558.429046853 | 13137 |
Specteroverall sum
Updated 5 days 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 ArbOrder AS (
SELECT
block_timestamp,
tx_hash,
origin_from_address,
origin_function_signature,
amount,
amount_usd,
'Arbitrum' AS chain
FROM arbitrum.core.ez_token_transfers
WHERE
to_address = '0xc8a8ce0ab010e499ca57477ac031358febcbbf17'
AND origin_function_signature = '0x413aaa60'
),
EthOrder AS (
SELECT
block_timestamp,
tx_hash,
origin_from_address,
origin_function_signature,
amount,
amount_usd,
'Ethereum' AS chain
FROM ethereum.core.ez_token_transfers
WHERE
to_address = '0xc8a8ce0ab010e499ca57477ac031358febcbbf17'
AND origin_function_signature = '0x413aaa60'
),
OptOrder AS (
SELECT
block_timestamp,
tx_hash,
origin_from_address,
origin_function_signature,
amount,
amount_usd,
Last run: 5 days ago
1
79B
11s