greattween01Non - High User Score: Overtime By Blockchain
    Updated 2025-05-31
    WITH high_rate_users AS (
    SELECT user_address FROM $query('d3b86c61-75b4-4787-aeae-34c2833467ff')
    ),

    bridge AS (
    SELECT destination_chain_receiver AS bridger,block_timestamp,tx_hash,amount_usd,platform FROM bsc.defi.ez_bridge_activity
    UNION ALL
    SELECT destination_chain_receiver AS bridger,block_timestamp,tx_hash,amount_usd,platform FROM arbitrum.defi.ez_bridge_activity
    UNION ALL
    SELECT destination_chain_receiver AS bridger,block_timestamp,tx_hash,amount_usd,platform FROM avalanche.defi.ez_bridge_activity
    UNION ALL
    SELECT destination_chain_receiver AS bridger,block_timestamp,tx_hash,amount_usd,platform FROM base.defi.ez_bridge_activity
    UNION ALL
    SELECT destination_chain_receiver AS bridger,block_timestamp,tx_hash,amount_usd,platform FROM optimism.defi.ez_bridge_activity
    UNION ALL
    SELECT destination_chain_receiver AS bridger,block_timestamp,tx_hash,amount_usd,platform FROM polygon.defi.ez_bridge_activity
    UNION ALL
    SELECT destination_chain_receiver AS bridger,block_timestamp,tx_hash,amount_usd,platform FROM ethereum.defi.ez_bridge_activity
    )

    SELECT DATE_TRUNC('month', block_timestamp) AS "Date",
    blockchain,
    COUNT(DISTINCT bridger) AS "Swappers",
    COUNT(DISTINCT tx_hash) AS "Txns",
    SUM(amount_usd) AS "Volume ($)",
    AVG(amount_usd) AS "Average Amount ($)"
    FROM bridge
    WHERE bridger NOT IN (SELECT user_address FROM high_rate_users)
    GROUP BY 1, 2
    ORDER BY 1




    Last run: 30 days ago
    Date
    BLOCKCHAIN
    Swappers
    Txns
    Volume ($)
    Average Amount ($)
    1
    2018-10-01 00:00:00.000Ethereum37436968.72162.063255814
    2
    2018-11-01 00:00:00.000Ethereum35396482.25170.585526316
    3
    2018-12-01 00:00:00.000Ethereum3454791.4914.657222222
    4
    2019-01-01 00:00:00.000Ethereum1171711804.7910.554327485
    5
    2019-02-01 00:00:00.000Ethereum20931411327.736.306730769
    6
    2019-03-01 00:00:00.000Ethereum1903015367.4717.832126246
    7
    2019-04-01 00:00:00.000Ethereum1442059988.1648.722731707
    8
    2019-05-01 00:00:00.000Ethereum74962536.4426.699368421
    9
    2019-06-01 00:00:00.000Ethereum68851382.9716.270235294
    10
    2019-07-01 00:00:00.000Ethereum56782355.7330.593896104
    11
    2019-08-01 00:00:00.000Ethereum591323587.3827.384580153
    12
    2019-09-01 00:00:00.000Ethereum31371736.4646.931351351
    13
    2019-10-01 00:00:00.000Ethereum972133488.2516.376760563
    14
    2019-11-01 00:00:00.000Ethereum721202184.9618.208
    15
    2019-12-01 00:00:00.000Ethereum43641439.5222.4925
    16
    2020-01-01 00:00:00.000Ethereum57882371.2426.945909091
    17
    2020-02-01 00:00:00.000Ethereum71972864.629.839583333
    18
    2020-03-01 00:00:00.000Ethereum58852091.7824.609176471
    19
    2020-04-01 00:00:00.000Ethereum619422335.39237.610531915
    20
    2020-05-01 00:00:00.000Ethereum9312430524.12248.163577236
    ...
    332
    25KB
    11s