fuels_accounts/
lib.rs

1#[cfg(feature = "std")]
2mod account;
3#[cfg(feature = "std")]
4mod accounts_utils;
5#[cfg(feature = "std")]
6pub mod impersonated_account;
7#[cfg(feature = "std")]
8pub mod provider;
9#[cfg(feature = "std")]
10pub mod wallet;
11
12#[cfg(feature = "std")]
13pub use account::*;
14
15#[cfg(feature = "coin-cache")]
16mod coin_cache;
17
18pub mod predicate;
19
20#[cfg(test)]
21mod test {
22    #[test]
23    fn sdl_is_the_same_as_from_fuel() {
24        let file_sdl = include_str!("./schema/schema.sdl");
25
26        let core_sdl = String::from_utf8(fuel_core_client::SCHEMA_SDL.to_vec()).unwrap();
27
28        assert_eq!(file_sdl, &core_sdl);
29    }
30}