N_SWAPS | N_ACCOUNT | SWAP_VOLUME | 24H Volume | 7D Volume | 30D Volume | AVG_VOLUME_PER_SWAPS | |
---|---|---|---|---|---|---|---|
1 | 22531 | 5068 | 52870336.856345 | 1993.88098722 | 16047.661656562 | 333538.370234774 | 326.775633561 |
BlockTrackertotal (Thor and Maya)
Updated 8 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 eldorito_data as (
select
'THORChain' as protocol,
block_timestamp,
tx_id,
BLOCKCHAIN,
pool_name,
from_address,
NATIVE_TO_ADDRESS,
TO_POOL_ADDRESS,
AFFILIATE_ADDRESS,
AFFILIATE_FEE_BASIS_POINTS,
FROM_ASSET,
to_asset,
from_amount,
to_amount,
from_amount_usd,
to_amount_usd,
SWAP_SLIP_BP,
LIQ_FEE_ASSET_USD,
STREAMING_COUNT,
STREAMING_QUANTITY
from thorchain.defi.fact_swaps
where affiliate_address IN ('eld','ELD')
and tx_id not in (select tx_id from thorchain.defi.fact_refund_events)
union all
select
'Maya' as protocol,
block_timestamp,
tx_id,
BLOCKCHAIN,
pool_name,
from_address,
NATIVE_TO_ADDRESS,
TO_POOL_ADDRESS,
AFFILIATE_ADDRESS,
Last run: 8 days ago
1
91B
24s