ExecuteMsg: {
    propose: {
        description: string;
        latest?: Expiration | null;
        msgs: CosmosMsgForEmpty[];
        title: string;
    };
} | {
    vote: {
        proposal_id: number;
        vote: Vote;
    };
} | {
    execute: {
        proposal_id: number;
    };
} | {
    close: {
        proposal_id: number;
    };
} | {
    member_changed_hook: MemberChangedHookMsg;
}

©2020 - 2023 Oraichain Foundation