@tribecahq/tribeca-sdk
Version:
The TypeScript SDK for Tribeca, an open standard and toolkit for launching DAOs on Solana.
11 lines • 370 B
TypeScript
import type { ProposalData } from "../../programs/govern";
import { ProposalState } from "./types";
/**
* Gets the state of a proposal.
* @returns
*/
export declare const getProposalState: ({ proposalData, currentTimeSeconds, }: {
proposalData: ProposalData;
currentTimeSeconds?: number | undefined;
}) => ProposalState;
//# sourceMappingURL=proposal.d.ts.map