dannyamahVoters Profiles : Update Jupiter Logo
    Updated 2025-03-07
    WITH vote AS (
    SELECT
    date_trunc('day', block_timestamp) AS date,
    signers[0] AS voter,
    decoded_instruction:accounts[1]:pubkey AS proposal,
    decoded_instruction:args:side AS vote_choice,
    decoded_instruction:args:weight / pow(10, 6) AS vote_weight,
    block_timestamp
    FROM
    solana.core.ez_events_decoded
    WHERE 1 = 1
    AND block_timestamp :: date >= '2025-02-25'
    AND program_id = 'GovaE4iu227srtG2s3tZzB4RmWBzw8sTwrCLZz7kN7rY'
    AND event_type = 'setVote'
    AND proposal = '8DA1TFPjbyfJXmQMrqRcQCGheoordFZ2fWNd3zpEhj2k'
    AND succeeded
    ),

    latest_vote AS (
    SELECT
    voter,
    MAX(block_timestamp) AS latest
    FROM
    vote
    GROUP BY voter
    )

    SELECT
    v.date,
    CASE
    WHEN v.vote_choice = '1' THEN 'Yes - Change Logo'
    WHEN v.vote_choice = '2' THEN 'No - Retain Old Logo'
    END AS "Vote Choice",
    CASE
    WHEN v.vote_weight < 100 THEN 'plankton : <100'
    WHEN v.vote_weight < 1000 THEN 'fish : <1000'
    Last run: 3 months ago
    DATE
    Vote Choice
    CATEGORY
    Category Range
    Vote Received
    Voters
    1
    2025-03-02 00:00:00.000No - Retain Old Logodolphin : <100,000<100k5994581.99902200
    2
    2025-03-02 00:00:00.000Yes - Change Logowhale : >100,000>=100k15053920.07951432
    3
    2025-03-02 00:00:00.000Yes - Change Logofish : <1000<1000721152.3834432057
    4
    2025-03-02 00:00:00.000Yes - Change Logodolphin : <100,000<100k3571920.911908135
    5
    2025-03-02 00:00:00.000No - Retain Old Logoplankton : <100<10037272.6260561137
    6
    2025-03-02 00:00:00.000Yes - Change Logoshrimp : <10,000<10k2606615.014931889
    7
    2025-03-02 00:00:00.000Yes - Change Logoplankton : <100<10080955.4671042637
    8
    2025-03-02 00:00:00.000No - Retain Old Logowhale : >100,000>=100k11672064.76365332
    9
    2025-03-02 00:00:00.000No - Retain Old Logoshrimp : <10,000<10k2538143.848544891
    10
    2025-03-02 00:00:00.000No - Retain Old Logofish : <1000<1000412022.5291471446
    11
    2025-03-01 00:00:00.000Yes - Change Logoplankton : <100<100165633.2681685469
    12
    2025-03-01 00:00:00.000No - Retain Old Logoplankton : <100<10055362.290431999
    13
    2025-03-01 00:00:00.000No - Retain Old Logoshrimp : <10,000<10k2908985.982992976
    14
    2025-03-01 00:00:00.000Yes - Change Logofish : <1000<1000953777.5497243093
    15
    2025-03-01 00:00:00.000No - Retain Old Logodolphin : <100,000<100k4448615.849269166
    16
    2025-03-01 00:00:00.000Yes - Change Logoshrimp : <10,000<10k3200119.0546691131
    17
    2025-03-01 00:00:00.000Yes - Change Logowhale : >100,000>=100k14254910.21338347
    18
    2025-03-01 00:00:00.000No - Retain Old Logowhale : >100,000>=100k9422474.89018630
    19
    2025-03-01 00:00:00.000No - Retain Old Logofish : <1000<1000563148.4832561738
    20
    2025-03-01 00:00:00.000Yes - Change Logodolphin : <100,000<100k4280727.71866188
    50
    5KB
    4s