Flipside TeamBitcoin Wrapped Tokens Overview Legacy
Updated 2024-12-29
999
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
-------------------- Addresses --------------------
addresses as (
select
ft.value:ADDRESS as address,
ft.value:TICKER as ticker,
ft.value:DECIMALS as decimals,
ft.value:TYPE as type
from
(
select
livequery.live.udf_api (
'https://flipsidecrypto.xyz/api/v1/queries/08741011-9bf8-40e2-b441-b6e92e8e224b/data/latest'
):data as data
) lq,
table(flatten(input => lq.data)) ft
where
type = 'Bitcoin Wrapped Token'
),
------------------------------ Prices ------------------------------
prices as (
select
response as price
from
(
select
livequery.live.udf_api(
'https://api.coingecko.com/api/v3/simple/price?ids=bitcoin&vs_currencies=usd'
):data:"bitcoin":usd as response
)
),
------------------------------ Transfers ------------------------------
transfers as (
select
block_timestamp,
tx_hash,
Auto-refreshes every 6 hours
QueryRunArchived: QueryRun has been archived