alexmcculloughArbitrum Tokens
    Updated 2024-10-13
    -- Query to track weekly flows of ETH and ERC-20 tokens involving Coinbase on Arbitrum
    -- Aggregates total USD value per token per week over the past 21 months
    -- Only tracks the top 8 tokens, grouping the rest into 'other'

    WITH all_labels AS (
    -- Combine labels from multiple chains and assign a priority to each blockchain
    SELECT address, project_name, label_subtype
    FROM (
    SELECT
    address,
    label AS project_name,
    label_subtype,
    1 AS blockchain_priority -- Ethereum has the highest priority
    FROM ethereum.core.dim_labels

    UNION ALL

    SELECT
    address,
    project_name,
    label_subtype,
    2 AS blockchain_priority
    FROM base.core.dim_labels

    UNION ALL

    SELECT
    address,
    project_name,
    label_subtype,
    3 AS blockchain_priority
    FROM optimism.core.dim_labels

    UNION ALL

    SELECT
    QueryRunArchived: QueryRun has been archived