neutron_sdk/
lib.rs

1pub mod bindings;
2mod errors;
3pub mod interchain_queries;
4pub mod interchain_txs;
5pub mod proto_types;
6pub mod query;
7pub mod stargate;
8pub mod sudo;
9
10pub use errors::error::{NeutronError, NeutronResult};
11
12// This is a signal, such that any contract that imports these helpers will only run on the
13// neutron blockchain
14#[no_mangle]
15extern "C" fn requires_neutron() {}