use serde::{Serialize, Deserialize};
use serde_json::Value;
pub mod methods;
#[derive(Serialize, Deserialize, Debug)]
pub struct Request {
pub jsonrpc: String,
pub id: i32,
pub method: String,
pub params: Value
}
#[derive(Serialize, Deserialize, Debug)]
pub struct Response {
pub jsonrpc: String,
pub id: i32,
pub result: Value
}