Coda by Ian Macalinao
    Preparing search index...

    Type Alias SetOwnersInstruction<TProgram, TAccountSmartWallet, TRemainingAccounts>

    SetOwnersInstruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountSmartWallet extends string
                ? WritableSignerAccount<TAccountSmartWallet> & AccountSignerMeta<
                    TAccountSmartWallet,
                >
                : TAccountSmartWallet,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof SMART_WALLET_PROGRAM_ADDRESS
    • TAccountSmartWallet extends string | AccountMeta<string> = string
    • TRemainingAccounts extends readonly AccountMeta<string>[] = []