36 releases
new 0.8.10 | Oct 28, 2024 |
---|---|
0.8.5 | Sep 25, 2024 |
0.7.7 | Jul 8, 2024 |
0.7.0 | Mar 30, 2024 |
0.3.1 | Jul 30, 2023 |
#167 in Magic Beans
194,929 downloads per month
Used in 113 crates
(24 directly)
580KB
12K
SLoC
alloy-json-abi
Full Ethereum JSON-ABI implementation.
This crate is a re-implementation of a part of ethabi's API, with a few main differences:
- the
Contract
struct is now calledJsonAbi
and also contains thefallback
andreceive
functions - the
Param
andEventParam
structs only partially parse the type string instead of fully resolving it into a Solidity type
Examples
Parse a JSON ABI file into a JsonAbi
struct:
use alloy_json_abi::JsonAbi;
# stringify!(
let path = "path/to/abi.json";
let json = std::fs::read_to_string(path).unwrap();
# );
# let json = "[]";
let abi: JsonAbi = serde_json::from_str(&json).unwrap();
for item in abi.items() {
println!("{item:?}");
}
Dependencies
~5.5–8.5MB
~160K SLoC