Coda by Ian Macalinao
    Preparing search index...

    Interface UpdateVoterWeightRecordInput<TAccountRegistrar, TAccountVoter, TAccountVoterWeightRecord, TAccountSystemProgram>

    interface UpdateVoterWeightRecordInput<
        TAccountRegistrar extends string = string,
        TAccountVoter extends string = string,
        TAccountVoterWeightRecord extends string = string,
        TAccountSystemProgram extends string = string,
    > {
        registrar: Address<TAccountRegistrar>;
        systemProgram?: Address<TAccountSystemProgram>;
        voter: Address<TAccountVoter>;
        voterWeightRecord: Address<TAccountVoterWeightRecord>;
    }

    Type Parameters

    • TAccountRegistrar extends string = string
    • TAccountVoter extends string = string
    • TAccountVoterWeightRecord extends string = string
    • TAccountSystemProgram extends string = string
    Index

    Properties

    registrar: Address<TAccountRegistrar>
    systemProgram?: Address<TAccountSystemProgram>
    voter: Address<TAccountVoter>
    voterWeightRecord: Address<TAccountVoterWeightRecord>