anvil_zksync_api_decl/namespaces/config.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
use anvil_zksync_types::{LogLevel, ShowCalls, ShowGasDetails, ShowStorageLogs, ShowVMDetails};
use jsonrpsee::core::RpcResult;
use jsonrpsee::proc_macros::rpc;
#[rpc(server, namespace = "config")]
pub trait ConfigNamespace {
/// Get the InMemoryNodeInner's show_calls property as a string
///
/// # Returns
/// The current `show_calls` value for the InMemoryNodeInner.
#[method(name = "getShowCalls")]
async fn get_show_calls(&self) -> RpcResult<String>;
/// Get the InMemoryNodeInner's show_outputs property as a boolean
///
/// # Returns
/// The current `show_outputs` value for the InMemoryNodeInner.
#[method(name = "getShowOutputs")]
async fn get_show_outputs(&self) -> RpcResult<bool>;
/// Get the InMemoryNodeInner's current_timestamp property
///
/// # Returns
/// The current `current_timestamp` value for the InMemoryNodeInner.
#[method(name = "getCurrentTimestamp")]
async fn get_current_timestamp(&self) -> RpcResult<u64>;
/// Set show_calls for the InMemoryNodeInner
///
/// # Parameters
/// - `value`: A ShowCalls enum to update show_calls to
///
/// # Returns
/// The updated/current `show_calls` value for the InMemoryNodeInner.
#[method(name = "setShowCalls")]
async fn set_show_calls(&self, value: ShowCalls) -> RpcResult<String>;
/// Set show_outputs for the InMemoryNodeInner
///
/// # Parameters
/// - `value`: a bool value to update show_outputs to
///
/// # Returns
/// The updated/current `show_outputs` value for the InMemoryNodeInner.
#[method(name = "setShowOutputs")]
async fn set_show_outputs(&self, value: bool) -> RpcResult<bool>;
/// Set show_storage_logs for the InMemoryNodeInner
///
/// # Parameters
/// - `value`: A ShowStorageLogs enum to update show_storage_logs to
///
/// # Returns
/// The updated/current `show_storage_logs` value for the InMemoryNodeInner.
#[method(name = "setShowStorageLogs")]
async fn set_show_storage_logs(&self, value: ShowStorageLogs) -> RpcResult<String>;
/// Set show_vm_details for the InMemoryNodeInner
///
/// # Parameters
/// - `value`: A ShowVMDetails enum to update show_vm_details to
///
/// # Returns
/// The updated/current `show_vm_details` value for the InMemoryNodeInner.
#[method(name = "setShowVmDetails")]
async fn set_show_vm_details(&self, value: ShowVMDetails) -> RpcResult<String>;
/// Set show_gas_details for the InMemoryNodeInner
///
/// # Parameters
/// - `value`: A ShowGasDetails enum to update show_gas_details to
///
/// # Returns
/// The updated/current `show_gas_details` value for the InMemoryNodeInner.
#[method(name = "setShowGasDetails")]
async fn set_show_gas_details(&self, value: ShowGasDetails) -> RpcResult<String>;
/// Set resolve_hashes for the InMemoryNodeInner
///
/// # Parameters
/// - `value`: A bool to update resolve_hashes to
///
/// # Returns
/// The updated `resolve_hashes` value for the InMemoryNodeInner.
#[method(name = "setResolveHashes")]
async fn set_resolve_hashes(&self, value: bool) -> RpcResult<bool>;
/// Set show_node_config for the InMemoryNodeInner
///
/// # Parameters
/// - `value`: A bool to update show_node_config to
///
/// # Returns
/// The updated/current `show_node_config` value for the InMemoryNodeInner.
#[method(name = "setShowNodeConfig")]
async fn set_show_node_config(&self, value: bool) -> RpcResult<bool>;
/// Set show_tx_summary for the InMemoryNodeInner
///
/// # Parameters
/// - `value`: A bool to update show_tx_summary to
///
/// # Returns
/// The updated/current `show_tx_summary` value for the InMemoryNodeInner.
#[method(name = "setShowTxSummary")]
async fn set_show_tx_summary(&self, value: bool) -> RpcResult<bool>;
/// Set show_event_logs for the InMemoryNodeInner
///
/// # Parameters
/// - `value`: A bool to update show_event_logs to
///
/// # Returns
/// The updated/current `show_event_logs` value for the InMemoryNodeInner.
#[method(name = "setShowEventLogs")]
async fn set_show_event_logs(&self, value: bool) -> RpcResult<bool>;
/// Set disable_console_log for the InMemoryNodeInner
///
/// # Parameters
/// - `value`: A bool to update disable_console_log to
///
/// # Returns
/// The updated/current `disable_console_log` value for the InMemoryNodeInner.
#[method(name = "setDisableConsoleLog")]
async fn set_disable_console_log(&self, value: bool) -> RpcResult<bool>;
/// Set the logging for the InMemoryNodeInner
///
/// # Parameters
/// - `level`: The log level to set. One of: ["trace", "debug", "info", "warn", "error"]
///
/// # Returns
/// `true` if the operation succeeded, `false` otherwise.
#[method(name = "setLogLevel")]
async fn set_log_level(&self, level: LogLevel) -> RpcResult<bool>;
/// Set the logging for the InMemoryNodeInner
///
/// # Parameters
/// - `level`: The logging directive to set. Example:
/// * "my_crate=debug"
/// * "my_crate::module=trace"
/// * "my_crate=debug,other_crate=warn"
///
/// # Returns
/// `true` if the operation succeeded, `false` otherwise.
#[method(name = "setLogging")]
async fn set_logging(&self, directive: String) -> RpcResult<bool>;
}