alloy-sol-types 1.6.0

Compile-time ABI and EIP-712 implementations
Documentation
pub mod data_type;

mod r#enum;
pub use r#enum::SolEnum;

mod error;
pub use error::{Panic, PanicKind, Revert, SolError, decode_revert_reason};

mod event;
pub use event::{EventTopic, SolEvent, TopicList};

mod function;
pub use function::{SolCall, SolConstructor};

mod interface;
pub use interface::{
    ContractError, GenericContractError, GenericRevertReason, RevertReason, Selectors,
    SolEventInterface, SolInterface,
};

mod r#struct;
pub use r#struct::SolStruct;

mod value;
pub use value::SolValue;

mod ty;
pub use ty::SolType;