1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
pub mod math;
mod msg;
mod query;
mod route;
pub const NATIVE_DENOM: &str = "ustars";
pub const GENESIS_MINT_START_TIME: u64 = 1647032400000000000;
pub use msg::{
create_claim_for_msg, create_fund_community_pool_msg, create_fund_fairburn_pool_msg,
ClaimAction, StargazeMsg, StargazeMsgWrapper,
};
pub type Response = cosmwasm_std::Response<StargazeMsgWrapper>;
pub type SubMsg = cosmwasm_std::SubMsg<StargazeMsgWrapper>;
pub type CosmosMsg = cosmwasm_std::CosmosMsg<StargazeMsgWrapper>;
pub use query::StargazeQuery;
pub use route::StargazeRoute;
#[no_mangle]
extern "C" fn requires_stargaze() {}