import { Action } from "../../types/action"; import { SolanaAgentKit } from "../../agent"; import { z } from "zod"; import { multisig_reject_proposal } from "../../tools"; const rejectMultisigProposalAction: Action = { name: "REJECT_MULTISIG_PROPOSAL_ACTION", similes: [ "reject proposal", "reject proposal to transfer funds", "reject proposal to transfer funds from 2-of-2 multisig", "reject proposal to transfer funds from 2-of-2 multisig account", "reject proposal to transfer funds from 2-of-2 multisig account on Solana", ], description: `Reject a proposal to transfer funds from a 2-of-2 multisig account on Solana with the user and the agent, where both approvals will be required to run the transactions.`, examples: [ [ { input: { proposalIndex: 0, }, output: { status: "success", message: "Proposal rejected successfully", transaction: "4xKpN2...", proposalIndex: "0", }, explanation: "Reject a proposal to transfer 1 SOL from 2-of-2 multisig account on Solana", }, ], ], schema: z.object({ proposalIndex: z.number().optional(), }), handler: async (agent: SolanaAgentKit, input: Record) => { const proposalIndex = input.proposalIndex !== undefined ? Number(input.proposalIndex) : undefined; const tx = await multisig_reject_proposal(agent, proposalIndex); return { status: "success", message: "Proposal rejected successfully", transaction: tx, proposalIndex, }; }, }; export default rejectMultisigProposalAction;