val create :
data_dir:string ->
?rpc_addr:string ->
?rpc_port:int ->
?rpc_batch_limit:limit ->
?cors_origins:string list ->
?cors_headers:string list ->
?enable_websocket:bool ->
?tx_pool_timeout_limit:int64 ->
?tx_pool_addr_limit:int64 ->
?tx_pool_tx_per_addr_limit:int64 ->
?keep_alive:bool ->
?rollup_node_endpoint:Uri.t ->
?dont_track_rollup_node:bool ->
?verbose:bool ->
?profiling:bool ->
?preimages:string ->
?preimages_endpoint:Uri.t ->
?native_execution_policy:native_execution_policy ->
?time_between_blocks:time_between_blocks ->
?max_number_of_chunks:int ->
?private_rpc_port:int ->
?sequencer_key:sequencer_key ->
?evm_node_endpoint:Uri.t ->
?log_filter_max_nb_blocks:int ->
?log_filter_max_nb_logs:int ->
?log_filter_chunk_size:int ->
?max_blueprints_lag:int ->
?max_blueprints_ahead:int ->
?max_blueprints_catchup:int ->
?catchup_cooldown:int ->
?restricted_rpcs:restricted_rpcs ->
?finalized_view:bool ->
?proxy_ignore_block_param:bool ->
?dal_slots:int list ->
?network:supported_network ->
?history_mode:history_mode ->
?sunset_sec:int64 ->
unit ->
t
val patch_configuration_from_args :
?rpc_addr:string ->
?rpc_port:int ->
?rpc_batch_limit:limit ->
?cors_origins:string Tezos_base.TzPervasives.trace ->
?cors_headers:string Tezos_base.TzPervasives.trace ->
?enable_websocket:bool ->
?tx_pool_timeout_limit:int64 ->
?tx_pool_addr_limit:int64 ->
?tx_pool_tx_per_addr_limit:int64 ->
?keep_alive:bool ->
?rollup_node_endpoint:Uri.t ->
?dont_track_rollup_node:bool ->
?verbose:bool ->
?profiling:bool ->
?preimages:string ->
?preimages_endpoint:Uri.t ->
?native_execution_policy:native_execution_policy ->
?time_between_blocks:time_between_blocks ->
?max_number_of_chunks:int ->
?private_rpc_port:int ->
?sequencer_key:sequencer_key ->
?evm_node_endpoint:Uri.t ->
?log_filter_max_nb_blocks:int ->
?log_filter_max_nb_logs:int ->
?log_filter_chunk_size:int ->
?max_blueprints_lag:int ->
?max_blueprints_ahead:int ->
?max_blueprints_catchup:int ->
?catchup_cooldown:int ->
?restricted_rpcs:restricted_rpcs ->
?finalized_view:bool ->
?proxy_ignore_block_param:bool ->
?history_mode:history_mode ->
?dal_slots:int list ->
?sunset_sec:int64 ->
t ->
t
val create_or_read_config :
data_dir:string ->
?rpc_addr:string ->
?rpc_port:int ->
?rpc_batch_limit:limit ->
?cors_origins:string list ->
?cors_headers:string list ->
?enable_websocket:bool ->
?tx_pool_timeout_limit:int64 ->
?tx_pool_addr_limit:int64 ->
?tx_pool_tx_per_addr_limit:int64 ->
?keep_alive:bool ->
?rollup_node_endpoint:Uri.t ->
?dont_track_rollup_node:bool ->
?verbose:bool ->
?profiling:bool ->
?preimages:string ->
?preimages_endpoint:Uri.t ->
?native_execution_policy:native_execution_policy ->
?time_between_blocks:time_between_blocks ->
?max_number_of_chunks:int ->
?private_rpc_port:int ->
?sequencer_key:sequencer_key ->
?evm_node_endpoint:Uri.t ->
?max_blueprints_lag:int ->
?max_blueprints_ahead:int ->
?max_blueprints_catchup:int ->
?catchup_cooldown:int ->
?log_filter_max_nb_blocks:int ->
?log_filter_max_nb_logs:int ->
?log_filter_chunk_size:int ->
?restricted_rpcs:restricted_rpcs ->
?finalized_view:bool ->
?proxy_ignore_block_param:bool ->
?dal_slots:int list ->
?network:supported_network ->
?history_mode:history_mode ->
?sunset_sec:int64 ->
string ->
t Tezos_base.TzPervasives.tzresult Lwt.t