alloy-erc20 2.0.0

Interact with ERC-20 contracts using Alloy.
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;