Coda by Ian Macalinao
    Preparing search index...

    Type Alias CreateSmartWalletInput<TAccountBase, TAccountSmartWallet, TAccountPayer, TAccountSystemProgram>

    type CreateSmartWalletInput<
        TAccountBase extends string = string,
        TAccountSmartWallet extends string = string,
        TAccountPayer extends string = string,
        TAccountSystemProgram extends string = string,
    > = {
        base: TransactionSigner<TAccountBase>;
        bump: CreateSmartWalletInstructionDataArgs["bump"];
        maxOwners: CreateSmartWalletInstructionDataArgs["maxOwners"];
        minimumDelay: CreateSmartWalletInstructionDataArgs["minimumDelay"];
        owners: CreateSmartWalletInstructionDataArgs["owners"];
        payer: TransactionSigner<TAccountPayer>;
        smartWallet: Address<TAccountSmartWallet>;
        systemProgram?: Address<TAccountSystemProgram>;
        threshold: CreateSmartWalletInstructionDataArgs["threshold"];
    }

    Type Parameters

    • TAccountBase extends string = string
    • TAccountSmartWallet extends string = string
    • TAccountPayer extends string = string
    • TAccountSystemProgram extends string = string
    Index
    base: TransactionSigner<TAccountBase>
    payer: TransactionSigner<TAccountPayer>
    smartWallet: Address<TAccountSmartWallet>
    systemProgram?: Address<TAccountSystemProgram>