Coda by Ian Macalinao
    Preparing search index...

    Type Alias CreateGroupV1Input<TAccountGroup, TAccountUpdateAuthority, TAccountPayer, TAccountSystemProgram>

    type CreateGroupV1Input<
        TAccountGroup extends string = string,
        TAccountUpdateAuthority extends string = string,
        TAccountPayer extends string = string,
        TAccountSystemProgram extends string = string,
    > = {
        createGroupV1Args: CreateGroupV1InstructionDataArgs["createGroupV1Args"];
        group: TransactionSigner<TAccountGroup>;
        payer: TransactionSigner<TAccountPayer>;
        systemProgram?: Address<TAccountSystemProgram>;
        updateAuthority?: TransactionSigner<TAccountUpdateAuthority>;
    }

    Type Parameters

    • TAccountGroup extends string = string
    • TAccountUpdateAuthority extends string = string
    • TAccountPayer extends string = string
    • TAccountSystemProgram extends string = string
    Index

    Properties

    group: TransactionSigner<TAccountGroup>

    The address of the new group

    payer: TransactionSigner<TAccountPayer>

    The account paying for the storage fees

    systemProgram?: Address<TAccountSystemProgram>

    The system program

    updateAuthority?: TransactionSigner<TAccountUpdateAuthority>

    The authority of the new group