Coda by Ian Macalinao
    Preparing search index...

    Interface InitializeConfigInput<TAccountConfig, TAccountFunder, TAccountSystemProgram>

    interface InitializeConfigInput<
        TAccountConfig extends string = string,
        TAccountFunder extends string = string,
        TAccountSystemProgram extends string = string,
    > {
        collectProtocolFeesAuthority: Address;
        config: TransactionSigner<TAccountConfig>;
        defaultProtocolFeeRate: number;
        feeAuthority: Address;
        funder: TransactionSigner<TAccountFunder>;
        rewardEmissionsSuperAuthority: Address;
        systemProgram?: Address<TAccountSystemProgram>;
    }

    Type Parameters

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

    Properties

    collectProtocolFeesAuthority: Address
    config: TransactionSigner<TAccountConfig>
    defaultProtocolFeeRate: number
    feeAuthority: Address
    funder: TransactionSigner<TAccountFunder>
    rewardEmissionsSuperAuthority: Address
    systemProgram?: Address<TAccountSystemProgram>