CallConfig<T>: {
    args: T;
    callParameters?: CallParams;
    externalAbis: Record<string, JsonAbi>;
    forward?: CoinQuantity;
    func: FunctionFragment;
    program: AbstractProgram;
    txParameters?: TxParams;
}

Represents configuration for calling a contract function.

Type Parameters

  • T = unknown

    Type of the function's arguments.