alloy-erc20-full 1.0.0

Complete ERC20 SDK with read and write operations for Alloy. Forked from alloy-erc20.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod basic;
pub use basic::BasicTokenStore;

mod entry;
pub use entry::Entry;

#[cfg(feature = "lru-store")]
mod lru;
#[cfg(feature = "lru-store")]
pub use lru::LruTokenStore;

mod store_iter;
pub use store_iter::StoreIter;

mod token_store;
pub use token_store::TokenStore;