Coda by Ian Macalinao
    Preparing search index...

    Interface CreateVoterAsyncInput<TAccountRegistrar, TAccountVoter, TAccountVoterAuthority, TAccountVoterWeightRecord, TAccountPayer, TAccountSystemProgram, TAccountRent, TAccountInstructions>

    interface CreateVoterAsyncInput<
        TAccountRegistrar extends string = string,
        TAccountVoter extends string = string,
        TAccountVoterAuthority extends string = string,
        TAccountVoterWeightRecord extends string = string,
        TAccountPayer extends string = string,
        TAccountSystemProgram extends string = string,
        TAccountRent extends string = string,
        TAccountInstructions extends string = string,
    > {
        instructions: Address<TAccountInstructions>;
        payer: TransactionSigner<TAccountPayer>;
        registrar: Address<TAccountRegistrar>;
        rent?: Address<TAccountRent>;
        systemProgram?: Address<TAccountSystemProgram>;
        voter?: Address<TAccountVoter>;
        voterAuthority: TransactionSigner<TAccountVoterAuthority>;
        voterBump: number;
        voterWeightRecord?: Address<TAccountVoterWeightRecord>;
        voterWeightRecordBump: number;
    }

    Type Parameters

    • TAccountRegistrar extends string = string
    • TAccountVoter extends string = string
    • TAccountVoterAuthority extends string = string
    • TAccountVoterWeightRecord extends string = string
    • TAccountPayer extends string = string
    • TAccountSystemProgram extends string = string
    • TAccountRent extends string = string
    • TAccountInstructions extends string = string
    Index

    Properties

    instructions: Address<TAccountInstructions>
    payer: TransactionSigner<TAccountPayer>
    registrar: Address<TAccountRegistrar>
    rent?: Address<TAccountRent>
    systemProgram?: Address<TAccountSystemProgram>
    voter?: Address<TAccountVoter>
    voterAuthority: TransactionSigner<TAccountVoterAuthority>
    voterBump: number
    voterWeightRecord?: Address<TAccountVoterWeightRecord>
    voterWeightRecordBump: number