with initial_deposit as (
select
amount
from osmosis.core.fact_governance_proposal_deposits
where proposal_id = 362
and depositor = 'osmo10kn8nhlchp3qxdvsvte4zepfkpvlfarpay7ykw'
and tx_status = 'SUCCEEDED'
)
select
400 as "Initial Deposit",
sum(amount) as "Total Deposit" from initial_deposit