1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
//! Defines a set of serializable types required for the Fuel VM ABI.
//!
//! We declare these in a dedicated, minimal crate in order to allow for downstream projects to
//! consume or generate these ABI-compatible types without needing to pull in the rest of the SDK.
pub mod bech32;
pub mod block;
pub mod chain_info;
pub mod coin;
pub mod constants;
mod core;
pub mod enum_variants;
pub mod errors;
pub mod message;
pub mod message_proof;
pub mod node_info;
pub mod param_types;
pub mod resource;
pub mod traits;
pub mod transaction;
pub mod transaction_response;
pub use fuel_tx::{Address, AssetId, ContractId};
pub use crate::core::*;