o2_api_types/fuel_types.rs
1//! Re-exports of Fuel core types used throughout the API.
2//! These match `fuels::types::*` but come directly from `fuel-core-types`.
3
4pub use fuel_core_types::{
5 fuel_tx::{
6 Address,
7 Bytes32,
8 Bytes64,
9 ContractId,
10 TxId,
11 TxPointer,
12 UtxoId,
13 },
14 fuel_types::{
15 AssetId,
16 BlockHeight,
17 },
18};