#188 Added EVM RPC to the node (#198)

* #188 added RPC node to enable interaction
This commit is contained in:
Nikita Khateev
2024-05-28 18:29:06 +04:00
committed by GitHub
parent 3132574062
commit 135e186816
14 changed files with 1284 additions and 87 deletions
+5
View File
@@ -1,5 +1,7 @@
use std::path::PathBuf;
use crate::eth::EthConfiguration;
/// Sub-commands supported by the collator.
#[derive(Debug, clap::Subcommand)]
pub enum Subcommand {
@@ -84,6 +86,9 @@ pub struct Cli {
/// Relay chain arguments
#[arg(raw = true)]
pub relay_chain_args: Vec<String>,
#[command(flatten)]
pub eth: EthConfiguration,
}
#[derive(Debug)]