helios/src/client/rpc.rs

156 lines
4.8 KiB
Rust
Raw Normal View History

2022-08-27 00:05:12 +00:00
use ethers::{
abi::AbiEncode,
types::{Address, U256},
};
2022-08-26 01:18:47 +00:00
use eyre::Result;
use serde::{Deserialize, Serialize};
2022-08-27 00:05:12 +00:00
use std::{fmt::Display, net::SocketAddr, str::FromStr, sync::Arc};
2022-08-26 01:18:47 +00:00
use jsonrpsee::{
core::{async_trait, Error},
http_server::{HttpServerBuilder, HttpServerHandle},
proc_macros::rpc,
};
2022-08-27 00:05:12 +00:00
use crate::common::utils::{hex_str_to_bytes, u64_to_hex_string};
2022-08-26 01:18:47 +00:00
use super::Client;
pub struct Rpc {
client: Arc<Client>,
handle: Option<HttpServerHandle>,
}
impl Rpc {
pub fn new(client: Arc<Client>) -> Self {
Rpc {
client,
handle: None,
}
}
pub async fn start(&mut self) -> Result<SocketAddr> {
let rpc_inner = RpcInner {
client: self.client.clone(),
};
let (handle, addr) = start(rpc_inner).await?;
self.handle = Some(handle);
Ok(addr)
}
}
#[rpc(client, server, namespace = "eth")]
trait EthRpc {
#[method(name = "getBalance")]
async fn get_balance(&self, address: &str, block: &str) -> Result<String, Error>;
#[method(name = "getTransactionCount")]
async fn get_transaction_count(&self, address: &str, block: &str) -> Result<String, Error>;
#[method(name = "getCode")]
async fn get_code(&self, address: &str, block: &str) -> Result<String, Error>;
#[method(name = "call")]
async fn call(&self, opts: CallOpts, block: &str) -> Result<String, Error>;
2022-08-27 20:43:27 +00:00
#[method(name = "estimateGas")]
async fn estimate_gas(&self, opts: CallOpts) -> Result<String, Error>;
2022-08-27 00:05:12 +00:00
#[method(name = "chainId")]
fn chain_id(&self) -> Result<String, Error>;
2022-08-26 01:18:47 +00:00
}
struct RpcInner {
pub client: Arc<Client>,
}
#[async_trait]
impl EthRpcServer for RpcInner {
async fn get_balance(&self, address: &str, block: &str) -> Result<String, Error> {
match block {
"latest" => {
let address = convert_err(Address::from_str(address))?;
let balance = convert_err(self.client.get_balance(&address).await)?;
Ok(balance.encode_hex())
}
_ => Err(Error::Custom("Invalid Block Number".to_string())),
}
}
async fn get_transaction_count(&self, address: &str, block: &str) -> Result<String, Error> {
match block {
"latest" => {
let address = convert_err(Address::from_str(address))?;
let nonce = convert_err(self.client.get_nonce(&address).await)?;
Ok(nonce.encode_hex())
}
_ => Err(Error::Custom("Invalid Block Number".to_string())),
}
}
async fn get_code(&self, address: &str, block: &str) -> Result<String, Error> {
match block {
"latest" => {
let address = convert_err(Address::from_str(address))?;
let code = convert_err(self.client.get_code(&address).await)?;
Ok(hex::encode(code))
}
_ => Err(Error::Custom("Invalid Block Number".to_string())),
}
}
async fn call(&self, opts: CallOpts, block: &str) -> Result<String, Error> {
match block {
"latest" => {
let to = convert_err(Address::from_str(&opts.to))?;
let data = convert_err(hex_str_to_bytes(&opts.data.unwrap_or("0x".to_string())))?;
2022-08-27 00:05:12 +00:00
let value = convert_err(U256::from_str_radix(
&opts.value.unwrap_or("0x0".to_string()),
16,
))?;
2022-08-26 01:18:47 +00:00
let res = convert_err(self.client.call(&to, &data, value).await)?;
Ok(hex::encode(res))
2022-08-27 00:05:12 +00:00
}
2022-08-26 01:18:47 +00:00
_ => Err(Error::Custom("Invalid Block Number".to_string())),
}
}
2022-08-27 00:05:12 +00:00
2022-08-27 20:43:27 +00:00
async fn estimate_gas(&self, opts: CallOpts) -> Result<String, Error> {
let to = convert_err(Address::from_str(&opts.to))?;
let data = convert_err(hex_str_to_bytes(&opts.data.unwrap_or("0x".to_string())))?;
let value = convert_err(U256::from_str_radix(
&opts.value.unwrap_or("0x0".to_string()),
16,
))?;
let gas = convert_err(self.client.estimate_gas(&to, &data, value).await)?;
Ok(u64_to_hex_string(gas))
}
2022-08-27 00:05:12 +00:00
fn chain_id(&self) -> Result<String, Error> {
let id = self.client.chain_id();
Ok(u64_to_hex_string(id))
}
2022-08-26 01:18:47 +00:00
}
async fn start(rpc: RpcInner) -> Result<(HttpServerHandle, SocketAddr)> {
let server = HttpServerBuilder::default().build("127.0.0.1:8545").await?;
let addr = server.local_addr()?;
let handle = server.start(rpc.into_rpc())?;
Ok((handle, addr))
}
fn convert_err<T, E: Display>(res: Result<T, E>) -> Result<T, Error> {
res.map_err(|err| Error::Custom(err.to_string()))
}
#[derive(Deserialize, Serialize)]
pub struct CallOpts {
from: Option<String>,
to: String,
gas: Option<String>,
value: Option<String>,
data: Option<String>,
}