Coda by Ian Macalinao
    Preparing search index...

    Type Alias ParsedSmartWalletInstruction<TProgram>

    ParsedSmartWalletInstruction:
        | { instructionType: typeof SmartWalletInstruction.CreateSmartWallet } & ParsedCreateSmartWalletInstruction<
            TProgram,
        >
        | { instructionType: typeof SmartWalletInstruction.SetOwners } & ParsedSetOwnersInstruction<
            TProgram,
        >
        | { instructionType: typeof SmartWalletInstruction.ChangeThreshold } & ParsedChangeThresholdInstruction<
            TProgram,
        >
        | { instructionType: typeof SmartWalletInstruction.CreateTransaction } & ParsedCreateTransactionInstruction<
            TProgram,
        >
        | {
            instructionType: typeof SmartWalletInstruction.CreateTransactionWithTimelock;
        } & ParsedCreateTransactionWithTimelockInstruction<TProgram>
        | { instructionType: typeof SmartWalletInstruction.Approve } & ParsedApproveInstruction<
            TProgram,
        >
        | { instructionType: typeof SmartWalletInstruction.Unapprove } & ParsedUnapproveInstruction<
            TProgram,
        >
        | { instructionType: typeof SmartWalletInstruction.ExecuteTransaction } & ParsedExecuteTransactionInstruction<
            TProgram,
        >
        | {
            instructionType: typeof SmartWalletInstruction.ExecuteTransactionDerived;
        } & ParsedExecuteTransactionDerivedInstruction<TProgram>
        | { instructionType: typeof SmartWalletInstruction.OwnerInvokeInstruction } & ParsedOwnerInvokeInstructionInstruction<
            TProgram,
        >
        | {
            instructionType: typeof SmartWalletInstruction.OwnerInvokeInstructionV2;
        } & ParsedOwnerInvokeInstructionV2Instruction<TProgram>
        | { instructionType: typeof SmartWalletInstruction.CreateSubaccountInfo } & ParsedCreateSubaccountInfoInstruction<
            TProgram,
        >

    Type Parameters

    • TProgram extends string = "GokivDYuQXPZCWRkwMhdH2h91KpDQXBEmpgBgs55bnpH"