#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenesisState {
#[prost(message, optional, tag = "1")]
pub gov_genesis_state:
::core::option::Option<super::super::super::cosmos::gov::v1::GenesisState>,
#[prost(message, optional, tag = "2")]
pub oversight_committee_params: ::core::option::Option<OversightCommitteeParams>,
#[prost(string, tag = "3")]
pub oversight_committee_addr: ::prost::alloc::string::String,
#[prost(string, repeated, tag = "4")]
pub oversight_committee_disallowed_list:
::prost::alloc::vec::Vec<::prost::alloc::string::String>,
#[prost(bool, tag = "5")]
pub exported: bool,
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct OversightCommitteeParams {
#[prost(uint64, tag = "1")]
pub grace_period: u64,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventOversightCommitteeAddressSet {
#[prost(string, tag = "1")]
pub address: ::prost::alloc::string::String,
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct EventOversightCommitteeParamsUpdated {
#[prost(message, optional, tag = "1")]
pub committee_params: ::core::option::Option<OversightCommitteeParams>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventOversightCommitteeVetoed {
#[prost(uint64, tag = "1")]
pub proposal_id: u64,
#[prost(string, tag = "2")]
pub reason: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventOversightCommitteeExecuted {
#[prost(string, tag = "1")]
pub message: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventOversightCommitteeDisallowedListSet {
#[prost(string, repeated, tag = "1")]
pub disallowed_list: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct GetOversightCommitteeParamsRequest {}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct GetOversightCommitteeAddrRequest {}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct GetOversightCommitteeParamsResponse {
#[prost(message, optional, tag = "1")]
pub params: ::core::option::Option<OversightCommitteeParams>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetOversightCommitteeAddrResponse {
#[prost(string, tag = "3")]
pub oversight_committee_addr: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgOversightCommitteeAddr {
#[prost(string, tag = "1")]
pub sender: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub addr: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgServiceOversightCommitteeAddrResponse {
#[prost(string, tag = "2")]
pub addr: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgOversightCommitteeParams {
#[prost(string, tag = "1")]
pub sender: ::prost::alloc::string::String,
#[prost(message, optional, tag = "2")]
pub params: ::core::option::Option<OversightCommitteeParams>,
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct MsgServiceOversightCommitteeParamsResponse {
#[prost(message, optional, tag = "1")]
pub params: ::core::option::Option<OversightCommitteeParams>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgOversightCommitteeVeto {
#[prost(string, tag = "1")]
pub sender: ::prost::alloc::string::String,
#[prost(uint64, tag = "2")]
pub proposal_id: u64,
#[prost(string, tag = "3")]
pub reason: ::prost::alloc::string::String,
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct MsgServiceOversightCommitteeVetoResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgOversightCommitteeExec {
#[prost(string, tag = "1")]
pub sender: ::prost::alloc::string::String,
#[prost(message, optional, tag = "2")]
pub msg: ::core::option::Option<::prost_types::Any>,
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct MsgServiceOversightCommitteeExecResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgSetOversightCommitteeDisallowedList {
#[prost(string, tag = "1")]
pub sender: ::prost::alloc::string::String,
#[prost(string, repeated, tag = "2")]
pub disallowed_list: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct MsgServiceSetOversightCommitteeDisallowListResponse {}
include!("d.dgov.v1.tonic.rs");