fbonds-core
Version:
Banx protocol sdk
8 lines (7 loc) • 318 B
TypeScript
import { Proposal, ProposalVariant, ProposalVote } from '../../types';
import { web3 } from '@coral-xyz/anchor';
export declare const getGovernanceAccounts: (programId: web3.PublicKey, connection: web3.Connection) => Promise<{
proposals: Proposal[];
votes: ProposalVote[];
variants: ProposalVariant[];
}>;