defillama-rs 0.1.8

A Rust client for the DefiLlama API
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! A Rust client for the DefiLlama API
//!
//! This crate provides an interface to interact with DefiLlama's API,
//! allowing users to fetch data such as token prices, TVL, and more.

pub mod client;
pub mod error;
pub mod models;

pub use client::DefiLlamaClient;
pub use error::DefillamaError;