use abstract_cw3::Vote;
use cosmwasm_schema::{cw_serde, QueryResponses};
use cosmwasm_std::{CosmosMsg, Empty};
use cw_utils::{Duration, Expiration, Threshold};
#[cw_serde]
pub struct InstantiateMsg {
pub voters: Vec<Voter>,
pub threshold: Threshold,
pub max_voting_period: Duration,
}
#[cw_serde]
pub struct Voter {
pub addr: String,
pub weight: u64,
}
#[cw_serde]
#[derive(cw_orch::ExecuteFns)]
pub enum ExecuteMsg {
Propose {
title: String,
description: String,
msgs: Vec<CosmosMsg<Empty>>,
latest: Option<Expiration>,
},
Vote {
proposal_id: u64,
vote: Vote,
},
Execute {
proposal_id: u64,
},
Close {
proposal_id: u64,
},
}
#[cw_serde]
#[derive(QueryResponses, cw_orch::QueryFns)]
pub enum QueryMsg {
#[returns(cw_utils::ThresholdResponse)]
Threshold {},
#[returns(abstract_cw3::ProposalResponse)]
Proposal { proposal_id: u64 },
#[returns(abstract_cw3::ProposalListResponse)]
ListProposals {
start_after: Option<u64>,
limit: Option<u32>,
},
#[returns(abstract_cw3::ProposalListResponse)]
ReverseProposals {
start_before: Option<u64>,
limit: Option<u32>,
},
#[returns(abstract_cw3::VoteResponse)]
Vote { proposal_id: u64, voter: String },
#[returns(abstract_cw3::VoteListResponse)]
ListVotes {
proposal_id: u64,
start_after: Option<String>,
limit: Option<u32>,
},
#[returns(abstract_cw3::VoterResponse)]
Voter { address: String },
#[returns(abstract_cw3::VoterListResponse)]
ListVoters {
start_after: Option<String>,
limit: Option<u32>,
},
}