Variable ExecutionConfig

ExecutionConfig: {
    create(
        base?: {
            ethAbiDecoderConfig?: {
                enabled?: boolean;
                skipWhenDecodeFailed?: boolean;
                workerCount?: number;
            };
            forceExactBlockTime?: boolean;
            processBindingTimeout?: number;
            rpcRetryTimes?: number;
            sequential?: boolean;
            skipStartBlockValidation?: boolean;
        },
    ): ExecutionConfig;
    decode(input: Uint8Array | Reader, length?: number): ExecutionConfig;
    encode(message: ExecutionConfig, writer?: Writer): Writer;
    fromJSON(object: any): ExecutionConfig;
    fromPartial(
        object: {
            ethAbiDecoderConfig?: {
                enabled?: boolean;
                skipWhenDecodeFailed?: boolean;
                workerCount?: number;
            };
            forceExactBlockTime?: boolean;
            processBindingTimeout?: number;
            rpcRetryTimes?: number;
            sequential?: boolean;
            skipStartBlockValidation?: boolean;
        },
    ): ExecutionConfig;
    toJSON(message: ExecutionConfig): unknown;
}
MMNEPVFCICPMFPCPTTAAATR