A cryptocurrency made in rust.
examples/api_get_height.rs
```rust use pea::api::get; use std::error::Error;
async fn main() -> Result<(), Box
examples/api_get_block.rs
```rust use pea::api::get; use std::error::Error; const API: &str = "http://localhost:8080";
async fn main() -> Result<(), Box