Coda by Ian Macalinao
    Preparing search index...

    Type Alias GovernPluginInstructions

    type GovernPluginInstructions = {
        activateProposal: (
            input: ActivateProposalInput,
        ) => ReturnType<typeof getActivateProposalInstruction> & SelfPlanAndSendFunctions;
        cancelProposal: (
            input: CancelProposalInput,
        ) => ReturnType<typeof getCancelProposalInstruction> & SelfPlanAndSendFunctions;
        createGovernor: (
            input: MakeOptional<CreateGovernorInput, "payer">,
        ) => ReturnType<typeof getCreateGovernorInstruction> & SelfPlanAndSendFunctions;
        createProposal: (
            input: MakeOptional<CreateProposalInput, "payer">,
        ) => ReturnType<typeof getCreateProposalInstruction> & SelfPlanAndSendFunctions;
        createProposalMeta: (
            input: MakeOptional<CreateProposalMetaInput, "payer">,
        ) => ReturnType<typeof getCreateProposalMetaInstruction> & SelfPlanAndSendFunctions;
        newVote: (
            input: MakeOptional<NewVoteInput, "payer">,
        ) => ReturnType<typeof getNewVoteInstruction> & SelfPlanAndSendFunctions;
        queueProposal: (
            input: MakeOptional<QueueProposalInput, "payer">,
        ) => ReturnType<typeof getQueueProposalInstruction> & SelfPlanAndSendFunctions;
        setElectorate: (
            input: SetElectorateInput,
        ) => ReturnType<typeof getSetElectorateInstruction> & SelfPlanAndSendFunctions;
        setGovernanceParams: (
            input: SetGovernanceParamsInput,
        ) => ReturnType<typeof getSetGovernanceParamsInstruction> & SelfPlanAndSendFunctions;
        setVote: (
            input: SetVoteInput,
        ) => ReturnType<typeof getSetVoteInstruction> & SelfPlanAndSendFunctions;
    }
    Index
    activateProposal: (
        input: ActivateProposalInput,
    ) => ReturnType<typeof getActivateProposalInstruction> & SelfPlanAndSendFunctions
    cancelProposal: (
        input: CancelProposalInput,
    ) => ReturnType<typeof getCancelProposalInstruction> & SelfPlanAndSendFunctions
    createGovernor: (
        input: MakeOptional<CreateGovernorInput, "payer">,
    ) => ReturnType<typeof getCreateGovernorInstruction> & SelfPlanAndSendFunctions
    createProposal: (
        input: MakeOptional<CreateProposalInput, "payer">,
    ) => ReturnType<typeof getCreateProposalInstruction> & SelfPlanAndSendFunctions
    createProposalMeta: (
        input: MakeOptional<CreateProposalMetaInput, "payer">,
    ) => ReturnType<typeof getCreateProposalMetaInstruction> & SelfPlanAndSendFunctions
    newVote: (
        input: MakeOptional<NewVoteInput, "payer">,
    ) => ReturnType<typeof getNewVoteInstruction> & SelfPlanAndSendFunctions
    queueProposal: (
        input: MakeOptional<QueueProposalInput, "payer">,
    ) => ReturnType<typeof getQueueProposalInstruction> & SelfPlanAndSendFunctions
    setElectorate: (
        input: SetElectorateInput,
    ) => ReturnType<typeof getSetElectorateInstruction> & SelfPlanAndSendFunctions
    setGovernanceParams: (
        input: SetGovernanceParamsInput,
    ) => ReturnType<typeof getSetGovernanceParamsInstruction> & SelfPlanAndSendFunctions
    setVote: (
        input: SetVoteInput,
    ) => ReturnType<typeof getSetVoteInstruction> & SelfPlanAndSendFunctions