Documentation
    Preparing search index...

    Type Alias InitializeFeeTierInput<TAccountConfig, TAccountFeeTier, TAccountFunder, TAccountFeeAuthority, TAccountSystemProgram>

    type InitializeFeeTierInput<
        TAccountConfig extends string = string,
        TAccountFeeTier extends string = string,
        TAccountFunder extends string = string,
        TAccountFeeAuthority extends string = string,
        TAccountSystemProgram extends string = string,
    > = {
        config: Address<TAccountConfig>;
        defaultFeeRate: InitializeFeeTierInstructionDataArgs["defaultFeeRate"];
        feeAuthority: TransactionSigner<TAccountFeeAuthority>;
        feeTier: Address<TAccountFeeTier>;
        funder: TransactionSigner<TAccountFunder>;
        systemProgram?: Address<TAccountSystemProgram>;
        tickSpacing: InitializeFeeTierInstructionDataArgs["tickSpacing"];
    }

    Type Parameters

    • TAccountConfig extends string = string
    • TAccountFeeTier extends string = string
    • TAccountFunder extends string = string
    • TAccountFeeAuthority extends string = string
    • TAccountSystemProgram extends string = string
    Index

    Properties

    config: Address<TAccountConfig>
    feeAuthority: TransactionSigner<TAccountFeeAuthority>
    feeTier: Address<TAccountFeeTier>
    funder: TransactionSigner<TAccountFunder>
    systemProgram?: Address<TAccountSystemProgram>