Coda by Ian Macalinao
    Preparing search index...

    Type Alias ParsedVoterStakeRegistryInstruction<TProgram>

    ParsedVoterStakeRegistryInstruction:
        | {
            instructionType: typeof VoterStakeRegistryInstruction.CreateRegistrar;
        } & ParsedCreateRegistrarInstruction<TProgram>
        | {
            instructionType: typeof VoterStakeRegistryInstruction.ConfigureVotingMint;
        } & ParsedConfigureVotingMintInstruction<TProgram>
        | { instructionType: typeof VoterStakeRegistryInstruction.CreateVoter } & ParsedCreateVoterInstruction<
            TProgram,
        >
        | {
            instructionType: typeof VoterStakeRegistryInstruction.CreateDepositEntry;
        } & ParsedCreateDepositEntryInstruction<TProgram>
        | { instructionType: typeof VoterStakeRegistryInstruction.Deposit } & ParsedDepositInstruction<
            TProgram,
        >
        | { instructionType: typeof VoterStakeRegistryInstruction.Withdraw } & ParsedWithdrawInstruction<
            TProgram,
        >
        | { instructionType: typeof VoterStakeRegistryInstruction.Grant } & ParsedGrantInstruction<
            TProgram,
        >
        | { instructionType: typeof VoterStakeRegistryInstruction.Clawback } & ParsedClawbackInstruction<
            TProgram,
        >
        | {
            instructionType: typeof VoterStakeRegistryInstruction.CloseDepositEntry;
        } & ParsedCloseDepositEntryInstruction<TProgram>
        | { instructionType: typeof VoterStakeRegistryInstruction.ResetLockup } & ParsedResetLockupInstruction<
            TProgram,
        >
        | {
            instructionType: typeof VoterStakeRegistryInstruction.InternalTransferLocked;
        } & ParsedInternalTransferLockedInstruction<TProgram>
        | {
            instructionType: typeof VoterStakeRegistryInstruction.InternalTransferUnlocked;
        } & ParsedInternalTransferUnlockedInstruction<TProgram>
        | {
            instructionType: typeof VoterStakeRegistryInstruction.UpdateVoterWeightRecord;
        } & ParsedUpdateVoterWeightRecordInstruction<TProgram>
        | {
            instructionType: typeof VoterStakeRegistryInstruction.UpdateMaxVoteWeight;
        } & ParsedUpdateMaxVoteWeightInstruction<TProgram>
        | { instructionType: typeof VoterStakeRegistryInstruction.CloseVoter } & ParsedCloseVoterInstruction<
            TProgram,
        >
        | { instructionType: typeof VoterStakeRegistryInstruction.LogVoterInfo } & ParsedLogVoterInfoInstruction<
            TProgram,
        >
        | { instructionType: typeof VoterStakeRegistryInstruction.SetTimeOffset } & ParsedSetTimeOffsetInstruction<
            TProgram,
        >

    Type Parameters

    • TProgram extends string = "vsr2nfGVNHmSY8uxoBGqq8AQbwz3JwaEaHqGbsTPXqQ"