Vote Program IDL
Vote111111111111111111111111111111111111111Solana Vote program manages validator voting for consensus. Handles vote account creation, vote submission, commission rates, and authorized voter/withdrawer management.
Instructions
Account Types
Integration Examples
Use the Vote Program IDL in your application with these code examples for TypeScript, Rust, and Python.
import { Connection, PublicKey } from "@solana/web3.js";
import { Program, AnchorProvider, Idl } from "@coral-xyz/anchor";
// Load the Vote Program IDL
import idl from "./vote program.json";
const PROGRAM_ID = new PublicKey("Vote111111111111111111111111111111111111111");
// Set up the provider and program
const connection = new Connection("https://api.mainnet-beta.solana.com");
const provider = new AnchorProvider(connection, wallet, {
commitment: "confirmed",
});
const program = new Program(idl as Idl, provider);
// Fetch and decode an account
const accountData = await program.account.vote_Program
.fetch(accountPublicKey);
console.log("Account data:", accountData);
// Build and send an instruction
const tx = await program.methods
.initialize(/* ...args */)
.accounts({
/* ...required accounts */
})
.rpc();
console.log("Transaction signature:", tx);IDL JSON Preview
{
"version": "0.0.1",
"name": "vote",
"accounts": [
{
"name": "Uninitialized",
"type": {
"kind": "struct",
"fields": []
}
},
{
"name": "VoteState",
"type": {
"kind": "struct",
"fields": [
{
"name": "node_pubkey",
"type": "publicKey"
},
{
"name": "authorized_withdrawer",
"type": "publicKey"
},
{
"name": "commission",
"type": "u8"
},
{
"name": "votes",
...Frequently Asked Questions
What is the Vote Program IDL?
The Vote Program IDL (Interface Definition Language) is a JSON schema that defines the on-chain program interface for the Vote Program smart contract on Solana. It describes all available instructions, account structures, events, and custom types that developers need to interact with the Vote Program program. This IDL contains 16 instructions, 3 account types, 0 events, and 16 type definitions.
How do I use the Vote Program IDL in my project?
Download the JSON file and import it in your project. With TypeScript, use the @coral-xyz/anchor package to create a Program instance. In Rust, use anchor-client. For Python, use anchorpy. See the integration examples above for complete code snippets in all three languages.
What is the Vote Program program address on Solana?
The Vote Program program is deployed at address Vote111111111111111111111111111111111111111 on Solana mainnet. You can verify this on any Solana block explorer.
What version of the Vote Program IDL is this?
This is version 0.0.1 of the Vote Program IDL. IDL versions correspond to specific program deployments and may be updated as the protocol evolves. Always verify compatibility with the on-chain program version before integrating.