EQL Core
EVM Query Language core components.
Installation
[]
= "0.1"
Usage
use Interpreter;
async
EVM Query Language core components.
[dependencies]
eql_core = "0.1"
use eql_core::interpreter::Interpreter;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut interpreter = Interpreter::run("GET balance FROM account vitalik.eth ON eth").await?;
println!("{:?}", result);
Ok(())
}