Coda by Ian Macalinao
    Preparing search index...

    Type Alias VoterStakeRegistryPluginAccounts

    type VoterStakeRegistryPluginAccounts = {
        registrar: ReturnType<typeof getRegistrarCodec> & SelfFetchFunctions<
            RegistrarArgs,
            Registrar,
        >;
        voter: ReturnType<typeof getVoterCodec> & SelfFetchFunctions<
            VoterArgs,
            Voter,
        >;
        voterWeightRecord: ReturnType<typeof getVoterWeightRecordCodec> & SelfFetchFunctions<
            VoterWeightRecordArgs,
            VoterWeightRecord,
        >;
    }
    Index
    registrar: ReturnType<typeof getRegistrarCodec> & SelfFetchFunctions<
        RegistrarArgs,
        Registrar,
    >
    voter: ReturnType<typeof getVoterCodec> & SelfFetchFunctions<VoterArgs, Voter>
    voterWeightRecord: ReturnType<typeof getVoterWeightRecordCodec> & SelfFetchFunctions<
        VoterWeightRecordArgs,
        VoterWeightRecord,
    >