Coda by Ian Macalinao
    Preparing search index...

    Type Alias OwnerInvokeInstructionV2Input<TAccountSmartWallet, TAccountOwner>

    type OwnerInvokeInstructionV2Input<
        TAccountSmartWallet extends string = string,
        TAccountOwner extends string = string,
    > = {
        bump: OwnerInvokeInstructionV2InstructionDataArgs["bump"];
        data: OwnerInvokeInstructionV2InstructionDataArgs["data"];
        index: OwnerInvokeInstructionV2InstructionDataArgs["index"];
        invoker: OwnerInvokeInstructionV2InstructionDataArgs["invoker"];
        owner: TransactionSigner<TAccountOwner>;
        smartWallet: Address<TAccountSmartWallet>;
    }

    Type Parameters

    • TAccountSmartWallet extends string = string
    • TAccountOwner extends string = string
    Index
    owner: TransactionSigner<TAccountOwner>
    smartWallet: Address<TAccountSmartWallet>