sig-proxy 0.5.0

Signature-Based (Web3) Authenticating Proxy
1
2
3
4
5
6
7
8
#[async_std::main]
async fn main() -> std::io::Result<()> {
  Ok(
    sig_proxy::application::demo::server()
      .listen("127.0.0.1:8000")
      .await?,
  )
}