1#![forbid(unsafe_code)]
2#![forbid(missing_docs)]
3#![doc(
4 html_logo_url = "https://raw.githubusercontent.com/JamiiDao/SolanaWalletAdapter/f005b3a555013e2cbfee8825d531b014c180d698/icon.svg"
5)]
6#![doc = include_str!(concat!("../", std::env!("CARGO_PKG_README")))]
7
8mod adapter;
9pub use adapter::*;
10
11mod errors;
12pub use errors::*;
13
14mod commitment;
15pub use commitment::*;
16
17mod utils;
18pub(crate) use utils::*;
19
20mod events;
21pub use events::*;
22
23mod wallet_ser_der;
24pub use wallet_ser_der::*;
25
26mod storage;
27pub use storage::*;
28
29pub use wallet_adapter_common::chains::*;
31pub use wallet_adapter_common::clusters::*;
32pub use wallet_adapter_common::feature_support::*;
33pub use wallet_adapter_common::standardized_events::*;
34pub use wallet_adapter_common::WalletCommonUtils as Utils;
35
36pub use async_channel;
38pub use blake3;
39pub use bs58;
40pub use ed25519_dalek;
41pub use getrandom;
42pub use humantime;
43pub use rand_chacha;
44pub use rand_core;
45pub use thiserror;
46pub use wasm_bindgen_futures;
47pub use web_sys;