Coda by Ian Macalinao
    Preparing search index...

    Interface CloseVoterInput<TAccountRegistrar, TAccountVoter, TAccountVoterAuthority, TAccountSolDestination, TAccountTokenProgram>

    interface CloseVoterInput<
        TAccountRegistrar extends string = string,
        TAccountVoter extends string = string,
        TAccountVoterAuthority extends string = string,
        TAccountSolDestination extends string = string,
        TAccountTokenProgram extends string = string,
    > {
        registrar: Address<TAccountRegistrar>;
        solDestination: Address<TAccountSolDestination>;
        tokenProgram?: Address<TAccountTokenProgram>;
        voter: Address<TAccountVoter>;
        voterAuthority: TransactionSigner<TAccountVoterAuthority>;
    }

    Type Parameters

    • TAccountRegistrar extends string = string
    • TAccountVoter extends string = string
    • TAccountVoterAuthority extends string = string
    • TAccountSolDestination extends string = string
    • TAccountTokenProgram extends string = string
    Index

    Properties

    registrar: Address<TAccountRegistrar>
    solDestination: Address<TAccountSolDestination>
    tokenProgram?: Address<TAccountTokenProgram>
    voter: Address<TAccountVoter>
    voterAuthority: TransactionSigner<TAccountVoterAuthority>