-- forked from 2cb2bc9e-1eab-480c-ac96-816c7addee0a
with avp as (
select proposal_id,
sum(voting_power)/pow(10,18) as "Voting Power (AAVE)"
from ethereum.aave.ez_votes
where voter='0x25f2226b597e8f9514b3f68f00f494cf4f286491'
group by 1
),
stkvp as (
select proposal_id,
sum(voting_power)/pow(10,18) as "Voting Power (AAVE)"
from ethereum.aave.ez_votes
where voter='0x25f2226b597e8f9514b3f68f00f494cf4f286491'
group by 1
)