A library for getting the price a cryptocurrency agaisnt another using the CoinGecko API.
A example for getting the price of Ergo against Bitcoin
rust
let price: Option<f64> = get_price("ergo", "bitcoin");
println!("{:?}", price);
The result
Some(0.00009592777203047117)