cw_osmo_proto/
lib.rs

1pub mod proto_ext;
2pub mod query;
3
4/// The version (commit hash) of the Osmosis SDK used when generating this library.
5pub const OSMOSIS_VERSION: &str = include_str!("types/OSMOSIS_COMMIT");
6
7pub mod cosmos {
8    /// Base functionality.
9    pub mod base {
10        /// Query support.
11        pub mod query {
12            pub mod v1beta1 {
13                include!("types/cosmos.base.query.v1beta1.rs");
14            }
15        }
16
17        pub mod v1beta1 {
18            include!("types/cosmos.base.v1beta1.rs");
19        }
20    }
21}
22
23pub mod osmosis {
24    pub mod gamm {
25        pub mod v1beta1 {
26            include!("types/osmosis.gamm.v1beta1.rs");
27            include!("paths/osmosis.gamm.v1beta1.rs");
28        }
29    }
30}