hessTop Blockchains
    Updated 2024-10-13
    with swap as ( select block_timestamp,
    tx_id,
    from_address,
    blockchain,
    pool_name,
    from_asset,
    to_asset,
    from_amount,
    to_amount,
    FROM_AMOUNT_USD,
    TO_AMOUNT_USD
    from thorchain.defi.fact_swaps)
    ,
    price as (select hour::date as day,
    'THOR.RUNE' as symbol,
    avg(price) as avg_price
    from thorchain.price.ez_prices_hourly
    where symbol = 'RUNE'
    group by 1,2
    )
    ,
    final as ( select block_timestamp,
    tx_id,
    from_address,
    blockchain,
    pool_name,
    from_asset,
    to_asset,
    from_amount,
    to_amount,
    case when from_asset = 'THOR.RUNE' then from_amount*b.avg_price else FROM_AMOUNT_USD end as from_amt,
    case when to_asset = 'THOR.RUNE' then to_amount*c.avg_price else to_AMOUNT_USD end as to_amt,
    case when from_asset = 'THOR.RUNE' then from_amt else to_amt end as amt_1,
    case when to_asset = 'THOR.RUNE' then to_amt else from_amt end as amt_2,
    case when amt_1 is null then amt_2 else amt_1 end as amount_usd
    from swap a left outer join price b on date_trunc('day',block_timestamp) = b.day::date and a.from_asset = b.symbol
    Last run: 3 months ago
    BLOCKCHAIN
    USERS
    Active Days
    Swaps
    Volume (USD)
    Avg Volume (USD)
    Max Volume (USD)
    Median Volume (USD)
    From Tokens
    To Tokens
    Blockchains
    1
    THOR3721413031945992163441134302.27772141.0896960242316865.57890247876.688758989821511
    2
    BTC16869912813824359755491496.632813757.576497451309864.013834411320.4879107573801
    3
    ETH18506112654706219010114931.622842657.7451728691360062.612952221148.489111558381011
    4
    BNB83239100618286095349342884.582491609.835856196349267.675441228891.22761830810911
    5
    BSC135853485228720573986621.653142448.680131803278460.548836598208.5873556867761
    6
    AVAX1672881279398467377203.071031867.515049672201835.404745802428.1510831557781
    7
    TERRA74264755817426498273.3054694226.018839356496132.7359266343293.7379903893501
    8
    LTC414941269125054329881681.925459835.28940986290814.149475611616.2782960423781
    9
    DOGE39404106988866285917119.047285968.685184467102392.54976571566.5311532043671
    10
    BCH9611125152156249687358.5202731327.298216112124125.101071213802.2958157913661
    11
    GAIA1342991179675120113742.064116510.91141981450847.777102101407.2926646483731
    12
    BASE11413425.77428017519.35337637275.15315782110.086862364351
    12
    1KB
    33s