Crates.io | linera-alloy-sol-types |
lib.rs | linera-alloy-sol-types |
version | 0.7.4 |
source | src |
created_at | 2024-05-30 20:29:02.790235 |
updated_at | 2024-05-30 20:29:02.790235 |
description | Compile-time ABI and EIP-712 implementations |
homepage | https://github.com/MathieuDutSik/ethreum_core/tree/main/crates/sol-types |
repository | https://github.com/MathieuDutSik/ethreum_core |
max_upload_size | |
id | 1257239 |
size | 282,810 |
Compile-time representation of Ethereum's type system with ABI and EIP-712 support.
This crate provides a developer-friendly interface to Ethereum's type system, by representing Solidity types. See type_system.md for a rundown, and the crate docs for more information
serde
supportSee the crate docs for more details.
// Declare a solidity type in standard solidity
sol! {
struct Foo {
bar: u256;
baz: bool;
}
}
// A corresponding Rust struct is generated!
let foo = Foo {
bar: 42.into(),
baz: true,
};
// Works for UDTs
sol! { type MyType is uint8; }
let my_type = MyType::from(42u8);
// For errors
sol! {
error MyError(
string message,
);
}
// And for functions!
sol! { function myFunc() external returns (uint256); }
This crate is an extensive rewrite of the
ethabi crate by the parity team.
That codebase is used under the terms of the MIT license. We have preserved
the original license notice in files incorporating ethabi
code.