NAME | TICKER | PRICE | MARKETCAP | TOKEN_ADDRESS | POOL_ADDRESS | SUPPLY | |
---|---|---|---|---|---|---|---|
1 | Luna by Virtuals | LUNA | 0.02057048522 | 20570485.2185038 | 0x55cd6469f597452b5a7536e2cd98fde4c1247ee4 | 0x16e0907ed813d6e0287596ce1966ff1ad7b17298 | 1000000000 |
cybergenlabTokenomic Metrics
Updated 2025-02-11
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 token_meta as (
select
value:PLATFORM::string as platform,
value:POOL_ADDRESS::string as pool_address,
value:TOKEN_NAME::string as name,
value:TICKER::string as ticker,
value:TOKEN_ADDRESS::string as token_address,
value:DECIMALS::numeric as decimals,
value:SUPPLY::numeric as supply
from (
select
livequery.live.udf_api('https://flipsidecrypto.xyz/api/v1/queries/7aa557ad-d182-4403-b9ca-8a4b774530a3/data/latest') as response
), lateral FLATTEN (input => response:data)
order by 1 desc
)
, weth_price as (
select
avg(price) as price
from base.price.ez_prices_hourly
where symbol = 'WETH'
and date_trunc('day', hour) = current_date()
)
, token_price_usdc as (
select
symbol_out,
price as eth_price,
avg((amount_out_usd/amount_out)) as price,
from base.defi.ez_dex_swaps, weth_price
where contract_address in (select pool_address from token_meta)
and symbol_out in ('CONVO','LUNA', 'AIXBT')
and symbol_in= 'USDC'
and date_trunc('hour', block_timestamp) >= dateadd(hour, -6 , current_timestamp)
group by 1,2
)
Last run: 2 months ago
1
161B
7s